/* ============================================================
   TPA ISSF NATIONAL CHAMPIONSHIPS 2027
   Modern Dark Theme — Shooting Sports
   ============================================================ */

:root {
  --navy:        #05080f;
  --navy-mid:    #0b1121;
  --navy-light:  #111b30;
  --card-bg:     #0e1728;
  --card-border: rgba(255,255,255,0.06);
  --blue:        #1a6fff;
  --blue-light:  #4d8fff;
  --gold:        #f5b800;
  --gold-light:  #ffd34e;
  --red:         #e63946;
  --green:       #00c16e;
  --text:        #e8edf5;
  --text-muted:  #8a9ab8;
  --text-dim:    #566278;
  --white:       #ffffff;
  --glow-blue:   rgba(26,111,255,0.25);
  --glow-gold:   rgba(245,184,0,0.25);
  --radius:      12px;
  --radius-lg:   20px;
  --trans:       0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', system-ui, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-mid); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* UTILITY */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-dark { background: var(--navy-mid); }
section { padding: 100px 0; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 56px;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 24px var(--glow-blue);
}
.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 0 36px var(--glow-blue);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 32px; font-size: 1.1rem; width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--trans), backdrop-filter var(--trans), box-shadow var(--trans);
  padding: 0 24px;
}
#navbar.scrolled {
  background: rgba(5, 8, 15, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-target {
  width: 36px; height: 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-target span {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--blue);
}
.logo-target span:nth-child(1) { width: 36px; height: 36px; opacity: 0.3; }
.logo-target span:nth-child(2) { width: 24px; height: 24px; opacity: 0.6; }
.logo-target span:nth-child(3) { width: 10px; height: 10px; background: var(--gold); border-color: var(--gold); opacity: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 800; letter-spacing: 0.08em; color: var(--white); }
.logo-text em { font-style: normal; font-size: 0.7rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links .nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links .nav-cta:hover { background: var(--blue-light); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(5, 8, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 20px 24px;
  transform: translateY(-110%);
  transition: transform var(--trans);
  border-bottom: 1px solid var(--card-border);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all var(--trans);
}
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.mobile-menu .mob-cta {
  background: var(--blue);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26,111,255,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 70%, rgba(245,184,0,0.06) 0%, transparent 60%),
              var(--navy);
}
.hero-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,111,255,0.12);
  animation: pulse-ring 4s ease-in-out infinite;
}
.ring-1 { width: 200px; height: 200px; animation-delay: 0s; }
.ring-2 { width: 350px; height: 350px; animation-delay: 0.3s; border-color: rgba(26,111,255,0.1); }
.ring-3 { width: 520px; height: 520px; animation-delay: 0.6s; border-color: rgba(26,111,255,0.07); }
.ring-4 { width: 720px; height: 720px; animation-delay: 0.9s; border-color: rgba(26,111,255,0.05); }
.ring-5 { width: 960px; height: 960px; animation-delay: 1.2s; border-color: rgba(26,111,255,0.03); }
.ring-dot {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--gold), 0 0 40px rgba(245,184,0,0.4);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.7; }
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--gold), 0 0 40px rgba(245,184,0,0.4); }
  50% { box-shadow: 0 0 30px var(--gold), 0 0 60px rgba(245,184,0,0.6); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--blue);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) translateX(40px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  background: rgba(26,111,255,0.15);
  border: 1px solid rgba(26,111,255,0.4);
  color: var(--blue-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-tpa {
  font-size: clamp(4rem, 14vw, 10rem);
  color: var(--white);
  letter-spacing: -0.02em;
}
.title-nationals {
  font-size: clamp(2rem, 8vw, 5.5rem);
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-year {
  font-size: clamp(5rem, 18vw, 13rem);
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.15);
  letter-spacing: -0.03em;
  line-height: 0.85;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.meta-item svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.meta-divider { width: 1px; height: 20px; background: var(--card-border); }
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* COUNTDOWN */
.hero-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}
.cd-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  min-width: 80px;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cd-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}
.countdown-sep {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  margin-top: -16px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: bounce-scroll 2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }
@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text strong { color: var(--white); }
.about-flags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.flag-bar {
  height: 4px; width: 40px;
  border-radius: 2px;
  background: linear-gradient(90deg, #00843D 33%, #FFFFFF 33%, #FFFFFF 66%, #012169 66%);
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color var(--trans), transform var(--trans);
}
.stat-card:hover {
  border-color: rgba(26,111,255,0.3);
  transform: translateY(-4px);
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   EVENTS / DISCIPLINES
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--trans);
  overflow: hidden;
}
.event-card:hover {
  border-color: rgba(26,111,255,0.4);
  transform: translateY(-6px);
}
.event-card:hover .event-card-glow {
  opacity: 1;
}
.event-card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(26,111,255,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--trans);
  pointer-events: none;
}
.event-card-highlight {
  border-color: rgba(245,184,0,0.3);
  background: linear-gradient(135deg, var(--card-bg), rgba(245,184,0,0.04));
}
.event-card-highlight:hover { border-color: var(--gold); }
.event-card-highlight .event-card-glow {
  background: radial-gradient(ellipse at center, rgba(245,184,0,0.08) 0%, transparent 60%);
}
.event-distance {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.event-card-highlight .event-distance { color: var(--gold); }
.event-icon {
  width: 56px; height: 56px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.15);
}
.event-icon svg { width: 100%; height: 100%; }
.event-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.event-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.event-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(26,111,255,0.12);
  color: var(--blue-light);
  border: 1px solid rgba(26,111,255,0.2);
}
.event-card-highlight .tag {
  background: rgba(245,184,0,0.1);
  color: var(--gold);
  border-color: rgba(245,184,0,0.2);
}

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.sched-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--trans);
}
.sched-tab:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.sched-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 0 20px var(--glow-blue);
}
.schedule-day { display: none; }
.schedule-day.active { display: block; }
.day-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--card-border);
}
.day-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.day-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.day-badge.practice { background: rgba(245,184,0,0.15); color: var(--gold); border: 1px solid rgba(245,184,0,0.3); }
.day-badge.competition { background: rgba(26,111,255,0.15); color: var(--blue-light); border: 1px solid rgba(26,111,255,0.3); }
.day-badge.ceremony { background: rgba(0,193,110,0.15); color: var(--green); border: 1px solid rgba(0,193,110,0.3); }
.day-events { display: flex; flex-direction: column; gap: 0; }
.sched-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: start;
}
.sched-item:last-child { border-bottom: none; }
.sched-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  padding-top: 2px;
  white-space: nowrap;
}
.sched-detail { display: flex; flex-direction: column; gap: 2px; }
.sched-detail strong { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.sched-detail span { color: var(--text-muted); font-size: 0.85rem; }
.schedule-note {
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ============================================================
   VENUE
   ============================================================ */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.venue-badge {
  display: inline-block;
  background: rgba(245,184,0,0.1);
  border: 1px solid rgba(245,184,0,0.25);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.venue-info > p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.venue-info > p strong { color: var(--white); }
.venue-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.venue-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 40px; height: 40px;
  background: rgba(26,111,255,0.1);
  border: 1px solid rgba(26,111,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.feature-icon svg { width: 18px; height: 18px; }
.venue-feature > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.venue-feature strong { color: var(--white); font-size: 0.95rem; }
.venue-feature span { color: var(--text-muted); font-size: 0.85rem; }
.venue-address, .venue-phone {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.venue-address svg, .venue-phone svg {
  width: 18px; height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.venue-address div, .venue-phone div { display: flex; flex-direction: column; gap: 2px; }
.venue-address strong, .venue-phone strong { color: var(--white); font-size: 0.9rem; }
.venue-address span, .venue-phone span { color: var(--text-muted); font-size: 0.8rem; }
.venue-map { display: flex; flex-direction: column; gap: 12px; }
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  height: 420px;
}
.map-wrapper iframe { width: 100%; height: 100%; display: block; border: none; filter: invert(0.9) hue-rotate(180deg) saturate(0.8); }
.map-note { font-size: 0.8rem; color: var(--text-dim); text-align: center; }

/* ============================================================
   TRAVEL
   ============================================================ */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.travel-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--trans);
}
.travel-card:hover {
  border-color: rgba(26,111,255,0.3);
  transform: translateY(-4px);
}
.travel-icon {
  width: 48px; height: 48px;
  background: rgba(26,111,255,0.1);
  border: 1px solid rgba(26,111,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
}
.travel-icon svg { width: 22px; height: 22px; }
.travel-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.travel-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.travel-card ul { display: flex; flex-direction: column; gap: 6px; }
.travel-card li {
  font-size: 0.8rem;
  color: var(--text-dim);
  padding-left: 14px;
  position: relative;
}
.travel-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
}
.travel-tip {
  display: flex;
  gap: 16px;
  background: rgba(26,111,255,0.06);
  border: 1px solid rgba(26,111,255,0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  align-items: flex-start;
}
.travel-tip svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.travel-tip p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.travel-tip strong { color: var(--white); }

/* ============================================================
   ACCOMMODATION
   ============================================================ */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hotel-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--trans);
}
.hotel-card:hover {
  border-color: rgba(26,111,255,0.3);
  transform: translateY(-4px);
}
.hotel-stars {
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.hotel-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.hotel-meta { margin-bottom: 12px; }
.hotel-meta span { font-size: 0.75rem; color: var(--blue-light); font-weight: 500; }
.hotel-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.hotel-features { display: flex; flex-wrap: wrap; gap: 6px; }
.hotel-features span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  color: var(--text-dim);
  border: 1px solid var(--card-border);
}
.hotel-card-tip {
  border-color: rgba(245,184,0,0.2);
  background: linear-gradient(135deg, var(--card-bg), rgba(245,184,0,0.04));
}
.hotel-card-tip h3 { color: var(--gold); }
.hotel-tip-icon {
  width: 40px; height: 40px;
  background: rgba(245,184,0,0.1);
  border: 1px solid rgba(245,184,0,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.hotel-tip-icon svg { width: 20px; height: 20px; }
.hotel-card-tip p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; }

/* ============================================================
   REGISTRATION
   ============================================================ */
.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.register-steps { display: flex; flex-direction: column; gap: 0; }
.reg-step {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.reg-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: var(--card-border);
}
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(26,111,255,0.15);
  border: 1px solid rgba(26,111,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  letter-spacing: 0;
}
.step-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  padding-top: 8px;
}
.step-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.register-cta-panel {
  position: sticky;
  top: 96px;
}
.cta-panel-inner {
  background: var(--card-bg);
  border: 1px solid rgba(26,111,255,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 0 60px rgba(26,111,255,0.08);
}
.cta-badge {
  display: inline-block;
  background: rgba(0,193,110,0.1);
  border: 1px solid rgba(0,193,110,0.25);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.cta-panel-inner h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-panel-inner > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.cta-panel-inner > p strong { color: var(--white); }
.entry-fees {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.entry-fees h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.875rem;
}
.fee-row:last-of-type { border-bottom: none; }
.fee-row span:first-child { color: var(--text-muted); }
.fee { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--white); }
.fee-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 8px;
}
.cta-panel-inner .btn { margin-bottom: 12px; }
.contact-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.contact-block strong { color: var(--text-muted); display: block; margin-bottom: 2px; }

/* ============================================================
   RESULTS
   ============================================================ */
.results-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
}
.results-target {
  position: relative;
  width: 120px; height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.rt-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.3;
}
.rt-1 { width: 120px; height: 120px; border-color: var(--red); opacity: 0.15; }
.rt-2 { width: 96px; height: 96px; border-color: var(--red); opacity: 0.2; }
.rt-3 { width: 72px; height: 72px; border-color: #000; background: #000; opacity: 0.4; }
.rt-4 { width: 48px; height: 48px; border-color: var(--text-dim); opacity: 0.3; }
.rt-dot {
  width: 20px; height: 20px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(230,57,70,0.5);
}
.results-placeholder h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.results-placeholder > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.results-placeholder strong { color: var(--white); }
.results-events-list {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.res-event {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 14px 20px;
  text-align: left;
}
.res-discipline { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.res-status {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.res-status.pending {
  background: rgba(255,255,255,0.05);
  color: var(--text-dim);
  border: 1px solid var(--card-border);
}
.res-status.live {
  background: rgba(0,193,110,0.15);
  color: var(--green);
  border: 1px solid rgba(0,193,110,0.3);
  animation: blink 1.5s ease-in-out infinite;
}
.res-status.complete {
  background: rgba(26,111,255,0.15);
  color: var(--blue-light);
  border: 1px solid rgba(26,111,255,0.3);
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy);
  border-top: 1px solid var(--card-border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-address { font-size: 0.8rem !important; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--blue-light); }
.footer-contact p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 8px;
}
.footer-contact strong { color: var(--text-muted); }
.footer-contact a { color: var(--blue-light); }
.footer-dates {
  display: inline-block;
  background: rgba(26,111,255,0.1);
  border: 1px solid rgba(26,111,255,0.2);
  color: var(--blue-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 8px;
  margin-top: 12px;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-dim); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .hotels-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-meta { flex-direction: column; gap: 8px; }
  .meta-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .events-grid { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .travel-grid { grid-template-columns: 1fr; }
  .hotels-grid { grid-template-columns: 1fr; }
  .register-grid { grid-template-columns: 1fr; }
  .register-cta-panel { position: static; }

  .sched-item { grid-template-columns: 130px 1fr; gap: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .ring-4, .ring-5 { display: none; }
  .title-year { font-size: clamp(4rem, 22vw, 10rem); }

  .schedule-tabs { gap: 6px; }
  .sched-tab { padding: 8px 12px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .ring-3 { display: none; }
  .day-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .sched-item { grid-template-columns: 1fr; gap: 4px; }
  .sched-time { color: var(--blue); }
  .hero-countdown { gap: 6px; }
  .cd-num { font-size: 1.8rem; min-width: 60px; padding: 10px 12px; }
  .countdown-sep { font-size: 1.5rem; }
}
