/* ===========================
   SERBIA FPV OPEN 2026
   Stylesheet
=========================== */

:root {
  --accent: #00f5ff;
  --accent2: #ff4500;
  --accent3: #ffdd00;
  --bg-dark: #07070d;
  --bg-darker: #0a0a12;
  --bg-card: #0f0f1a;
  --bg-card2: #13131f;
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --border: #1e1e30;
  --gold: #ffd700;
  --silver: #c0c0c0;
  --bronze: #cd7f32;
  --gradient-main: linear-gradient(135deg, #00f5ff 0%, #0080ff 50%, #8000ff 100%);
  --gradient-fire: linear-gradient(135deg, #ff4500, #ff8c00);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Orbitron', monospace; letter-spacing: 0.05em; }
a { color: var(--accent); text-decoration: none; }
p { font-size: 1.05rem; }
strong { color: #fff; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--bg-dark); }
.section-darker { background: var(--bg-darker); }

.section-tag {
  display: inline-block;
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 4px 14px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 60px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gradient-main);
  color: #000;
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 245, 255, 0.4);
}

.btn-secondary {
  display: inline-block;
  color: var(--accent);
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 13px 30px;
  border-radius: 3px;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}
.btn-secondary:hover { background: rgba(0,245,255,0.1); }

.btn-outline {
  display: inline-block;
  color: var(--text);
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 11px 24px;
  border-radius: 3px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-full { width: 100%; text-align: center; }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7, 7, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
#navbar.scrolled { background: rgba(7, 7, 13, 0.98); }

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}
.nav-logo em { color: var(--accent); font-style: normal; }
.logo-icon { color: var(--accent); font-size: 1.3rem; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  color: #000 !important;
  background: var(--gradient-main);
  padding: 8px 20px;
  border-radius: 2px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 100, 255, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255, 69, 0, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 60% 80%, rgba(0, 245, 255, 0.06) 0%, transparent 50%),
              var(--bg-dark);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  perspective: 300px;
  transform: rotateX(10deg);
}

.drone-trail {
  position: absolute;
  height: 2px;
  border-radius: 2px;
  filter: blur(1px);
  animation: trail linear infinite;
}
.trail-1 {
  width: 200px;
  background: linear-gradient(90deg, transparent, var(--accent));
  top: 30%;
  animation-duration: 4s;
  animation-delay: 0s;
}
.trail-2 {
  width: 140px;
  background: linear-gradient(90deg, transparent, var(--accent2));
  top: 55%;
  animation-duration: 3.2s;
  animation-delay: 1.5s;
}
.trail-3 {
  width: 170px;
  background: linear-gradient(90deg, transparent, var(--accent3));
  top: 70%;
  animation-duration: 5s;
  animation-delay: 0.8s;
}

@keyframes trail {
  0% { left: -200px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 40px;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  border: 1px solid rgba(0, 245, 255, 0.4);
  padding: 6px 20px;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease both;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeDown 0.8s 0.1s ease both;
}
.hero-title .accent { color: var(--accent); }
.hero-title .year {
  font-size: 0.55em;
  color: var(--text-muted);
  display: block;
  letter-spacing: 0.2em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.05em;
  animation: fadeDown 0.8s 0.2s ease both;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeDown 0.8s 0.3s ease both;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.meta-icon { font-size: 1.8rem; }
.meta-item div { text-align: left; }
.meta-item strong { display: block; font-size: 1rem; color: #fff; }
.meta-item span { font-size: 0.85rem; color: var(--text-muted); }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeDown 0.8s 0.4s ease both;
}

.hero-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  animation: fadeDown 0.8s 0.5s ease both;
}

.countdown-item {
  text-align: center;
  min-width: 80px;
  padding: 16px 12px 12px;
  background: rgba(0,245,255,0.06);
  border: 1px solid rgba(0,245,255,0.2);
  border-radius: 4px;
}
.countdown-item span {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.countdown-item label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.countdown-sep {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.4;
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0.1; } }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

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

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 32px 24px;
  gap: 24px;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-text .lead {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-text p { color: var(--text-muted); margin-bottom: 16px; }

.feature-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.feature-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.feature-list li::first-letter { color: var(--accent); }

.about-img-stack {
  position: relative;
  height: 420px;
}

.about-img {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.img1 {
  width: 75%;
  height: 320px;
  top: 0; left: 0;
  border: 1px solid var(--border);
}
.img2 {
  width: 55%;
  height: 220px;
  bottom: 0; right: 0;
  border: 1px solid var(--border);
}

.about-badge-card {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  background: var(--gradient-main);
  color: #000;
  padding: 16px 20px;
  border-radius: 4px;
  text-align: center;
  font-family: 'Orbitron', monospace;
  box-shadow: 0 10px 40px rgba(0, 245, 255, 0.3);
  z-index: 2;
}
.about-badge-card .big-num { display: block; font-size: 2rem; font-weight: 900; }
.about-badge-card span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; }

/* ===== SCHEDULE ===== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.schedule-day {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.schedule-day:hover { border-color: rgba(0, 245, 255, 0.3); }

.day-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.day-date {
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.2;
  text-align: center;
  min-width: 50px;
}
.day-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.highlight-day { border-color: rgba(255, 69, 0, 0.4); }
.highlight-day .day-header { background: rgba(255, 69, 0, 0.06); }
.highlight-day .day-date { color: var(--accent2); }

.day-events { list-style: none; padding: 12px 0; }
.day-events li {
  display: flex;
  gap: 12px;
  padding: 8px 20px;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.day-events li:hover { background: rgba(255,255,255,0.03); }

.ev-time {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  min-width: 44px;
  padding-top: 2px;
}
.ev-name { color: var(--text-muted); line-height: 1.4; }

/* ===== STAGES ===== */
.stages-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.stages-timeline::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent2));
  opacity: 0.3;
}

.stage-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-left: 16px;
}

.stage-num {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 900;
  color: var(--bg-card);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 60px;
  text-align: center;
  line-height: 1;
  padding-top: 8px;
  position: relative;
}
.stage-num::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.stage-content {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 32px;
  transition: border-color 0.3s;
}
.stage-content:hover { border-color: rgba(0,245,255,0.3); }

.stage-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.stage-content h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}

.stage-content p { color: var(--text-muted); line-height: 1.7; }

.stage-meta {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--accent);
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.08em;
}

/* ===== CLASSES ===== */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.class-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.class-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,245,255,0.3);
}

.class-featured {
  border-color: var(--accent);
  background: rgba(0, 245, 255, 0.04);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.1);
}

.featured-ribbon {
  position: absolute;
  top: 16px; right: 16px;
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  background: var(--accent3);
  padding: 3px 8px;
  border-radius: 2px;
}

.class-icon { font-size: 2rem; }

.class-card h3 {
  font-size: 1.1rem;
  color: #fff;
}

.class-card ul {
  list-style: none;
  flex: 1;
}
.class-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.class-card li::before { content: '— '; color: var(--accent); }

.class-prize {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent3);
}

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 1rem;
  color: var(--text-muted);
}
.addr-icon { font-size: 2rem; }
.location-address strong { color: #fff; display: block; font-size: 1.1rem; margin-bottom: 4px; }

.location-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }

.loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.loc-icon { font-size: 1.4rem; min-width: 30px; }
.loc-detail > div strong { display: block; color: #fff; font-size: 0.95rem; }
.loc-detail > div span { font-size: 0.9rem; color: var(--text-muted); }

.venue-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.vf-item { font-size: 0.9rem; color: var(--text-muted); }
.vf-item::first-letter { color: var(--accent); }

.map-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.map-img { width: 100%; height: 280px; object-fit: cover; display: block; }
.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(7,7,13,0.8));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.map-pin {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.9rem;
}
.map-pin span { font-size: 1.5rem; }

.circuit-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
}
.circuit-preview h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.circuit-svg-wrap {
  background: #0a0a0f;
  border-radius: 4px;
  padding: 8px;
  margin-bottom: 16px;
}
.circuit-svg { width: 100%; height: auto; }

.circuit-stats {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.circuit-stats strong { color: var(--accent); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gi-large {
  grid-column: span 2;
}
.gi-large img { height: 340px; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  transform: translateY(100%);
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi-large { grid-column: span 2; }
}

/* ===== PRIZES ===== */
.prizes-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.prize-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
}

.podium-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.podium-medal { font-size: 2.5rem; }
.podium-pilot { font-size: 1rem; color: var(--text-muted); font-weight: 600; }
.podium-prize {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  font-weight: 900;
}

.podium-block {
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px 4px 0 0;
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(0,0,0,0.3);
}

.p1-block { height: 180px; background: linear-gradient(180deg, var(--gold), #b8860b); }
.p2-block { height: 140px; background: linear-gradient(180deg, var(--silver), #808080); }
.p3-block { height: 110px; background: linear-gradient(180deg, var(--bronze), #8b4513); }

.podium-1 .podium-prize { color: var(--gold); }
.podium-2 .podium-prize { color: var(--silver); }
.podium-3 .podium-prize { color: var(--bronze); }

.prize-table-wrap h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.prize-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.prize-table th {
  background: var(--bg-card2);
  color: var(--text-muted);
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.prize-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

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

.prize-table .gold td { color: var(--gold); }
.prize-table .silver td { color: var(--silver); }
.prize-table .bronze td { color: var(--bronze); }

/* ===== PILOTS ===== */
.pilots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.pilot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.pilot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,245,255,0.3);
}

.pilot-avatar {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.pa1 { background: linear-gradient(135deg, #1a3a6e, #0d2040), url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=300&fit=crop&faces=1') center/cover; }
.pa2 { background: linear-gradient(135deg, #6e1a1a, #400d0d), url('https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?w=400&h=300&fit=crop&faces=1') center/cover; }
.pa3 { background: linear-gradient(135deg, #1a6e3a, #0d4020), url('https://images.unsplash.com/photo-1494790108755-2616b332c37e?w=400&h=300&fit=crop&faces=1') center/cover; }
.pa4 { background: linear-gradient(135deg, #4a1a6e, #200d40), url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=400&h=300&fit=crop&faces=1') center/cover; }

.pilot-info { padding: 20px; }
.pilot-info h4 { color: #fff; font-size: 1rem; margin-bottom: 8px; }

.pilot-country {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-right: 12px;
}

.pilot-rank {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent);
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.pilot-info p { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; }

.pilots-note {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== REGISTER ===== */
.register-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .register-wrap { grid-template-columns: 1fr; }
}

.register-info h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 24px;
}

.reg-fee-table { margin-bottom: 28px; }

.reg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.reg-row span:first-child { color: var(--text-muted); }
.reg-price {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  color: var(--accent);
}

.reg-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.register-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
}
.form-group select option { background: var(--bg-dark); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.form-check input { min-width: 16px; height: 16px; margin-top: 2px; accent-color: var(--accent); }

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

/* ===== SPONSORS ===== */
.sponsors-tier { margin-bottom: 48px; }

.tier-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sponsor-logo {
  padding: 20px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
}
.sponsor-logo:hover {
  border-color: rgba(0,245,255,0.4);
  background: rgba(0,245,255,0.05);
}

.sl-large { padding: 28px 60px; }
.sl-sm { padding: 14px 24px; }

.logo-placeholder {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}
.sl-large .logo-placeholder { font-size: 1.5rem; color: var(--accent); }

.sponsors-cta {
  text-align: center;
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.sponsors-cta p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(0,245,255,0.3); }

.faq-item h4 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-item p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ===== FOOTER ===== */
.footer {
  background: #040408;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 60px 24px 40px;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-links h5,
.footer-contact h5 {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

.footer-contact p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 6px; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero-meta { gap: 12px; }
  .meta-item { padding: 12px 16px; }
  .schedule-grid { grid-template-columns: 1fr; }
  .stage-item { flex-direction: column; gap: 16px; padding-left: 0; }
  .stages-timeline::before { display: none; }
  .stage-num { font-size: 1.2rem; }
  .classes-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-large { grid-column: span 1; }
  .pilots-grid { grid-template-columns: 1fr; }
  .prize-podium { gap: 8px; }
  .podium-block { width: 100px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .feature-list { grid-template-columns: 1fr; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
