/* ========================================
FIFA 2026 FINAL - LEARNY SPECIAL PAGE
======================================== */

:root {
  --fifa-green: #10b981;
  --fifa-gold: #fbbf24;
  --fifa-red: #ef4444;
  --fifa-blue: #3b82f6;
  --fifa-pitch: #15803d;
  --fifa-pitch-light: #22c55e;
}

.fifa-main {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a14 100%);
}

/* HERO SECTION */
.fifa-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  min-height: 380px;
  background: linear-gradient(135deg, #1e3a8a 0%, #6c2bd9 50%, #10b981 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.3) 0%, transparent 50%);
  animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 32px;
  text-align: center;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(251, 191, 36, 0.2);
  border: 1px solid var(--fifa-gold);
  color: var(--fifa-gold);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 16px;
  animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(251, 191, 36, 0.3); }
  50% { box-shadow: 0 0 25px rgba(251, 191, 36, 0.6); }
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, var(--fifa-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
}

.meta-item i {
  color: var(--fifa-gold);
}

.hero-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.cd-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 14px;
  padding: 16px 8px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.cd-box span {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--fifa-gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-box small {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 600;
}

.hero-pitch {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  opacity: 0.3;
  pointer-events: none;
}

.pitch-ball {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, #fff, #ccc);
  border-radius: 50%;
  animation: ballBounce 3s ease-in-out infinite;
}

@keyframes ballBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* SECTIONS */
.fifa-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.section-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
}

.section-title i {
  color: var(--fifa-gold);
  background: rgba(251, 191, 36, 0.15);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.section-header .section-title {
  margin-bottom: 0;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(239, 68, 68, 0.15);
  color: var(--fifa-red);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--fifa-red);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* HOST NATIONS */
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.host-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.host-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.host-card.usa::before { background: linear-gradient(90deg, #b22234 33%, #fff 33% 66%, #3c3b6e 66%); }
.host-card.canada::before { background: linear-gradient(90deg, #ff0000 25%, #fff 25% 75%, #ff0000 75%); }
.host-card.mexico::before { background: linear-gradient(90deg, #006847 33%, #fff 33% 66%, #ce1126 66%); }

.host-card:hover {
  transform: translateY(-4px);
  border-color: var(--fifa-gold);
  box-shadow: var(--shadow);
}

.host-flag {
  font-size: 48px;
  margin-bottom: 12px;
}

.host-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-main);
}

.host-card p {
  font-size: 12px;
  color: var(--text-muted);
}

/* POLL SECTION */
.poll-subtitle {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 14px;
}

.poll-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.poll-option {
  background: var(--bg-dark);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.poll-option:hover:not(.voted):not(.disabled) {
  border-color: var(--fifa-gold);
  transform: translateX(4px);
}

.poll-option.voted {
  border-color: var(--fifa-green);
  cursor: default;
}

.poll-option.disabled {
  cursor: not-allowed;
  opacity: 0.9;
}

.poll-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
  width: 0;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.poll-option.voted .poll-bar {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.25), rgba(251, 191, 36, 0.05));
}

.poll-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.poll-flag {
  font-size: 32px;
  flex-shrink: 0;
}

.poll-info {
  flex: 1;
  min-width: 0;
}

.poll-team {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.poll-confed {
  font-size: 11px;
  color: var(--text-muted);
}

.poll-percent {
  font-size: 22px;
  font-weight: 900;
  color: var(--fifa-gold);
  font-variant-numeric: tabular-nums;
  min-width: 60px;
  text-align: right;
}

.poll-votes {
  font-size: 10px;
  color: var(--text-muted);
  text-align: right;
  margin-top: 2px;
}

.poll-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--fifa-green);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.poll-option.voted .poll-check {
  display: flex;
}

.poll-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.poll-stats {
  display: flex;
  gap: 20px;
  color: var(--text-muted);
  font-size: 13px;
}

.poll-stats i {
  color: var(--fifa-gold);
  margin-right: 4px;
}

.poll-stats strong {
  color: var(--text-main);
  font-weight: 800;
}

/* STADIUM VIEW */
.stadium-view {
  position: relative;
  width: 100%;
  height: 320px;
  background: linear-gradient(180deg, #1e3a8a 0%, #312e81 50%, #1e1b4b 100%);
  border-radius: var(--radius);
  overflow: hidden;
  perspective: 1000px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.stadium-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, #0c1445 0%, #1e3a8a 100%);
  z-index: 1;
}

.stadium-light {
  position: absolute;
  top: 20px;
  width: 40px;
  height: 60px;
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.6), 0 0 80px rgba(251, 191, 36, 0.3);
  animation: lightFlicker 3s ease-in-out infinite;
}

.stadium-light.left { left: 10%; }
.stadium-light.right { right: 10%; }

.stadium-light::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 30px;
  background: #374151;
}

@keyframes lightFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.stadium-stands {
  position: absolute;
  background: linear-gradient(180deg, #4c1d95, #6d28d9);
  z-index: 2;
}

.stadium-stands.top {
  top: 25%;
  left: 5%;
  right: 5%;
  height: 15%;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #7c3aed 0%, #5b21b6 100%);
}

.stadium-stands.bottom {
  bottom: 5%;
  left: 5%;
  right: 5%;
  height: 12%;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #5b21b6 0%, #4c1d95 100%);
}

.stadium-stands.left {
  top: 25%;
  left: 0;
  width: 8%;
  height: 60%;
  background: linear-gradient(90deg, #4c1d95, #6d28d9);
}

.stadium-stands.right {
  top: 25%;
  right: 0;
  width: 8%;
  height: 60%;
  background: linear-gradient(270deg, #4c1d95, #6d28d9);
}

.stadium-pitch {
  position: absolute;
  top: 40%;
  left: 10%;
  right: 10%;
  height: 45%;
  background: 
    repeating-linear-gradient(90deg, 
      var(--fifa-pitch) 0px, 
      var(--fifa-pitch) 30px,
      var(--fifa-pitch-light) 30px,
      var(--fifa-pitch-light) 60px);
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 4px;
  z-index: 3;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
}

.pitch-center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%;
}

.pitch-center-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.9);
}

.pitch-box {
  position: absolute;
  top: 25%;
  width: 15%;
  height: 50%;
  border: 2px solid rgba(255,255,255,0.9);
}

.pitch-box.left { left: 0; border-left: none; }
.pitch-box.right { right: 0; border-right: none; }

.pitch-goal {
  position: absolute;
  top: 38%;
  width: 5%;
  height: 24%;
  border: 2px solid rgba(255,255,255,0.9);
}

.pitch-goal.left { left: 0; border-left: none; }
.pitch-goal.right { right: 0; border-right: none; }

.pitch-ball-animated {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #fff, #ddd);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  animation: ballMove 6s ease-in-out infinite;
}

@keyframes ballMove {
  0% { top: 50%; left: 50%; }
  25% { top: 30%; left: 30%; }
  50% { top: 60%; left: 70%; }
  75% { top: 40%; left: 40%; }
  100% { top: 50%; left: 50%; }
}

.stadium-crowd {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15%;
  z-index: 4;
  overflow: hidden;
}

.crowd-wave {
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(251, 191, 36, 0.3) 50%, 
    transparent 100%);
  animation: waveMove 4s linear infinite;
}

@keyframes waveMove {
  0% { left: -100%; }
  100% { left: 100%; }
}

.stadium-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.info-item {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.info-item i {
  color: var(--fifa-gold);
  font-size: 16px;
}

.info-item strong {
  color: var(--text-main);
  font-weight: 800;
}

/* PREDICT SCORE */
.predict-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.predict-team {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.predict-flag {
  font-size: 48px;
  margin-bottom: 10px;
}

.predict-team input {
  width: 100%;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.predict-team input:focus {
  outline: none;
  border-color: var(--fifa-gold);
}

.score-input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.score-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fifa-gold);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition);
}

.score-btn:hover {
  background: var(--fifa-gold);
  color: #000;
  transform: scale(1.1);
}

.score-input span {
  font-size: 36px;
  font-weight: 900;
  color: var(--fifa-gold);
  min-width: 50px;
  font-variant-numeric: tabular-nums;
}

.predict-vs {
  font-size: 28px;
  font-weight: 900;
  color: var(--fifa-red);
  text-align: center;
  padding: 0 8px;
}

.predict-submit {
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--fifa-gold), #f59e0b);
  color: #000;
  font-weight: 800;
}

.predictions-list h4 {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prediction-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 13px;
  animation: fadeIn 0.4s ease;
}

.prediction-score {
  font-weight: 800;
  color: var(--fifa-gold);
  font-size: 15px;
}

.prediction-time {
  color: var(--text-muted);
  font-size: 11px;
}

/* PLAYERS */
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.player-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.player-card:hover {
  transform: translateY(-4px);
  border-color: var(--fifa-gold);
  box-shadow: var(--shadow);
}

.player-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--fifa-gold));
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  font-weight: 900;
}

.player-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.player-country {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.player-position {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(251, 191, 36, 0.15);
  color: var(--fifa-gold);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FACTS */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.fact-card {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}

.fact-card:hover {
  transform: translateY(-3px);
  border-color: var(--fifa-gold);
}

.fact-icon {
  font-size: 28px;
  color: var(--fifa-gold);
  margin-bottom: 10px;
}

.fact-value {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--fifa-gold), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.fact-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* CHANTS */
.chants-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.chant-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
}

.chant-card:hover {
  border-color: var(--fifa-gold);
  transform: translateX(4px);
}

.chant-emoji {
  font-size: 32px;
  flex-shrink: 0;
}

.chant-text {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  font-style: italic;
}

.chant-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--fifa-gold);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.chant-play:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.chant-play.playing {
  animation: chantPulse 0.5s ease-in-out infinite;
}

@keyframes chantPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* SHARE */
.share-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.share-btn {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
  color: var(--text-main);
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.share-btn.whatsapp:hover { background: #25D366; color: #fff; border-color: #25D366; }
.share-btn.twitter:hover { background: #1DA1F2; color: #fff; border-color: #1DA1F2; }
.share-btn.facebook:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.share-btn.copy:hover { background: var(--fifa-gold); color: #000; border-color: var(--fifa-gold); }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 14px; }
  .hero-meta { gap: 10px; }
  .meta-item { font-size: 11px; padding: 6px 12px; }
  .cd-box span { font-size: 22px; }
  .cd-box { padding: 12px 4px; }
  .hosts-grid { grid-template-columns: 1fr; }
  .predict-container { grid-template-columns: 1fr; }
  .predict-vs { padding: 8px 0; }
  .stadium-view { height: 260px; }
  .stadium-info { grid-template-columns: 1fr; }
  .players-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .chant-card { padding: 14px; }
  .chant-text { font-size: 13px; }
  .poll-percent { font-size: 18px; min-width: 50px; }
  .poll-flag { font-size: 26px; }
  .section-title { font-size: 17px; }
  .fifa-section { padding: 18px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; letter-spacing: 1px; }
  .hero-content { padding: 28px 16px; }
  .hero-countdown { gap: 6px; }
  .cd-box span { font-size: 18px; }
  .cd-box small { font-size: 9px; }
  .players-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .player-avatar { width: 56px; height: 56px; font-size: 24px; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact-value { font-size: 26px; }
  .score-input span { font-size: 28px; }
}
/* ========================================
FIX LIGHT MODE BACKGROUND
======================================== */
body.light .fifa-main {
  background: #f8fafc !important;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

body.light .fifa-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #6c2bd9 50%, #10b981 100%) !important;
}
