/* AumeGA Lottery - Modern Design System */
:root {
  --aumegalotto-primary: #6366F1;
  --aumegalotto-secondary: #F59E0B;
  --aumegalotto-accent: #EC4899;
  --aumegalotto-success: #10B981;
  --aumegalotto-warning: #F59E0B;
  --aumegalotto-error: #EF4444;
  --aumegalotto-bg: #F8FAFC;
  --aumegalotto-white: #FFFFFF;
  --aumegalotto-dark: #1E293B;
  --aumegalotto-text: #334155;
  --aumegalotto-text-light: #64748B;
  --aumegalotto-border: #E2E8F0;
  --aumegalotto-shadow: 0 10px 25px rgba(99, 102, 241, 0.1);
  --aumegalotto-gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
  --aumegalotto-gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--aumegalotto-bg);
  color: var(--aumegalotto-text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Navigation */
.aumegalotto-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.aumegalotto-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.aumegalotto-navbar-home-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--aumegalotto-primary);
  font-weight: 900;
  font-size: 1.5rem;
  font-family: 'Inter', sans-serif;
}

.aumegalotto-navbar-logo {
  margin-right: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.aumegalotto-navbar-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.aumegalotto-nav-link {
  text-decoration: none;
  color: var(--aumegalotto-text);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.aumegalotto-nav-link:hover,
.aumegalotto-nav-link.active {
  background: var(--aumegalotto-gradient);
  color: var(--aumegalotto-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.aumegalotto-auth-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.aumegalotto-btn-login,
.aumegalotto-btn-register {
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.aumegalotto-btn-login {
  color: var(--aumegalotto-primary);
  border: 2px solid var(--aumegalotto-primary);
  background: transparent;
}

.aumegalotto-btn-login:hover {
  background: var(--aumegalotto-primary);
  color: var(--aumegalotto-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.aumegalotto-btn-register {
  background: var(--aumegalotto-gradient);
  color: var(--aumegalotto-white);
  border: 2px solid transparent;
}

.aumegalotto-btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.aumegalotto-navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 6px;
}

.aumegalotto-navbar-toggle-bar {
  width: 28px;
  height: 3px;
  background: var(--aumegalotto-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .aumegalotto-navbar-toggle {
    display: flex;
  }

  .aumegalotto-navbar-right {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 0 0 20px 20px;
  }

  .aumegalotto-navbar-right.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .aumegalotto-auth-links {
    flex-direction: column;
    width: 100%;
  }
}

.aumegalotto-hero {
  background: var(--aumegalotto-gradient);
  color: var(--aumegalotto-white);
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.aumegalotto-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.aumegalotto-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.aumegalotto-badge {
  background: var(--aumegalotto-gradient-secondary);
  color: var(--aumegalotto-white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.aumegalotto-hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aumegalotto-hero-highlight {
  color: var(--aumegalotto-secondary);
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.aumegalotto-hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.aumegalotto-cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.aumegalotto-btn-primary,
.aumegalotto-btn-secondary {
  padding: 1.25rem 2.5rem;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.aumegalotto-btn-primary {
  background: var(--aumegalotto-gradient-secondary);
  color: var(--aumegalotto-white);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.aumegalotto-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

.aumegalotto-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--aumegalotto-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.aumegalotto-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.aumegalotto-trust-indicators {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.aumegalotto-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 600;
}

.aumegalotto-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.aumegalotto-hero-image {
  position: relative;
}

.aumegalotto-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.3s ease;
}

.aumegalotto-hero-image:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

@media (max-width: 768px) {
  .aumegalotto-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .aumegalotto-hero-title {
    font-size: 2.5rem;
  }

  .aumegalotto-cta-buttons {
    justify-content: center;
  }

  .aumegalotto-trust-indicators {
    justify-content: center;
  }
}

.aumegalotto-jackpots {
  padding: 6rem 0;
  background: var(--aumegalotto-white);
}

.aumegalotto-section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 4rem;
  color: var(--aumegalotto-dark);
  position: relative;
  letter-spacing: -0.025em;
}

.aumegalotto-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: var(--aumegalotto-gradient);
  border-radius: 3px;
}

.aumegalotto-jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.aumegalotto-jackpot-card {
  background: var(--aumegalotto-white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--aumegalotto-border);
  position: relative;
  overflow: hidden;
}

.aumegalotto-jackpot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--aumegalotto-gradient);
}

.aumegalotto-jackpot-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
}

.aumegalotto-jackpot-game {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--aumegalotto-primary);
  margin-bottom: 1.5rem;
}

.aumegalotto-jackpot-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--aumegalotto-accent);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.aumegalotto-jackpot-draw {
  color: var(--aumegalotto-text-light);
  margin-bottom: 2rem;
  font-weight: 600;
}

.aumegalotto-btn-play {
  background: var(--aumegalotto-gradient);
  color: var(--aumegalotto-white);
  padding: 1.25rem 2.5rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.aumegalotto-btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.aumegalotto-howtoplay {
  padding: 6rem 0;
  background: var(--aumegalotto-bg);
}

.aumegalotto-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.aumegalotto-step {
  background: var(--aumegalotto-white);
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--aumegalotto-border);
  position: relative;
}

.aumegalotto-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--aumegalotto-gradient);
  border-radius: 24px 24px 0 0;
}

.aumegalotto-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
}

.aumegalotto-step-icon {
  width: 100px;
  height: 100px;
  background: var(--aumegalotto-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--aumegalotto-white);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
}

.aumegalotto-step-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--aumegalotto-dark);
}

.aumegalotto-step-description {
  color: var(--aumegalotto-text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

.aumegalotto-features {
  padding: 6rem 0;
  background: var(--aumegalotto-white);
}

.aumegalotto-feature-list {
  margin-top: 4rem;
}

.aumegalotto-feature-item {
  background: var(--aumegalotto-bg);
  padding: 3rem;
  border-radius: 24px;
  margin-bottom: 2.5rem;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--aumegalotto-border);
  position: relative;
  overflow: hidden;
}

.aumegalotto-feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--aumegalotto-gradient);
}

.aumegalotto-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(99, 102, 241, 0.15);
}

.aumegalotto-feature-icon {
  width: 80px;
  height: 80px;
  background: var(--aumegalotto-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--aumegalotto-white);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.aumegalotto-feature-item h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--aumegalotto-dark);
}

.aumegalotto-feature-item p {
  color: var(--aumegalotto-text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

.aumegalotto-feature-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.aumegalotto-winners {
  padding: 6rem 0;
  background: var(--aumegalotto-gradient);
  color: var(--aumegalotto-white);
}

.aumegalotto-winners .aumegalotto-section-title {
  color: var(--aumegalotto-white);
}

.aumegalotto-winners .aumegalotto-section-title::after {
  background: var(--aumegalotto-gradient-secondary);
}

.aumegalotto-winner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.aumegalotto-winner-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.aumegalotto-winner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--aumegalotto-gradient-secondary);
}

.aumegalotto-winner-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.aumegalotto-winner-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--aumegalotto-secondary);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.aumegalotto-winner-game {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.aumegalotto-winner-location,
.aumegalotto-winner-date {
  opacity: 0.9;
  font-size: 1rem;
  font-weight: 600;
}

.aumegalotto-final-cta {
  padding: 6rem 0;
  background: var(--aumegalotto-dark);
  color: var(--aumegalotto-white);
  text-align: center;
}

.aumegalotto-cta-text {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.aumegalotto-btn-large {
  padding: 1.5rem 4rem;
  font-size: 1.25rem;
}

.aumegalotto-footer {
  background: var(--aumegalotto-dark);
  color: var(--aumegalotto-white);
  padding: 4rem 0 2rem;
}

.aumegalotto-footer-brand {
  margin-bottom: 3rem;
}

.aumegalotto-footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.aumegalotto-footer h4,
.aumegalotto-footer h5 {
  color: var(--aumegalotto-white);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.aumegalotto-contact-info p,
.aumegalotto-contact-info a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.75rem;
  display: block;
  font-weight: 600;
}

.aumegalotto-contact-info a:hover,
.aumegalotto-footer a:hover {
  color: var(--aumegalotto-secondary);
}

.aumegalotto-footer-links {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aumegalotto-responsible-gaming {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  margin: 3rem 0;
  border-left: 6px solid var(--aumegalotto-secondary);
  backdrop-filter: blur(10px);
}

.aumegalotto-responsible-gaming h5 {
  color: var(--aumegalotto-secondary);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.aumegalotto-responsible-gaming p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-weight: 600;
}

.aumegalotto-responsible-gaming a {
  color: var(--aumegalotto-secondary);
  text-decoration: none;
  font-weight: 700;
}

.aumegalotto-responsible-gaming a:hover {
  text-decoration: underline;
}

.aumegalotto-help-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.aumegalotto-help-links a {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--aumegalotto-white);
  transition: all 0.3s ease;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.aumegalotto-help-links a:hover {
  background: var(--aumegalotto-gradient-secondary);
  color: var(--aumegalotto-white);
  transform: translateY(-2px);
}

.aumegalotto-footer-bottom {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aumegalotto-age-badge {
  background: var(--aumegalotto-gradient-secondary);
  color: var(--aumegalotto-white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.aumegalotto-cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--aumegalotto-dark);
  color: var(--aumegalotto-white);
  padding: 2rem;
  z-index: 10000;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(20px);
}

.aumegalotto-cookie-popup.show {
  transform: translateY(0);
}

.aumegalotto-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.aumegalotto-cookie-link {
  color: var(--aumegalotto-secondary);
  text-decoration: none;
  font-weight: 700;
}

.aumegalotto-cookie-link:hover {
  text-decoration: underline;
}

.aumegalotto-btn-cookie-accept {
  background: var(--aumegalotto-gradient-secondary);
  color: var(--aumegalotto-white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.aumegalotto-btn-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

@media (max-width: 768px) {
  .aumegalotto-cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

.aumegalotto-form-container {
  max-width: 600px;
  margin: 10rem auto 6rem;
  padding: 3rem;
  background: var(--aumegalotto-white);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(99, 102, 241, 0.1);
  border: 1px solid var(--aumegalotto-border);
}

.aumegalotto-form-title {
  text-align: center;
  color: var(--aumegalotto-dark);
  margin-bottom: 3rem;
  font-weight: 900;
  font-size: 2.5rem;
}

.aumegalotto-form-group {
  margin-bottom: 2rem;
}

.aumegalotto-form-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--aumegalotto-dark);
  font-size: 1.1rem;
}

.aumegalotto-form-input {
  width: 100%;
  padding: 1.25rem;
  border: 2px solid var(--aumegalotto-border);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: var(--aumegalotto-bg);
}

.aumegalotto-form-input:focus {
  outline: none;
  border-color: var(--aumegalotto-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  background: var(--aumegalotto-white);
}

.aumegalotto-form-submit {
  width: 100%;
  background: var(--aumegalotto-gradient);
  color: var(--aumegalotto-white);
  padding: 1.25rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.aumegalotto-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.aumegalotto-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.aumegalotto-form-link {
  text-align: center;
  margin-top: 2rem;
}

.aumegalotto-form-link a {
  color: var(--aumegalotto-primary);
  text-decoration: none;
  font-weight: 700;
}

.aumegalotto-form-link a:hover {
  text-decoration: underline;
}

.aumegalotto-form-message {
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-weight: 700;
}

.aumegalotto-form-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--aumegalotto-success);
  border: 2px solid var(--aumegalotto-success);
}

.aumegalotto-form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--aumegalotto-error);
  border: 2px solid var(--aumegalotto-error);
}

@media (max-width: 992px) {
  .aumegalotto-hero-inner {
    grid-template-columns: 1fr;
  }

  .aumegalotto-features .row {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .aumegalotto-hero {
    padding: 8rem 0 4rem;
  }

  .aumegalotto-hero-title {
    font-size: 2rem;
  }

  .aumegalotto-cta-buttons {
    flex-direction: column;
  }

  .aumegalotto-trust-indicators {
    flex-direction: column;
    align-items: center;
  }

  .aumegalotto-jackpot-amount {
    font-size: 2rem;
  }

  .aumegalotto-feature-item {
    padding: 2rem;
  }

  .aumegalotto-help-links {
    flex-direction: column;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.text-start { text-align: left; }
.text-end { text-align: right; }

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.aumegalotto-loading {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--aumegalotto-white);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media print {
  .aumegalotto-navbar,
  .aumegalotto-footer,
  .aumegalotto-cookie-popup {
    display: none;
  }

  .aumegalotto-hero {
    background: white;
    color: black;
  }
} 