:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #151515;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #6b6b6b;
  --accent: #ffffff;
  --accent-light: #e0e0e0;
  --accent-glow: rgba(255, 255, 255, 0.15);
  --gold: #d4a843;
  --silver: #c0c0c0;
  --bronze: #cd7f32;
  --success: #00c853;
  --border: #2a2a2a;
  --border-light: #3a3a3a;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.6);
  --transition: 0.3s ease;
  --max-width: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

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

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, #b0b0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0f;
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-light);
  color: #0a0a0f;
  box-shadow: 0 0 40px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 8px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-tertiary);
}

.nav-cta {
  padding: 10px 24px;
  background: var(--accent);
  color: #0a0a0f !important;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-cta:hover {
  background: var(--accent-light);
  color: #0a0a0f !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
}

/* HERO */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 24px 140px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 70%, rgba(249, 115, 22, 0.04) 0%, transparent 50%),
              var(--bg-primary);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

.p1 { width: 6px; height: 6px; background: rgba(168, 85, 247, 0.5); top: 15%; left: 10%; animation-delay: 0s; }
.p2 { width: 4px; height: 4px; background: rgba(249, 115, 22, 0.5); top: 25%; left: 85%; animation-delay: 1s; }
.p3 { width: 8px; height: 8px; background: rgba(168, 85, 247, 0.3); top: 60%; left: 5%; animation-delay: 2s; }
.p4 { width: 5px; height: 5px; background: rgba(255, 255, 255, 0.3); top: 10%; left: 50%; animation-delay: 3s; }
.p5 { width: 4px; height: 4px; background: rgba(249, 115, 22, 0.4); top: 70%; left: 90%; animation-delay: 4s; }
.p6 { width: 6px; height: 6px; background: rgba(168, 85, 247, 0.4); top: 80%; left: 40%; animation-delay: 5s; }
.p7 { width: 3px; height: 3px; background: rgba(255, 255, 255, 0.25); top: 40%; left: 70%; animation-delay: 6s; }
.p8 { width: 5px; height: 5px; background: rgba(249, 115, 22, 0.3); top: 50%; left: 20%; animation-delay: 7s; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-40px) scale(0.5); }
}

.hero-floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  opacity: 0;
  animation: iconFloat 12s ease-in-out infinite;
}

.floating-icon svg {
  width: 100%;
  height: 100%;
}

.fi-1  { width: 48px; height: 48px; top: 8%;  left: 6%;  color: rgba(168, 85, 247, 0.6);  animation-delay: 0s;   animation-duration: 5s; }
.fi-2  { width: 42px; height: 42px; top: 5%;  left: 75%; color: rgba(249, 115, 22, 0.55); animation-delay: 0.5s; animation-duration: 6s; }
.fi-3  { width: 38px; height: 38px; top: 35%; left: 3%;  color: rgba(255, 255, 255, 0.35); animation-delay: 1s;  animation-duration: 5.5s; }
.fi-4  { width: 52px; height: 52px; top: 12%; left: 42%; color: rgba(168, 85, 247, 0.5);  animation-delay: 0.8s; animation-duration: 7s; }
.fi-5  { width: 44px; height: 44px; top: 65%; left: 8%;  color: rgba(20, 184, 166, 0.55); animation-delay: 1.5s; animation-duration: 5s; }
.fi-6  { width: 36px; height: 36px; top: 3%;  left: 30%; color: rgba(255, 255, 255, 0.3);  animation-delay: 2s;  animation-duration: 6s; }
.fi-7  { width: 40px; height: 40px; top: 75%; left: 92%; color: rgba(249, 115, 22, 0.5);  animation-delay: 2.5s; animation-duration: 5.5s; }
.fi-8  { width: 50px; height: 50px; top: 80%; left: 50%; color: rgba(168, 85, 247, 0.45); animation-delay: 1.2s; animation-duration: 7s; }
.fi-9  { width: 42px; height: 42px; top: 20%; left: 90%; color: rgba(20, 184, 166, 0.5);  animation-delay: 3s;   animation-duration: 6s; }
.fi-10 { width: 44px; height: 44px; top: 50%; left: 95%; color: rgba(255, 255, 255, 0.35); animation-delay: 0.3s; animation-duration: 5s; }

@keyframes iconFloat {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.6); }
  15%  { opacity: 1; transform: translateY(-15px) rotate(8deg) scale(0.9); }
  50%  { opacity: 1; transform: translateY(-40px) rotate(-12deg) scale(1.1); }
  85%  { opacity: 1; transform: translateY(-65px) rotate(6deg) scale(0.9); }
  100% { opacity: 0; transform: translateY(-80px) rotate(-5deg) scale(0.6); }
}

.hero-split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-split .hero-content {
  flex: 1;
  text-align: left;
  animation: heroFadeIn 0.8s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-image {
  flex: 0 0 540px;
  position: relative;
  animation: heroImageIn 1s ease-out 0.3s both;
}

@keyframes heroImageIn {
  from { opacity: 0; transform: translateX(30px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-image .robot-mascot {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, rgba(200, 200, 200, 0.04) 40%, transparent 70%);
  border-radius: 24px;
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}

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

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease;
}

.hero-image:hover img {
  transform: scale(1.02);
}

.hero-image-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.hero-image-badge-icon {
  color: #f97316;
  margin-right: 4px;
}

@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }
  .hero-split .hero-content {
    text-align: center;
  }
  .hero-image {
    flex: 0 0 auto;
    max-width: 360px;
    order: -1;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 300;
}

.hero-details {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-details strong {
  color: var(--text-secondary);
}

.countdown {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}

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

.countdown-value {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #fff;
  line-height: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 80px;
}

.countdown-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 8px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .countdown {
    justify-content: center;
  }
  .hero-ctas {
    justify-content: center;
  }
}

/* KEY FACTS STRIP */
.facts-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.fact-item {
  padding: 16px;
}

.fact-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--accent-light);
}

.fact-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.fact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CATEGORY CARDS */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px var(--accent-glow);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-age {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.category-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.gradient-codefest {
  background: linear-gradient(to right, #3b82f6 0%, #60a5fa 30%, #d4a017 70%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-u16 {
  background: linear-gradient(to right, #a855f7 0%, #8b5cf6 30%, #14b8a6 70%, #2dd4bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.gradient-u12 {
  background: linear-gradient(to right, #a855f7 0%, #d946ef 30%, #f97316 70%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.gradient-u9 {
  background: linear-gradient(to right, #a855f7 0%, #c084fc 30%, #facc15 70%, #fde047 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.category-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* WHY CODEFEST */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.why-item:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-icon-orbit {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.orbit-ring-1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: orbitSpin 20s linear infinite;
}

.orbit-ring-2 {
  width: 75%;
  height: 75%;
  top: 12.5%;
  left: 12.5%;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.08);
  animation: orbitSpin 15s linear infinite reverse;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
  animation: corePulse 3s ease-in-out infinite;
}

.orbit-core svg {
  width: 22px;
  height: 22px;
}

@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 8px rgba(168, 85, 247, 0.15); transform: translate(-50%, -50%) scale(1); }
  50% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.4), 0 0 40px rgba(168, 85, 247, 0.15); transform: translate(-50%, -50%) scale(1.08); }
}

.orbit-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  top: 50%;
  left: 50%;
}

.orbit-dot-1 {
  width: 8px;
  height: 8px;
  background: rgba(168, 85, 247, 0.9);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.7);
  animation: orbitPath1 4s linear infinite;
}

.orbit-dot-2 {
  width: 6px;
  height: 6px;
  background: rgba(249, 115, 22, 0.9);
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.7);
  animation: orbitPath2 5s linear infinite;
}

.orbit-dot-3 {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
  animation: orbitPath3 6s linear infinite;
}

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

@keyframes orbitPath1 {
  0%   { transform: translate(-50%, -50%) rotate(0deg) translateX(56px) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg) translateX(56px) rotate(-360deg); }
}

@keyframes orbitPath2 {
  0%   { transform: translate(-50%, -50%) rotate(120deg) translateX(42px) rotate(-120deg); }
  100% { transform: translate(-50%, -50%) rotate(-240deg) translateX(42px) rotate(240deg); }
}

@keyframes orbitPath3 {
  0%   { transform: translate(-50%, -50%) rotate(240deg) translateX(50px) rotate(-240deg); }
  100% { transform: translate(-50%, -50%) rotate(600deg) translateX(50px) rotate(-600deg); }
}

.why-item:nth-child(1) .orbit-ring-1 { animation-duration: 8s; }
.why-item:nth-child(2) .orbit-ring-1 { animation-duration: 10s; }
.why-item:nth-child(3) .orbit-ring-1 { animation-duration: 7s; }
.why-item:nth-child(4) .orbit-ring-1 { animation-duration: 9s; }

.why-item:nth-child(2) .orbit-dot-1 { animation-delay: 0.5s; }
.why-item:nth-child(3) .orbit-dot-1 { animation-delay: 1s; }
.why-item:nth-child(4) .orbit-dot-1 { animation-delay: 1.5s; }
.why-item:nth-child(2) .orbit-dot-2 { animation-delay: 0.8s; }
.why-item:nth-child(3) .orbit-dot-2 { animation-delay: 1.6s; }
.why-item:nth-child(4) .orbit-dot-2 { animation-delay: 2.4s; }

.why-item:nth-child(2) .orbit-core { animation-delay: 0.5s; }
.why-item:nth-child(3) .orbit-core { animation-delay: 1s; }
.why-item:nth-child(4) .orbit-core { animation-delay: 1.5s; }

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* PRIZES */
.prizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}

.prize-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
}

.prize-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.prize-place {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.prize-card:nth-child(1) .prize-place { color: var(--gold); }
.prize-card:nth-child(2) .prize-place { color: var(--silver); }
.prize-card:nth-child(3) .prize-place { color: var(--bronze); }

.prize-card:nth-child(1) { border-color: rgba(212, 168, 67, 0.3); }
.prize-card:nth-child(2) { border-color: rgba(192, 192, 192, 0.3); }
.prize-card:nth-child(3) { border-color: rgba(205, 127, 50, 0.3); }

.prize-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.prize-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prize-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.prize-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.prize-trophy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-style: italic;
}

.prize-trophy::before {
  content: "& ";
}

.prize-trophy-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  vertical-align: middle;
}

.trophy-gold { fill: #FFD700; }
.trophy-silver { fill: #C0C0C0; }
.trophy-bronze { fill: #CD7F32; }

.prizes-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.prizes-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s;
}
.prizes-tab:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
}
.prizes-tab.active {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}
.prizes-tab span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prizes-tab-panel {
  display: none;
}
.prizes-tab-panel.active {
  display: block;
  animation: prizeFadeIn 0.35s ease;
}
@keyframes prizeFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .prizes-tabs {
    gap: 0.35rem;
  }
  .prizes-tab {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

.prizes-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* DISCOUNT BANNER */
.discount-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.discount-banner h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.discount-banner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.discount-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent);
  color: #0a0a0f;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

/* SOCIAL PROOF */
.social-proof {
  text-align: center;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  min-width: 200px;
}

.partner-logo:hover {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.partner-logo img {
  max-height: 55px;
  max-width: 180px;
  object-fit: contain;
}

/* PAST EVENTS / VIDEOS */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.video-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-title {
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: 40px 0;
  position: relative;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.fee-breakdown {
  display: inline-flex;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  margin-bottom: 32px;
}

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

.fee-amount {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-mono);
}

.fee-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FOOTER */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* PAGE HEADER */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* CONTENT SECTIONS */
.content-block {
  margin-bottom: 64px;
}

.about-feature-img {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.about-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-block h2 {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.content-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent-light);
}

.content-block p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-block ul, .content-block ol {
  color: var(--text-secondary);
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-block li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* INFO CARDS */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.included-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  vertical-align: middle;
}

.included-icon svg {
  width: 100%;
  height: 100%;
}

.info-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.info-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.sample-card {
  text-align: center;
}

.prep-icon {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 12px;
  display: block;
}

.sample-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.info-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.deliverable-card {
  text-align: center;
}

.deliverable-icon {
  width: 72px;
  height: 72px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  transition: color var(--transition);
}

.deliverable-card:hover .deliverable-icon {
  color: var(--text-primary);
}

.deliverable-icon .di-cursor {
  animation: di-cursor-blink 1.2s step-end infinite;
}

.deliverable-icon .di-code-1 {
  animation: di-code-type 2.5s ease-in-out infinite;
}

.deliverable-icon .di-code-2 {
  animation: di-code-type 2.5s ease-in-out infinite 0.4s;
}

.deliverable-icon .di-code-3 {
  animation: di-code-type 2.5s ease-in-out infinite 0.8s;
}

.deliverable-icon .di-play-btn {
  animation: di-pulse 2s ease-in-out infinite;
}

.deliverable-icon .di-play-ring {
  animation: di-ring-pulse 2s ease-in-out infinite;
}

.deliverable-icon .di-rec {
  animation: di-rec-blink 1.5s ease-in-out infinite;
}

.deliverable-icon .di-progress {
  animation: di-progress-fill 3s ease-in-out infinite;
}

.deliverable-icon .di-ball {
  animation: di-ball-bounce 2s ease-in-out infinite;
}

.deliverable-icon .di-paddle {
  animation: di-paddle-move 2s ease-in-out infinite;
}

.deliverable-icon .di-brick-1 { animation: di-brick-fade 3s ease-in-out infinite; }
.deliverable-icon .di-brick-2 { animation: di-brick-fade 3s ease-in-out infinite 0.5s; }
.deliverable-icon .di-brick-3 { animation: di-brick-fade 3s ease-in-out infinite 1s; }

.deliverable-icon .di-widget-1 {
  animation: di-pulse 3s ease-in-out infinite;
}

.deliverable-icon .di-widget-2 {
  animation: di-pulse 3s ease-in-out infinite 1s;
}

.deliverable-icon .di-py-snake {
  animation: di-snake-draw 2.5s ease-in-out infinite;
}

@keyframes di-cursor-blink {
  0%, 49% { opacity: 0.15; }
  50%, 100% { opacity: 0; }
}

@keyframes di-code-type {
  0%, 100% { opacity: 0.15; transform: scaleX(0.3); transform-origin: left; }
  50% { opacity: 0.5; transform: scaleX(1); transform-origin: left; }
}

@keyframes di-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.08); }
}

@keyframes di-ring-pulse {
  0%, 100% { opacity: 0.2; r: 16; }
  50% { opacity: 0.5; r: 18; }
}

@keyframes di-rec-blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes di-progress-fill {
  0% { width: 8px; }
  50% { width: 42px; }
  100% { width: 8px; }
}

@keyframes di-ball-bounce {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, -8px); }
  50% { transform: translate(20px, 0); }
  75% { transform: translate(10px, -6px); }
}

@keyframes di-paddle-move {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(20px); }
}

@keyframes di-brick-fade {
  0%, 70%, 100% { opacity: 0.25; }
  35% { opacity: 0.05; }
}

@keyframes di-snake-draw {
  0% { stroke-dasharray: 0 60; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 60 60; stroke-dashoffset: 0; }
  100% { stroke-dasharray: 0 60; stroke-dashoffset: -60; }
}

@media (prefers-reduced-motion: reduce) {
  .deliverable-icon *,
  .marquee-track,
  .marquee-group img {
    animation: none !important;
    transition: none !important;
  }
}

/* SCHEDULE TABLE */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}

.schedule-table th {
  background: var(--bg-tertiary);
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  border-bottom: 2px solid var(--accent);
}

.schedule-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.schedule-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.schedule-table td:first-child {
  font-weight: 600;
  color: #fff;
  font-family: var(--font-mono);
  white-space: nowrap;
}

/* JUDGING CRITERIA */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.criteria-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.criteria-weight {
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--accent-light);
  margin-bottom: 8px;
}

.criteria-name {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

/* PRICING TABLE */
.fee-simple {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  text-align: center;
}

.fee-simple-price {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-mono);
  margin-bottom: 8px;
}

.fee-simple-includes {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.fee-simple-discounts {
  list-style: none;
  text-align: left;
  border-top: 1px solid var(--border);
}

.fee-simple-discounts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.fee-discount-label {
  color: var(--text-secondary);
}

.fee-discount-value {
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--success);
}

/* FAQ */
.faq-group {
  margin-bottom: 48px;
}

.faq-group-title {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--bg-card);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition);
  user-select: none;
}

.faq-question:hover {
  background: var(--bg-tertiary);
}

.faq-arrow {
  font-size: 1.2rem;
  transition: transform var(--transition);
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
}

.timeline-item h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* GALLERY GRID */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.photo-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.photo-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(30%);
}

.photo-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

/* PHOTO SHOWCASE MARQUEE */
.photo-showcase {
  padding-bottom: 80px;
  overflow: hidden;
}

.photo-showcase .container {
  text-align: center;
  margin-bottom: 48px;
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.marquee-row {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-row::before,
.marquee-row::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-row::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.marquee-row::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
  flex-shrink: 0;
}

.marquee-left .marquee-track {
  animation: marquee-scroll-left 40s linear infinite;
}

.marquee-right .marquee-track {
  animation: marquee-scroll-right 40s linear infinite;
}

.marquee-slow .marquee-track {
  animation-duration: 55s;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group img {
  width: 280px;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(80%);
}

.photo-showcase.visible .marquee-group img {
  filter: grayscale(0%);
  transition: transform 0.4s ease, filter 1.2s ease;
}

.marquee-group img:hover {
  transform: scale(1.06);
  filter: grayscale(0%) !important;
}

@keyframes marquee-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (max-width: 768px) {
  .marquee-group img {
    width: 200px;
    height: 140px;
  }

  .marquee-left .marquee-track,
  .marquee-right .marquee-track {
    animation-duration: 50s;
  }

  .marquee-slow .marquee-track {
    animation-duration: 65s;
  }

  .marquee-wrapper {
    gap: 12px;
  }

  .marquee-row::before,
  .marquee-row::after {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .marquee-group img {
    width: 160px;
    height: 110px;
  }

  .marquee-group {
    gap: 10px;
    padding-right: 10px;
  }

  .photo-showcase {
    padding-bottom: 48px;
  }
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: #1a1a1a;
  margin-top: 24px;
}

.contact-form .form-group label {
  color: #333;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  background: #fff;
  border: 1px solid #ccc;
  color: #1a1a1a;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
  transition: border-color var(--transition);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #999;
}

.contact-form textarea {
  resize: vertical;
}

.map-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* RESOURCE CARDS */
.resource-path {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.resource-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}

.resource-item:hover {
  border-color: var(--border-light);
}

.resource-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.resource-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .countdown {
    gap: 12px;
  }

  .countdown-value {
    font-size: 2rem;
    padding: 12px 14px;
    min-width: 60px;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prizes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fee-breakdown {
    flex-direction: column;
    gap: 16px;
  }


  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .discount-banner {
    padding: 32px 24px;
  }

  .discount-banner h3 {
    font-size: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .criteria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0a0a0a;
    flex-direction: column;
    padding: 32px 24px;
    gap: 0;
    overflow-y: auto;
    max-height: calc(100vh - 72px);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 20px;
  }

  .nav-dropdown-menu a {
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }

  .nav-cta {
    display: block;
    text-align: center;
    margin-top: 16px;
    padding: 14px;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .countdown-value {
    font-size: 1.5rem;
    padding: 10px;
    min-width: 50px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
  }
}

.registration-form {
  max-width: 800px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: #1a1a1a;
}

.registration-form .form-fieldset {
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  padding: 32px 28px 24px;
  margin-bottom: 32px;
  background: #f9f9f9;
}

.registration-form .form-fieldset legend {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1a1a1a;
  padding: 0 12px;
}

.registration-form .form-group label {
  color: #333;
}

.registration-form .form-group input,
.registration-form .form-group select,
.registration-form .form-group textarea {
  background: #fff;
  border: 1px solid #ccc;
  color: #1a1a1a;
}

.registration-form .form-group input:focus,
.registration-form .form-group select:focus,
.registration-form .form-group textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.registration-form .form-group input::placeholder {
  color: #999;
}

.registration-form .form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  border: 1px solid #ccc !important;
  outline: none;
}

.registration-form .form-group select option {
  background: #fff;
  color: #1a1a1a;
}

.registration-form .form-fee-summary {
  background: #f0f4ff;
  border: 1px solid #d0d8e8;
  color: #1a1a1a;
}

.registration-form .form-fee-summary .fee-note {
  color: #666;
}

.form-fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 24px;
  margin-bottom: 32px;
  background: var(--bg-card);
}

.form-fieldset legend {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
  padding: 0 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid .form-group:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-light);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

.form-consent {
  margin: 24px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent-light);
  cursor: pointer;
}

.form-fee-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.form-fee-summary .fee-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-actions {
  margin-top: 8px;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-lg);
}

.form-success h3 {
  font-size: 1.4rem;
  margin: 16px 0 12px;
  color: #22c55e;
}

.form-success p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.fee-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.fee-main-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.fee-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}

.fee-per {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.fee-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.fee-includes li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.fee-includes li:last-child {
  border-bottom: none;
}

.fee-includes li::before {
  content: "\2713";
  color: #22c55e;
  margin-right: 10px;
  font-weight: 700;
}

.fee-discounts {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.fee-discounts h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.fee-discount-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.fee-discount-item strong {
  color: var(--text);
  font-size: 1rem;
}

.fee-discount-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 2px;
}

.fee-discount-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
}

.fee-discount-combo {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.fee-discount-combo strong {
  color: #22c55e;
}

@media (max-width: 768px) {
  .fee-overview {
    grid-template-columns: 1fr;
  }
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius);
  padding: 14px 20px;
  color: #ef4444;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  font-family: var(--font-mono);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -4px;
}

.error-code span {
  display: inline-block;
}

.error-content h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.error-content > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.error-links {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.error-links p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.error-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}

.error-links ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.error-links ul li a:hover {
  color: var(--text-primary);
}
