/* BILSEMMUN 2024 - Brazil World Cup Theme - Original Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brazil Colors */
  --brazil-green: 144 100% 30%;
  --brazil-yellow: 53 100% 50%;
  --brazil-blue: 221 100% 23%;
  --brazil-orange: 25 100% 50%;
  
  /* Theme Colors */
  --background: 222 20% 8%;
  --foreground: 53 80% 85%;
  --card: 222 25% 12%;
  --card-foreground: 53 70% 90%;
  --primary: 144 100% 30%;
  --primary-foreground: 0 0% 100%;
  --primary-glow: 144 80% 45%;
  --secondary: 53 100% 50%;
  --secondary-foreground: 221 100% 23%;
  --muted: 222 20% 15%;
  --muted-foreground: 144 30% 70%;
  --accent: 25 100% 50%;
  --border: 144 30% 25%;
  --field: 120 60% 15%;
  
  /* Gradients */
  --gradient-brazil: linear-gradient(135deg, hsl(var(--brazil-green)), hsl(var(--brazil-yellow)));
  --gradient-field: linear-gradient(180deg, hsl(var(--field)), hsl(120 50% 20%));
  
  /* Shadows */
  --shadow-brazil: 0 10px 30px -5px hsl(var(--brazil-green) / .3);
  --shadow-glow: 0 0 40px hsl(var(--brazil-yellow) / .4);
  
  --radius: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 20% 50%, hsl(var(--brazil-yellow) / .15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, hsl(var(--brazil-green) / .15) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, hsl(var(--brazil-blue) / .1) 0%, transparent 50%),
    linear-gradient(135deg, hsl(var(--background)), #0b0e13);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid hsl(221 100% 50%);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.logo-text .green {
  color: hsl(var(--brazil-green));
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: hsl(0 0% 70%);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: white;
}

.nav-links a.active {
  color: hsl(var(--brazil-green));
  border-bottom-color: hsl(var(--brazil-green));
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: hsl(var(--brazil-green));
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
/* UI/UX Best Practice: 8px grid system, consistent spacing */
.hero {
  min-height: 100vh;
  padding-top: 80px; /* Header height + minimal breathing room */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 2rem;
}

.hero-content {
  max-width: 900px;
  padding: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0; /* Control spacing with margins */
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  color: hsl(var(--brazil-green));
  margin-bottom: 0.75rem; /* 12px */
  text-shadow: 0 0 60px hsl(var(--brazil-green) / 0.5);
  white-space: nowrap;
  text-align: center;
  width: 100%;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1rem;
  color: hsl(0 0% 75%);
  max-width: 550px;
  margin: 0 auto 1.5rem; /* 24px bottom */
  line-height: 1.6;
  text-align: center;
  width: 100%;
}

.hero-cta {
  font-size: 2rem;
  font-weight: 800;
  color: hsl(var(--brazil-yellow));
  margin-bottom: 0.25rem; /* 4px */
  text-align: center;
  width: 100%;
}

.hero-hint {
  color: hsl(0 0% 55%);
  font-size: 0.875rem;
  margin-bottom: 1.5rem; /* 24px */
  text-align: center;
  width: 100%;
}

/* ===== EVENT BADGE (Inline) ===== */
.event-badge-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: hsl(var(--card) / 0.9);
  border: 1px solid hsl(var(--brazil-green) / 0.5);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  margin: 0 0 1rem 0; /* 16px bottom only */
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  flex-wrap: wrap;
  text-align: center;
}

.event-badge-inline:hover {
  border-color: hsl(var(--brazil-green));
  box-shadow: 0 0 25px hsl(var(--brazil-green) / 0.4);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 1rem;
}

.badge-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: hsl(var(--brazil-yellow));
}

.badge-divider {
  color: hsl(0 0% 40%);
  font-size: 0.7rem;
}

.badge-location {
  font-size: 0.9rem;
  color: hsl(0 0% 65%);
  font-weight: 500;
}

.mini-countdown {
  font-size: 0.85rem;
  color: hsl(var(--brazil-green));
  font-weight: 600;
}

.mini-countdown strong {
  color: white;
  font-weight: 700;
}

/* ===== FOOTBALL FIELD ===== */
.football-field {
  width: 100%;
  max-width: 850px;
  aspect-ratio: 16/10;
  background: 
    repeating-linear-gradient(
      90deg,
      hsl(120 60% 18%) 0px,
      hsl(120 60% 18%) 50px,
      hsl(120 55% 15%) 50px,
      hsl(120 55% 15%) 100px
    );
  border-radius: 20px;
  margin: 2rem auto;
  position: relative;
  border: 4px solid hsl(var(--brazil-green));
  overflow: hidden;
  box-shadow: 
    0 0 80px hsl(var(--brazil-green) / 0.4),
    inset 0 0 100px hsl(0 0% 0% / 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.football-field:hover {
  transform: scale(1.01);
  box-shadow: 
    0 0 100px hsl(var(--brazil-green) / 0.5),
    inset 0 0 100px hsl(0 0% 0% / 0.2);
}

/* Field grass texture */
.football-field::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.field-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  animation: pulse-corner 2s ease-in-out infinite;
}

.field-corner.top-left { top: 12px; left: 12px; background: hsl(var(--brazil-yellow)); animation-delay: 0s; }
.field-corner.top-right { top: 12px; right: 12px; background: hsl(25 100% 50%); animation-delay: 0.5s; }
.field-corner.bottom-left { bottom: 12px; left: 12px; background: hsl(var(--brazil-green)); animation-delay: 1s; }
.field-corner.bottom-right { bottom: 12px; right: 12px; background: hsl(var(--brazil-blue)); animation-delay: 1.5s; }

@keyframes pulse-corner {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.field-inner {
  position: absolute;
  inset: 20px;
  border: 3px solid hsl(0 0% 100% / 0.35);
  border-radius: 12px;
}

.field-center-line {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 3px;
  background: hsl(0 0% 100% / 0.35);
  transform: translateX(-50%);
}

.field-center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border: 3px solid hsl(0 0% 100% / 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.field-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: hsl(0 0% 100% / 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.goal-area {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 150px;
  border: 3px solid hsl(0 0% 100% / 0.35);
}

.goal-area.left {
  left: 20px;
  border-left: none;
  border-radius: 0 12px 12px 0;
}

.goal-area.right {
  right: 20px;
  border-right: none;
  border-radius: 12px 0 0 12px;
}

/* Penalty areas */
.football-field::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 40px;
  height: 80px;
  border: 3px solid hsl(0 0% 100% / 0.25);
  border-left: none;
  border-radius: 0 8px 8px 0;
}

.goal-label {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  color: hsl(0 0% 100% / 0.8);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 2px 10px hsl(0 0% 0% / 0.5);
  animation: glow-text 2s ease-in-out infinite;
}

@keyframes glow-text {
  0%, 100% { text-shadow: 0 2px 10px hsl(0 0% 0% / 0.5); }
  50% { text-shadow: 0 2px 20px hsl(var(--brazil-yellow) / 0.8); }
}

.goal-net {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 70px;
  border: 3px solid hsl(0 0% 100% / 0.4);
  border-top: none;
  border-radius: 0 0 12px 12px;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 10px,
      hsl(0 0% 100% / 0.15) 10px,
      hsl(0 0% 100% / 0.15) 11px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 10px,
      hsl(0 0% 100% / 0.15) 10px,
      hsl(0 0% 100% / 0.15) 11px
    );
  box-shadow: inset 0 0 30px hsl(0 0% 0% / 0.3);
}

/* Soccer Ball - Perfectly Round */
.field-ball {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: float 2.5s ease-in-out infinite, spin-slow 8s linear infinite;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 10px 20px hsl(0 0% 0% / 0.5));
}

.field-ball:hover {
  transform: translateX(-50%) scale(1.25) translateY(-15px);
  filter: 
    drop-shadow(0 20px 40px hsl(0 0% 0% / 0.6))
    drop-shadow(0 0 30px hsl(var(--brazil-yellow) / 0.8));
  animation: float 2.5s ease-in-out infinite, wiggle 0.5s ease-in-out infinite;
}

.field-ball:active {
  transform: translateX(-50%) scale(0.9);
  transition: transform 0.1s ease;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-15px); }
}

@keyframes spin-slow {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes wiggle {
  0%, 100% { transform: translateX(-50%) scale(1.25) translateY(-15px) rotate(-5deg); }
  50% { transform: translateX(-50%) scale(1.25) translateY(-15px) rotate(5deg); }
}

.field-ball-hint {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: hsl(var(--brazil-yellow));
  font-weight: 600;
  text-shadow: 0 2px 10px hsl(0 0% 0% / 0.8);
  animation: bounce-hint 1.5s ease-in-out infinite;
}

@keyframes bounce-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

/* Stadium Lights Effect */
.football-field .field-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 25%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, hsl(0 0% 100% / 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Ball Container */
.ball-container {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Shooting Animation */
.field-ball.shooting {
  animation: shoot-to-goal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

@keyframes shoot-to-goal {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  30% {
    transform: translateX(-50%) translateY(20px) scale(0.9);
  }
  100% {
    transform: translateX(-50%) translateY(-250px) scale(0.5);
    opacity: 0.8;
  }
}

/* Goal Net Shake */
.goal-net.shake {
  animation: net-shake 0.5s ease-in-out;
}

@keyframes net-shake {
  0%, 100% { transform: translateX(-50%) scaleX(1); }
  25% { transform: translateX(-50%) scaleX(1.1); }
  50% { transform: translateX(-50%) scaleX(0.95); }
  75% { transform: translateX(-50%) scaleX(1.05); }
}

/* Goal Celebration */
.goal-celebration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.3s ease;
}

.goal-celebration.active {
  opacity: 1;
}

.goal-text {
  font-size: 3rem;
  font-weight: 800;
  color: hsl(var(--brazil-yellow));
  text-shadow: 
    0 0 20px hsl(var(--brazil-yellow) / 0.8),
    0 0 40px hsl(var(--brazil-yellow) / 0.6),
    0 4px 10px hsl(0 0% 0% / 0.5);
  animation: goal-pop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes goal-pop {
  0% {
    transform: scale(0) rotate(-10deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Confetti */
.confetti {
  position: absolute;
  top: -10px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: confetti-fall 1.5s ease-out forwards;
  z-index: 15;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(400px) rotate(720deg);
    opacity: 0;
  }
}

.hero-info {
  color: hsl(0 0% 50%);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
}

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

.section-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: hsl(var(--brazil-green));
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: hsl(0 0% 70%);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: hsl(0 0% 75%);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--brazil-green));
}

.stat-label {
  color: hsl(0 0% 60%);
  font-size: 0.85rem;
  text-transform: capitalize;
}

/* ===== FEATURE CARDS ===== */
.features-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: hsl(var(--brazil-green));
  transform: translateX(8px);
  box-shadow: var(--shadow-brazil);
}

.feature-card h3 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-card p {
  color: hsl(0 0% 55%);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== VENUE SECTION ===== */
.venue-section {
  background: hsl(var(--card) / 0.5);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.venue-item {
  margin-bottom: 2rem;
}

.venue-item h3 {
  color: hsl(var(--brazil-green));
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.venue-item p {
  color: hsl(0 0% 80%);
  font-size: 0.95rem;
}

.venue-item .detail {
  color: hsl(0 0% 55%);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.venue-map {
  background: hsl(var(--card));
  border-radius: 12px;
  height: 250px;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.3);
}

.venue-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: hsl(var(--brazil-green));
  color: white;
}

.btn-primary:hover {
  background: hsl(144 100% 35%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brazil);
}

.btn-secondary {
  background: transparent;
  color: hsl(var(--brazil-green));
  border: 2px solid hsl(var(--brazil-green));
}

.btn-secondary:hover {
  background: hsl(var(--brazil-green));
  color: white;
}

.btn-orange {
  background: linear-gradient(135deg, hsl(25 100% 50%), hsl(40 100% 50%));
  color: hsl(var(--background));
  font-weight: 700;
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px hsl(25 100% 50% / 0.4);
}

/* ===== PAGE TITLE ITALIC ===== */
.page-title-italic {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  font-style: italic;
  color: hsl(var(--brazil-green));
  text-align: center;
  margin-bottom: 1rem;
}

.page-desc-wide {
  color: hsl(0 0% 70%);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== COMMITTEE CARDS ===== */
.committees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  perspective: 1000px;
}

.committee-card {
  background: linear-gradient(145deg, hsl(222 25% 14%), hsl(222 25% 10%));
  border: 1px solid hsl(var(--brazil-green) / 0.3);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 20px hsl(0 0% 0% / 0.3),
    0 0 0 1px hsl(var(--brazil-green) / 0.1);
}

/* Subtle glow effect on card */
.committee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    hsl(var(--brazil-green) / 0.5), 
    transparent
  );
}

/* Corner accent */
.committee-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, hsl(var(--brazil-green) / 0.1) 0%, transparent 70%);
  transition: all 0.4s ease;
}

.committee-card:hover {
  border-color: hsl(var(--brazil-green) / 0.6);
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px hsl(0 0% 0% / 0.4),
    0 0 30px hsl(var(--brazil-green) / 0.2),
    0 0 60px hsl(var(--brazil-green) / 0.1),
    inset 0 0 30px hsl(var(--brazil-green) / 0.03);
}

.committee-card:hover::after {
  transform: scale(1.5);
  opacity: 1;
}

.committee-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.committee-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, hsl(var(--brazil-green) / 0.2), hsl(var(--brazil-green) / 0.1));
  border: 1px solid hsl(var(--brazil-green) / 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--brazil-green));
  box-shadow: 0 0 15px hsl(var(--brazil-green) / 0.2);
  transition: all 0.3s ease;
}

.committee-card:hover .committee-icon {
  box-shadow: 0 0 25px hsl(var(--brazil-green) / 0.4);
  transform: scale(1.1);
}

.committee-icon svg {
  width: 22px;
  height: 22px;
}

.committee-level {
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.level-advanced {
  background: hsl(var(--brazil-green) / 0.15);
  color: hsl(144 100% 45%);
  border-color: hsl(var(--brazil-green) / 0.3);
  box-shadow: 0 0 10px hsl(var(--brazil-green) / 0.2);
}

.level-intermediate {
  background: hsl(221 100% 50% / 0.15);
  color: hsl(221 100% 70%);
  border-color: hsl(221 100% 50% / 0.3);
  box-shadow: 0 0 10px hsl(221 100% 50% / 0.2);
}

.level-beginner {
  background: hsl(var(--brazil-yellow) / 0.15);
  color: hsl(53 100% 55%);
  border-color: hsl(var(--brazil-yellow) / 0.3);
  box-shadow: 0 0 10px hsl(var(--brazil-yellow) / 0.2);
}

.level-all {
  background: hsl(280 100% 50% / 0.15);
  color: hsl(280 100% 75%);
  border-color: hsl(280 100% 50% / 0.3);
  box-shadow: 0 0 10px hsl(280 100% 50% / 0.2);
}

.level-historical {
  background: hsl(25 100% 50% / 0.15);
  color: hsl(25 100% 65%);
  border-color: hsl(25 100% 50% / 0.3);
  box-shadow: 0 0 10px hsl(25 100% 50% / 0.2);
}

.committee-card h3 {
  font-size: 1.15rem;
  color: white;
  margin-bottom: 0.25rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.committee-abbr {
  color: hsl(var(--brazil-green));
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px hsl(var(--brazil-green) / 0.3);
}

.committee-card > p {
  color: hsl(0 0% 65%);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.committee-topic {
  border-top: 1px solid hsl(var(--brazil-green) / 0.2);
  padding-top: 1rem;
  position: relative;
  z-index: 1;
  background: hsl(0 0% 0% / 0.2);
  margin: 0 -1.75rem -1.75rem -1.75rem;
  padding: 1rem 1.75rem 1.75rem 1.75rem;
  border-radius: 0 0 16px 16px;
}

.committee-topic span {
  color: hsl(0 0% 50%);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.committee-topic p {
  color: hsl(var(--brazil-yellow));
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 0.4rem;
  text-shadow: 0 0 15px hsl(var(--brazil-yellow) / 0.3);
}

/* ===== APPLY PAGE ===== */
.page-hero {
  padding-top: 120px;
  padding-bottom: 3rem;
  text-align: center;
  background: linear-gradient(180deg, hsl(var(--card) / 0.8) 0%, transparent 100%);
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: hsl(var(--brazil-yellow));
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.page-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.page-desc {
  color: hsl(0 0% 65%);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ===== ROLE CARDS ===== */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.role-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.3);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.role-card:hover {
  border-color: hsl(var(--brazil-green));
  box-shadow: var(--shadow-brazil);
}

.role-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.role-icon {
  width: 48px;
  height: 48px;
  background: hsl(var(--brazil-green) / 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.role-card h3 {
  font-size: 1.4rem;
  color: hsl(var(--brazil-green));
  font-weight: 600;
}

.role-card > p {
  color: hsl(0 0% 65%);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.role-benefits h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.role-benefits ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.role-benefits li {
  color: hsl(var(--brazil-yellow));
  font-size: 0.85rem;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.role-benefits li::before {
  content: '⚽';
  font-size: 0.65rem;
}

.role-card .btn {
  width: 100%;
}

/* ===== APPLICATION INFO ===== */
.app-info-section {
  background: hsl(var(--card) / 0.5);
}

.app-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.app-info-item {
  padding: 1.5rem;
}

.app-info-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.app-info-item h3 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.app-info-item p {
  color: hsl(0 0% 60%);
  font-size: 0.9rem;
}

.app-info-item a {
  color: hsl(25 100% 55%);
  transition: color 0.3s;
}

.app-info-item a:hover {
  color: hsl(25 100% 65%);
  text-decoration: underline;
}

/* ===== SCHEDULE SECTION ===== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.schedule-card {
  background: linear-gradient(145deg, hsl(var(--card)), hsl(222 25% 10%));
  border: 1px solid hsl(var(--border) / 0.4);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.schedule-card:hover {
  border-color: hsl(var(--brazil-green) / 0.5);
  box-shadow: 0 10px 40px hsl(var(--brazil-green) / 0.1);
  transform: translateY(-5px);
}

.schedule-day {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid hsl(var(--brazil-green) / 0.3);
  font-style: italic;
}

.schedule-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.schedule-item:hover {
  background: hsl(0 0% 100% / 0.05);
}

.schedule-event {
  color: hsl(0 0% 80%);
  font-size: 0.9rem;
  font-weight: 500;
}

.schedule-time {
  color: hsl(0 0% 55%);
  font-size: 0.85rem;
  font-family: 'Courier New', monospace;
}

.schedule-item.highlight {
  background: hsl(var(--brazil-green) / 0.15);
  border-left: 3px solid hsl(var(--brazil-green));
}

.schedule-item.highlight .schedule-event {
  color: hsl(var(--brazil-green));
  font-weight: 600;
}

.schedule-item.break .schedule-event {
  color: hsl(0 0% 50%);
  font-style: italic;
}

/* ===== FEE SECTION ===== */
.fee-section {
  background: hsl(var(--card) / 0.5);
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fee-card {
  background: hsl(222 25% 10%);
  border: 1px solid hsl(var(--border) / 0.4);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.fee-card:hover {
  border-color: hsl(var(--brazil-green) / 0.5);
  box-shadow: 0 10px 40px hsl(0 0% 0% / 0.3);
}

.fee-card.featured {
  border-color: hsl(var(--brazil-green));
  transform: scale(1.02);
}

.fee-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fee-badge.early {
  background: hsl(var(--brazil-green));
  color: white;
}

.fee-badge.regular {
  background: hsl(var(--brazil-yellow));
  color: hsl(var(--background));
}

.fee-badge.late {
  background: hsl(25 100% 50%);
  color: white;
}

.fee-period {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid hsl(0 0% 100% / 0.1);
}

.fee-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.fee-role {
  color: hsl(0 0% 70%);
  font-size: 0.9rem;
}

.fee-price {
  color: hsl(var(--brazil-yellow));
  font-size: 1rem;
  font-weight: 700;
}

/* ===== VENUE SHOWCASE ===== */
.venue-showcase {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: stretch;
}

.venue-info-card {
  background: linear-gradient(145deg, hsl(var(--card)), hsl(222 25% 10%));
  border: 1px solid hsl(var(--border) / 0.4);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.venue-info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.venue-address {
  color: hsl(var(--brazil-yellow));
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.venue-description {
  color: hsl(0 0% 60%);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.venue-map-large {
  background: hsl(var(--card));
  border-radius: 20px;
  height: 350px;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.3);
}

.venue-map-large iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, hsl(var(--brazil-green) / 0.1) 0%, hsl(var(--brazil-blue) / 0.1) 100%);
}

.cta-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: hsl(var(--brazil-yellow));
  margin-bottom: 1rem;
}

.cta-text {
  color: hsl(0 0% 65%);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, hsl(var(--card)) 0%, hsl(222 25% 6%) 100%);
  padding: 3rem 2rem 1.5rem;
  text-align: center;
  border-top: 2px solid hsl(221 100% 50%);
}

.footer-cta {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--brazil-yellow));
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: hsl(0 0% 65%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: hsl(var(--brazil-green));
}

.footer-copy {
  color: hsl(0 0% 45%);
  font-size: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(0 0% 100% / 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .committees-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid,
  .venue-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .schedule-grid,
  .fee-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .fee-card.featured {
    transform: none;
  }
  
  .venue-showcase {
    grid-template-columns: 1fr;
  }
  
  .venue-map-large {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid hsl(var(--border) / 0.3);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: none;
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .committees-grid,
  .roles-grid {
    grid-template-columns: 1fr;
  }
  
  .app-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .football-field {
    aspect-ratio: 4/3;
    max-width: 100%;
  }
  
  .field-ball {
    width: 60px;
    height: 60px;
  }
  
  .goal-text {
    font-size: 2rem;
  }
  
  .goal-net {
    width: 100px;
    height: 50px;
  }
  
  .page-hero {
    padding-top: 100px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .event-badge-inline {
    padding: 0.6rem 1rem;
    gap: 0.4rem;
    border-radius: 16px;
  }
  
  .badge-text {
    font-size: 0.9rem;
  }
  
  .badge-location {
    font-size: 0.8rem;
  }
  
  .badge-icon {
    font-size: 1rem;
  }
  
  .mini-countdown {
    font-size: 0.8rem;
  }
}
