/* Theme variables */
:root{
  --bg:#071034;              /* deep blue */
  --panel:#0e234b;           /* darker card bg */
  --accent:#FFD84A;          /* bright yellow */
  --muted:#98A3C9;
  --glass: rgba(255,255,255,0.04);
  --max-width:1200px;
}

/* Reset / base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: linear-gradient(180deg,var(--bg) 0%, #07183a 100%);
  color:#eef2ff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,216,74,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(100,149,237,0.06) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(255,216,74,0.04) 0%, transparent 35%);
  z-index: -1;
  animation: backgroundFloat 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes backgroundFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(1deg); }
  66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

/* Professional Coin Splash Animation */
.coin-splash {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 9999;
}

.coin-splash .coin {
  position: absolute;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FFD84A 0%, #FFC107 50%, #FFB300 100%);
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow:
    0 0 0 2px rgba(255,216,74,0.2),
    0 8px 16px rgba(255,216,74,0.4),
    inset 0 2px 0 rgba(255,255,255,0.4),
    inset 0 -2px 0 rgba(0,0,0,0.2);
  opacity: 0;
  animation: coinSplashPro 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.coin-splash .coin::before {
  content: "$";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 700;
  color: rgba(7,16,52,0.6);
  font-family: 'Space Grotesk', sans-serif;
}

.coin-splash .coin:nth-child(1) { animation-delay: 0s; }
.coin-splash .coin:nth-child(2) { animation-delay: 0.03s; }
.coin-splash .coin:nth-child(3) { animation-delay: 0.06s; }
.coin-splash .coin:nth-child(4) { animation-delay: 0.09s; }
.coin-splash .coin:nth-child(5) { animation-delay: 0.12s; }
.coin-splash .coin:nth-child(6) { animation-delay: 0.15s; }
.coin-splash .coin:nth-child(7) { animation-delay: 0.18s; }
.coin-splash .coin:nth-child(8) { animation-delay: 0.21s; }

@keyframes coinSplashPro {
  0% {
    transform: translate(-50%, -50%) scale(1.5) rotate(0deg);
    opacity: 0;
    filter: blur(4px);
  }
  15% {
    opacity: 1;
    filter: blur(0px);
  }
  50% {
    opacity: 1;
    transform: translate(calc(-50% + var(--x) * 0.6), calc(-50% + var(--y) * 0.6)) scale(1) rotate(180deg);
  }
  100% {
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(0.4) rotate(360deg);
    opacity: 0;
    filter: blur(2px);
  }
}

.coin-splash .coin:nth-child(1) { --x: -300px; --y: -180px; }
.coin-splash .coin:nth-child(2) { --x: 300px; --y: -180px; }
.coin-splash .coin:nth-child(3) { --x: 250px; --y: 200px; }
.coin-splash .coin:nth-child(4) { --x: -250px; --y: 200px; }
.coin-splash .coin:nth-child(5) { --x: -350px; --y: 30px; }
.coin-splash .coin:nth-child(6) { --x: 350px; --y: 30px; }
.coin-splash .coin:nth-child(7) { --x: 0px; --y: -300px; }
.coin-splash .coin:nth-child(8) { --x: 0px; --y: 280px; }

/* Static Coins on Homepage */
.static-coins {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.static-coin {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 30% 30%, rgba(255,216,74,0.15), rgba(255,216,74,0.05));
  border: 2px solid rgba(255,216,74,0.2);
  border-radius: 50%;
  box-shadow:
    inset 0 0 20px rgba(255,216,74,0.1),
    0 0 30px rgba(255,216,74,0.1);
}

.static-coin::before {
  content: "$";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,216,74,0.3);
  font-family: 'Space Grotesk', sans-serif;
}

/* Utility container */
.container{
  width: min(94%, var(--max-width));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: fixed;
  left:0; right:0; top:0;
  z-index: 1200;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(4,18,50,0.85), rgba(4,18,50,0.60));
  border-bottom: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 2px 10px rgba(2,10,30,0.3);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:1rem;
  padding: 0.8rem 0;
}

/* Brand */
.brand{
  display: flex;
  gap: 1rem;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand:hover .brand-logo {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 8px 24px rgba(255,216,74,0.3);
}

.brand-logo{
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #ffa726);
  padding: 8px;
  box-shadow: 0 6px 20px rgba(255,216,74,0.2);
  transition: all 0.3s ease;
  animation: logoSpin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s backwards;
}

@keyframes logoSpin {
  0% {
    transform: rotate(0deg) scale(0.3);
    opacity: 0;
    filter: blur(10px);
  }
  50% {
    transform: rotate(360deg) scale(1.2);
    filter: blur(2px);
  }
  100% {
    transform: rotate(720deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
}

.brand-title{
  font-family: 'Space Grotesk', sans-serif;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(255,216,74,0.2);
  transition: all 0.3s ease;
  animation: fadeInFromLeft 1s ease-out 0.5s backwards;
}

@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

.brand:hover .brand-title {
  text-shadow: 0 2px 15px rgba(255,216,74,0.4);
  letter-spacing: 0px;
}

/* nav toggle (hidden checkbox) */
#nav-toggle{ display:none; }

/* Nav */
.nav{
  margin-left:auto;
}
.nav-links{
  display:flex;
  gap:1rem;
  list-style:none;
  align-items:center;
}
.nav-links a{
  color:var(--muted);
  text-decoration:none;
  padding:8px 12px;
  border-radius:8px;
  font-weight:600;
  transition:all .18s ease;
}
.nav-links a:hover{ color: #fff; background: rgba(255,255,255,0.03); transform:translateY(-1px); }
.nav-links a.active{ color:var(--bg); background:var(--accent); }

/* CTA button */
.btn{
  background:var(--accent);
  color:var(--bg);
  padding:9px 14px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  display:inline-block;
  box-shadow: 0 8px 20px rgba(255,216,74,0.12);
}
.btn.ghost{
  background:transparent;
  color:var(--accent);
  border: 1px solid rgba(255,216,74,0.12);
}
.btn.large{ padding:12px 20px; font-size:1rem }

/* Mobile hamburger label */
.nav-toggle{
  display:none;
  margin-left:auto;
  width:44px;
  height:40px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:3px;
  background:var(--muted);
  border-radius:3px;
  margin:6px 0;
  transition:all .18s ease;
}

/* Hero */
.hero{
  padding-top:92px; /* header offset */
  min-height:78vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(800px 300px at 15% 20%, rgba(255,216,74,0.06), transparent 8%),
    linear-gradient(180deg, rgba(7,16,52,0.0), rgba(3,7,25,0.2)),
    linear-gradient(135deg, #05204b 0%, #081b3a 100%);
}
.hero-inner{
  padding: 56px 0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}
.hero-content{
  max-width:720px;
}
.hero h1{
  margin:0;
  font-family:'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--accent);
  letter-spacing: -0.5px;
}
.lead{
  color: #dfe8ff;
  margin-top:10px;
  font-size:1.05rem;
}

/* Sections */
.section{
  padding: 56px 0;
}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
  border-top: 1px solid rgba(255,255,255,0.02);
}

/* Headings */
.section h2{
  font-family:'Space Grotesk', sans-serif;
  color:var(--accent);
  margin-bottom:8px;
  font-size:1.6rem;
}
.section-sub{
  color:var(--muted);
  margin-bottom:20px;
}

/* Stats grid */
.stats-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  gap:14px;
  margin-top:18px;
}
.stat{
  background:var(--panel);
  padding:18px;
  border-radius:12px;
  text-align:center;
  box-shadow: inset 0 -10px 24px rgba(0,0,0,0.2);
}
.stat-number{ font-size:1.35rem; color:var(--accent); font-weight:700; }
.stat-label{ color:var(--muted); margin-top:6px; }

/* Team grid */
.team-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:18px;
  margin-top:18px;
}
.team-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding:18px;
  border-radius:14px;
  text-align:center;
}
.team-card img{
  width:96px;
  height:96px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:12px;
  border:3px solid rgba(255,255,255,0.03);
}
.team-card h3{ margin:6px 0 4px; }
.team-card p{ color:var(--muted); font-size:0.95rem; }

/* Sponsors */
.sponsors-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
  gap:12px;
  margin-top:20px;
}

.sponsors-grid-large{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.sponsor{
  background:linear-gradient(180deg, rgba(255,255,255,0.015), rgba(0,0,0,0.04));
  border-radius:12px;
  padding:18px;
  text-align:center;
  color:var(--muted);
  font-weight:700;
  box-shadow: 0 10px 30px rgba(2,8,30,0.3);
}

.sponsor-logo-wrapper {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  padding: 20px;
}

/* Schedule */
.schedule-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
  margin-top:18px;
}
.schedule-card{
  background:var(--panel);
  padding:18px;
  border-radius:12px;
  line-height:1.5;
}

/* FAQ */
.faq-list details{
  background:var(--panel);
  padding:14px;
  border-radius:10px;
  margin-bottom:10px;
}
details summary{
  font-weight:700;
  cursor:pointer;
  list-style:none;
}
details p{ color:var(--muted); margin-top:8px; }

/* Dashboard (login) */
.auth-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  margin-top:18px;
  align-items:center;
}
.login-form{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));
  padding:18px;
  border-radius:12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.login-form label{ display:block; margin-bottom:12px; color:var(--muted); font-weight:600; }
.login-form input{
  width:100%;
  padding:10px;
  margin-top:6px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
  color:#fff;
}

/* Footer */
.site-footer{
  padding: 50px 0 30px;
  background: linear-gradient(180deg,#030812 0%, #020510 100%);
  border-top: 2px solid rgba(255,216,74,0.1);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.footer-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-inner p {
  font-size: 1rem;
  color: #dfe8ff;
  margin: 0;
}

.footer-inner .muted {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* small / muted */
.muted{ color:var(--muted); font-size:0.9rem; }

/* Responsive breakpoints */
@media (max-width:980px){
  .auth-grid{ grid-template-columns: 1fr; }
  .nav-links{ gap:0.25rem; }
}

@media (max-width:820px){
  .nav-links{ display:none; }            /* hide on mobile; shown when toggle active */
  .nav-toggle{ display:block; }

  /* When checked show nav links stacked */
  #nav-toggle:checked ~ nav .nav-links{
    display:flex;
    position: absolute;
    right: 14px;
    top: 72px;
    background: linear-gradient(180deg, rgba(5,15,40,0.95), rgba(2,8,25,0.9));
    padding: 12px;
    flex-direction: column;
    align-items:flex-end;
    width: min(90%, 320px);
    border-radius:10px;
    box-shadow: 0 24px 42px rgba(0,0,0,0.6);
  }
  .nav-links a{ width:100%; text-align:right; padding:10px 14px; }

  .hero-inner{ justify-content:center; text-align:center; }
}

/* Ensure anchors don't hide content under fixed header */
main section { scroll-margin-top: 92px; }

/* Decorative grid pattern */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255,216,74,0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,216,74,0.01) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section {
  position: relative;
}

.section:hover::before {
  opacity: 1;
}

/* NEW: Enhanced Animations and Modern Styles */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-fade-in {
  animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }

.hero-title {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-date {
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 600;
  margin: 10px 0;
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s backwards;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.45s backwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat strong {
  color: var(--accent);
  font-size: 1.8rem;
  font-family: 'Space Grotesk', sans-serif;
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-animation::before,
.hero-bg-animation::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,216,74,0.15) 0%, transparent 70%);
  animation: orbit 25s linear infinite;
}

.hero-bg-animation::before {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
  animation-duration: 30s;
}

.hero-bg-animation::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  animation-duration: 35s;
  animation-direction: reverse;
}

@keyframes orbit {
  0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,216,74,0.3);
}

.btn.ghost:hover {
  background: rgba(255,216,74,0.1);
  border-color: var(--accent);
}

.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn.disabled::before {
  display: none;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.highlight-card {
  background: var(--panel);
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.03);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  border-color: rgba(255,216,74,0.3);
}

.highlight-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent), #ffa726);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255,216,74,0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover .highlight-icon-circle {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(255,216,74,0.5);
}

.highlight-icon-circle svg {
  width: 40px;
  height: 40px;
  color: var(--bg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover .highlight-icon-circle svg {
  transform: scale(1.1);
}

.highlight-card h3 {
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  margin: 12px 0;
  font-size: 1.3rem;
}

.highlight-card p {
  color: var(--muted);
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, rgba(255,216,74,0.05) 0%, rgba(255,216,74,0.02) 100%);
  border-top: 1px solid rgba(255,216,74,0.1);
  border-bottom: 1px solid rgba(255,216,74,0.1);
}

.cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.cta-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.03);
}

.sponsor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-color: rgba(255,216,74,0.25);
}

.sponsor-logo {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.sponsor-card:hover .sponsor-logo {
  filter: brightness(1.1);
}

.sponsor-card h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin: 8px 0 4px;
}

.sponsor-card p {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.sponsor-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid rgba(255,216,74,0.1);
}

.sponsor-cta h3 {
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.sponsor-cta p {
  color: var(--muted);
  margin-bottom: 24px;
}

.about-content {
  margin-top: 40px;
}

.about-content h3 {
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: #dfe8ff;
  line-height: 1.6;
}

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.faq-list details {
  transition: all 0.3s ease;
}

.faq-list details:hover {
  background: rgba(255,255,255,0.03);
  transform: translateX(5px);
}

.faq-list details[open] {
  background: rgba(255,216,74,0.05);
  border: 1px solid rgba(255,216,74,0.1);
}

.stat {
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 -10px 24px rgba(0,0,0,0.2), 0 10px 25px rgba(255,216,74,0.1);
}

.schedule-note {
  margin-top: 40px;
  padding: 30px;
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid rgba(255,216,74,0.1);
}

.schedule-note h3 {
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 16px;
}

.schedule-note ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.schedule-note li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--muted);
}

.schedule-note li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffa726);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg);
  margin: 0 auto 16px;
  font-family: 'Space Grotesk', sans-serif;
}

.team-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 8px 0;
}

.team-bio {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.team-join {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid rgba(255,216,74,0.1);
}

.team-join h3 {
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.team-join p {
  color: var(--muted);
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .hero-stats {
    gap: 20px;
  }

  .hero-stat strong {
    font-size: 1.4rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn.large {
    width: 100%;
    text-align: center;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .team-avatar {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }

  .footer-inner {
    gap: 12px;
  }
}

/* Crisis Scenario Styles */
.unique-format {
  background: linear-gradient(135deg, rgba(255,216,74,0.08), rgba(255,216,74,0.03));
  border: 2px solid rgba(255,216,74,0.15);
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
}

.unique-format h3 {
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.unique-format p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dfe8ff;
}

.crisis-format {
  margin: 50px 0;
}

.crisis-format h3 {
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.crisis-explanation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.crisis-step {
  background: var(--panel);
  border: 1px solid rgba(255,216,74,0.1);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.crisis-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255,216,74,0.35);
  box-shadow: 0 24px 48px rgba(255,216,74,0.15);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent), #ffa726);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 5px 15px rgba(255,216,74,0.3);
}

.crisis-step h4 {
  color: var(--accent);
  font-size: 1.3rem;
  margin: 20px 0 12px;
  font-family: 'Space Grotesk', sans-serif;
}

.crisis-step p {
  color: var(--muted);
  line-height: 1.7;
}

/* TBD Schedule Styles */
.schedule-tbd-container {
  display: flex;
  justify-content: center;
  padding: 50px 0;
}

.tbd-card {
  background: linear-gradient(135deg, var(--panel), rgba(14,35,75,0.5));
  border: 2px solid rgba(255,216,74,0.2);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  max-width: 600px;
  position: relative;
  overflow: hidden;
}

.tbd-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,216,74,0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.tbd-icon-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent), #ffa726);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255,216,74,0.4);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.tbd-icon-circle svg {
  width: 50px;
  height: 50px;
  color: var(--bg);
}

.tbd-card h3 {
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

.tbd-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #ffa726);
  color: var(--bg);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 20px 0;
  box-shadow: 0 5px 20px rgba(255,216,74,0.3);
  position: relative;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
}

.tbd-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* Better Sponsor Grid */
.sponsors-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .sponsors-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .crisis-explanation {
    grid-template-columns: 1fr;
  }

  .tbd-card {
    padding: 40px 25px;
  }
}
