@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+Arabic:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --accent: #ffbe00;
  --accent-glow: rgba(255, 190, 0, 0.4);
  --bg: #050505;
  --bg-elevated: #0a0a0a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.5);
  --font: 'Inter', 'Noto Sans Arabic', -apple-system, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== BACKGROUND SYSTEM ===== */
.bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% -10%,
      rgba(255, 190, 0, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 20% 80%,
      rgba(255, 190, 0, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 60% at 80% 50%,
      rgba(255, 190, 0, 0.02) 0%,
      transparent 50%
    );
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent), #020202);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(255, 190, 0, 0.3);
}

.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
  backdrop-filter: blur(10px);
}

.lang-btn {
  padding: 6px 14px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn.active {
  background: var(--accent);
  color: #000;
  box-shadow: 0 2px 12px rgba(255, 190, 0, 0.3);
}

.lang-btn:not(.active):hover {
  color: var(--text);
}

/* ===== SCREEN SYSTEM ===== */
.screen {
  display: none;
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 100px 20px 60px;
  max-width: 800px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.screen.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(32px, 8vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent), #fff5cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 3vw, 20px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--accent), #e6a800);
  color: #000;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow:
    0 8px 32px rgba(255, 190, 0, 0.3),
    0 0 60px rgba(255, 190, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: fadeInUp 0.8s ease 0.8s both;
  position: relative;
  overflow: hidden;
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(30deg);
  animation: shimmer 3s infinite;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(255, 190, 0, 0.4),
    0 0 80px rgba(255, 190, 0, 0.15);
}

.cta-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

/* ===== FLOATING FOOTBALLS ===== */
.floating-balls {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.fball {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.08;
  animation: floatBall 20s infinite ease-in-out;
}

.fball:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}
.fball:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: -5s;
  animation-duration: 30s;
  width: 25px;
  height: 25px;
}
.fball:nth-child(3) {
  top: 60%;
  left: 5%;
  animation-delay: -10s;
  animation-duration: 22s;
  width: 35px;
  height: 35px;
}
.fball:nth-child(4) {
  top: 70%;
  right: 10%;
  animation-delay: -15s;
  animation-duration: 28s;
  width: 20px;
  height: 20px;
}
.fball:nth-child(5) {
  top: 40%;
  left: 85%;
  animation-delay: -8s;
  animation-duration: 26s;
  width: 30px;
  height: 30px;
}

/* ===== QUIZ ===== */
.quiz-header {
  width: 100%;
  margin-bottom: 32px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: var(--glass);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 16px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ffd54f);
  border-radius: 100px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(255, 190, 0, 0.3);
}

.question-counter {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.question-text {
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
}

.answers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  max-width: 600px;
}

.answer-card {
  position: relative;
  padding: 20px 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.answer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 190, 0, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.answer-card:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 190, 0, 0.3);
  box-shadow:
    0 8px 32px rgba(255, 190, 0, 0.1),
    0 0 0 1px rgba(255, 190, 0, 0.2);
}

.answer-card:hover::before {
  opacity: 1;
}

.answer-card.selected {
  border-color: var(--accent);
  background: linear-gradient(
    135deg,
    rgba(255, 190, 0, 0.15),
    rgba(255, 190, 0, 0.05)
  );
  box-shadow:
    0 0 30px rgba(255, 190, 0, 0.2),
    inset 0 0 20px rgba(255, 190, 0, 0.05);
  animation: cardPulse 0.6s ease;
}

.answer-card.selected::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 15px rgba(255, 190, 0, 0.5);
  animation: checkPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.answer-label {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.answer-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
  transition: opacity 0.35s ease;
  filter: brightness(0.8);
}

.answer-img--default {
  opacity: 1;
}

.answer-img--hover {
  opacity: 0;
}

.answer-card:hover .answer-img--default {
  opacity: 0;
}
.answer-card:hover .answer-img--hover {
  opacity: 1;
}

.answer-card.selected .answer-img--default {
  opacity: 0;
}
.answer-card.selected .answer-img--hover {
  opacity: 1;
}

.answer-label {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

[dir='rtl'] .answer-img {
  transform: scaleX(-1);
}

/* ===== LOADING ===== */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.loading-ring {
  width: 120px;
  height: 120px;
  position: relative;
}

.loading-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.loading-ring circle {
  fill: none;
  stroke-width: 3;
}

.loading-ring .bg {
  stroke: var(--glass-border);
}

.loading-ring .progress {
  stroke: var(--accent);
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(255, 190, 0, 0.5));
  animation: ringProgress 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loading-football {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  animation: footballSpin 2s linear infinite;
}

.loading-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
}

.loading-text .dots::after {
  content: '';
  animation: dots 1.5s infinite;
}

/* ===== RESULT ===== */
.result-archetype {
  margin-bottom: 8px;
}

.result-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}

.result-title {
  font-size: clamp(28px, 7vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  background: linear-gradient(
    135deg,
    rgba(255, 190, 0, 0.2),
    rgba(255, 190, 0, 0.05)
  );
  border: 2px solid rgba(255, 190, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  box-shadow:
    0 0 60px rgba(255, 190, 0, 0.15),
    inset 0 0 30px rgba(255, 190, 0, 0.05);
  animation: iconGlow 3s ease-in-out infinite;
}

.result-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 40px;
}

.subscribe-description {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 500px;
  margin-top: 20px;
}


/* Matches */
.matches-section {
  width: 100%;
  max-width: 600px;
  margin-bottom: 40px;
}

.section-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.match-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.match-card:hover {
  border-color: rgba(255, 190, 0, 0.2);
  transform: translateX(4px);
}

.match-teams {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
}

.match-vs {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.match-tag {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255, 190, 0, 0.1);
  border: 1px solid rgba(255, 190, 0, 0.2);
  border-radius: 100px;
  color: var(--accent);
  font-weight: 600;
}

.match-date {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 4px;
  display: block;
}

/* Bonus */
.bonus-card {
  width: 100%;
  max-width: 500px;
  padding: 32px;
  background: linear-gradient(
    135deg,
    rgba(255, 190, 0, 0.12),
    rgba(255, 190, 0, 0.03)
  );
  border: 2px solid rgba(255, 190, 0, 0.3);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  animation: bonusGlow 4s ease-in-out infinite;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 190, 0, 0.1),
    transparent,
    rgba(255, 190, 0, 0.05),
    transparent
  );
  animation: rotate 8s linear infinite;
}

.bonus-content {
  position: relative;
  z-index: 2;
}

.bonus-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.bonus-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px dashed rgba(255, 190, 0, 0.4);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-code:hover {
  background: rgba(255, 190, 0, 0.1);
  border-style: solid;
}

.promo-code.copied {
  border-color: #4ade80;
  color: #4ade80;
}

.bonus-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--accent);
  color: #000;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 32px rgba(255, 190, 0, 0.3);
  transition: all 0.3s ease;
}

.bonus-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 190, 0, 0.4);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

@keyframes shimmer {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}

@keyframes floatBall {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -40px) rotate(90deg);
  }
  50% {
    transform: translate(-20px, -20px) rotate(180deg);
  }
  75% {
    transform: translate(40px, 30px) rotate(270deg);
  }
}

@keyframes cardPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes checkPop {
  0% {
    transform: translateY(-50%) scale(0);
  }
  60% {
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

@keyframes ringProgress {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes footballSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes dots {
  0% {
    content: '.';
  }
  33% {
    content: '..';
  }
  66% {
    content: '...';
  }
  100% {
    content: '.';
  }
}

@keyframes iconGlow {
  0%,
  100% {
    box-shadow:
      0 0 60px rgba(255, 190, 0, 0.15),
      inset 0 0 30px rgba(255, 190, 0, 0.05);
  }
  50% {
    box-shadow:
      0 0 80px rgba(255, 190, 0, 0.25),
      inset 0 0 40px rgba(255, 190, 0, 0.1);
  }
}

@keyframes bonusGlow {
  0%,
  100% {
    box-shadow:
      0 0 30px rgba(255, 190, 0, 0.1),
      inset 0 0 20px rgba(255, 190, 0, 0.03);
  }
  50% {
    box-shadow:
      0 0 50px rgba(255, 190, 0, 0.2),
      inset 0 0 30px rgba(255, 190, 0, 0.06);
  }
}

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

/* ===== RTL ===== */
html[dir='rtl'] .answer-card {
  text-align: right;
}
html[dir='rtl'] .answer-card.selected::after {
  right: auto;
  left: 20px;
}
html[dir='rtl'] .match-card:hover {
  transform: translateX(-4px);
}
html[dir='rtl'] .cta-btn svg,
html[dir='rtl'] .bonus-cta svg {
  transform: scaleX(-1);
}
html[dir='rtl'] .cta-btn:hover svg {
  transform: scaleX(-1) translateX(-4px);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .answers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .answer-card {
    padding: 24px;
  }
}

@media (min-width: 768px) {
  .screen {
    padding: 120px 40px 80px;
  }
  .header {
    padding: 20px 40px;
  }
}

/* ===== PARTICLE CANVAS ===== */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}

#emailForm {
  width: 100%;
  max-width: 520px;
  display: flex;
  gap: 14px;
  margin: 40px auto 0;
  padding: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#emailInput {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  padding: 16px 20px;
}

#emailInput::placeholder {
  color: var(--text-muted);
}

#emailInput:focus {
  color: #fff;
}

#subscribeBtn {
  padding: 16px 34px;
  border: none;
  border-radius: 100px;
  cursor: pointer;

  background: linear-gradient(135deg, var(--accent), #e6a800);

  color: #000;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;

  box-shadow: 0 8px 24px rgba(255, 190, 0, 0.3);

  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#subscribeBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 190, 0, 0.45);
}

#subscribeBtn:active {
  transform: scale(0.97);
}

/* ===== SUCCESS ===== */

#successMessage {
  width: 100%;
  max-width: 520px;
  margin: 40px auto 0;
  padding: 34px;

  background: linear-gradient(
    135deg,
    rgba(255, 190, 0, 0.1),
    rgba(255, 190, 0, 0.03)
  );

  border: 2px solid rgba(255, 190, 0, 0.25);
  border-radius: var(--radius);

  backdrop-filter: blur(20px);

  box-shadow: 0 0 40px rgba(255, 190, 0, 0.12);
  animation: fadeInUp 0.6s ease;
}

#successMessage h3 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 16px;

  background: linear-gradient(135deg, #fff, var(--accent));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#successMessage p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 10px;
  font-size: 15px;
}

#successMessage p:last-child {
  margin-top: 20px;
  color: var(--accent);
  font-weight: 700;
}

/* ===== Mobile ===== */

@media (max-width: 640px) {
  #emailForm {
    flex-direction: column;
    padding: 16px;
  }

  #subscribeBtn {
    width: 100%;
  }
}
