  :root {
    --gold: #C9A84C;
    --gold-light: #F0C060;
    --gold-bright: #FFD700;
    --gold-dark: #8B6914;
    --black: #020204;
    --deep: #080810;
    --white: #F5F0E8;
    --gray: #8A8A9A;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    cursor: default;
  }

  /* CANVAS STARS */
  #starfield {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: linear-gradient(to bottom, rgba(2,2,4,0.95) 0%, transparent 100%);
    backdrop-filter: blur(0px);
    transition: all 0.4s;
  }
  nav.scrolled {
    background: rgba(2,2,4,0.95);
    backdrop-filter: blur(20px);
    padding: 16px 60px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-logo .logo-badge {
    width: 55px;
    height: 55px;
    /* border: 2px solid var(--gold); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%); */
  }
  .nav-logo .logo-badge svg {
    width: 26px;
    height: 26px;
  }
  .nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 4px;
    color: var(--gold);
  }
  .nav-logo-sub {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
    margin-top: -4px;
    display: block;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 100%;
    height: 1px;
    background: var(--gold);
    transition: right 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { right: 0; }

  .nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 24px;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--gold-bright); color: var(--black) !important; }

  /* HERO */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    padding: 120px 40px 80px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 80% 60% at 50% 120%, rgba(201,168,76,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 50% 85%, rgba(201,168,76,0.06) 0%, transparent 50%),
      radial-gradient(ellipse 100% 100% at 50% 50%, rgba(8,8,16,0.7) 0%, var(--black) 100%);
  }

  /* Animated gold orb */
  .hero-orb {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, rgba(201,168,76,0.05) 40%, transparent 70%);
    animation: orbPulse 4s ease-in-out infinite;
    pointer-events: none;
  }

  .hero-orb::before {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.3);
    animation: orbRotate 20s linear infinite;
  }

  .hero-orb::after {
    content: '';
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.15);
    animation: orbRotate 30s linear infinite reverse;
  }

  @keyframes orbPulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
  }
  @keyframes orbRotate { to { transform: rotate(360deg); } }

  .hero-eyebrow {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 1s 0.3s forwards;
  }

.hero-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(72px,13vw,120px);
  line-height:.88;letter-spacing:2px;
  opacity:0;animation:fadeUp .8s .4s forwards;
}
.hero-title .line1{display:block;color:var(--white);}
.hero-title .line3{
  display:block;
  background:linear-gradient(90deg,var(--gold) 0%,var(--gold2) 50%,var(--gold) 100%);
  background-size:200%;
  -webkit-background-clip:text;
  /* -webkit-text-fill-color:transparent; */
  background-clip:text;
  animation:shimmer 3s linear infinite 1.2s;
}
@keyframes shimmer{0%{background-position:0% center;}100%{background-position:200% center;}}
.hero-title .line2{
  display:block;
  color:transparent;
  -webkit-text-stroke:1px var(--gold);
  font-size:clamp(60px,10vw,100px);
  letter-spacing:8px;
  margin-bottom: 10px;
}

  .hero-subtitle {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: clamp(16px, 2.5vw, 28px);
    font-style: italic;
    font-weight: 300;
    color: rgba(245,240,232,0.7);
    margin: 24px 0;
    letter-spacing: 4px;
    opacity: 0;
    animation: fadeUp 1s 0.7s forwards;
  }

  .hero-tagline {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 38px;
    opacity: 0;
    animation: fadeUp 1s 0.9s forwards;
  }
  .hero-tagline span { color: var(--gold); }

  .hero-date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(201,168,76,0.4);
    padding: 20px 48px;
    margin-bottom: 48px;
    position: relative;
    opacity: 0;
    animation: fadeUp 1s 1.1s forwards;
    background: rgba(201,168,76,0.04);
  }
  .hero-date-badge::before, .hero-date-badge::after {
    content: '';
    position: absolute;
    width: 8px; height: 8px;
    border: 1px solid var(--gold);
    background: var(--gold);
  }
  .hero-date-badge::before { top: -4px; left: -4px; }
  .hero-date-badge::after { bottom: -4px; right: -4px; }

  .date-label {
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .date-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 6px;
    color: var(--white);
  }

  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s 1.3s forwards;
  }

  .btn-primary {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
    background-size: 200% 100%;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.4s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }
  .btn-primary:hover {
    background-position: right;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(201,168,76,0.4);
  }

  .btn-secondary {
    display: inline-block;
    padding: 17px 48px;
    border: 1px solid rgba(201,168,76,0.6);
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.4s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }
  .btn-secondary:hover {
    background: rgba(201,168,76,0.08);
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  /* COUNTDOWN */
  .countdown-section {
    position: relative;
    z-index: 1;
    padding: 80px 60px;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.03), transparent);
  }

  .countdown-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .section-label {
    font-size: 16px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .section-label::before, .section-label::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
  }
  .section-label::after {
    background: linear-gradient(90deg, var(--gold), transparent);
  }

  .countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 700px;
    margin: 0 auto;
  }

  .countdown-unit {
    padding: 32px 16px;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    position: relative;
    overflow: hidden;
  }

  .countdown-unit::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
  }

  .countdown-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .countdown-lbl {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 8px;
  }

  /* ABOUT */
  .section {
    position: relative;
    z-index: 1;
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .section-header {
    margin-bottom: 80px;
  }

  .section-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    line-height: 1;
    color: rgba(201,168,76,0.06);
    position: absolute;
    top: 80px;
    left: 60px;
    pointer-events: none;
    user-select: none;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 6vw, 80px);
    letter-spacing: 4px;
    line-height: 0.95;
    margin-bottom: 20px;
  }
  .section-title .gold { color: var(--gold); }

  .section-desc {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245,240,232,0.65);
    max-width: 600px;
  }

  /* STATS ROW */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.15);
    margin-bottom: 80px;
  }
  .stat-item {
    background: var(--deep);
    padding: 48px 32px;
    text-align: center;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 8px;
  }

  /* CATEGORIES */
  .categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .category-card {
    border: 1px solid rgba(201,168,76,0.2);
    background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, rgba(8,8,16,0.8) 100%);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
  }
  .category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .category-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); }
  .category-card:hover::before { opacity: 1; }

  .category-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
  }
  .category-type {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .category-distances {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .distance-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    padding: 8px 20px;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--white);
    transition: all 0.3s;
  }
  .distance-badge:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
  }

  /* AGE GROUPS */
  .age-groups {
    display: flex;
    gap: 2px;
    margin-top: 60px;
  }
  .age-group {
    flex: 1;
    padding: 32px 16px;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    text-align: center;
    transition: all 0.3s;
    cursor: default;
  }
  .age-group:hover {
    background: rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-4px);
  }
  .age-group-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--gold);
    letter-spacing: 2px;
  }
  .age-group-name {
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 6px;
  }

  /* HOW TO */
  .steps-container {
    position: relative;
  }
  .steps-line {
    position: absolute;
    left: 28px;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
  }

  .step {
    display: flex;
    gap: 40px;
    margin-bottom: 64px;
    padding-left: 80px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s;
  }
  .step.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--gold);
    background: var(--black);
    z-index: 1;
    flex-shrink: 0;
  }

  .step-content {}
  .step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .step-desc {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(245,240,232,0.6);
    /* max-width: 560px; */
  }

  .step-desc a{
    text-decoration: none;
    color: var(--gold);
    /* text-decoration: underline; */
    transition: color 0.3s;
  }


  .step-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    border: 1px solid rgba(201,168,76,0.3);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
  }

  /* RULES */
  .rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(201,168,76,0.1);
  }
  .rule-item {
    background: var(--deep);
    padding: 40px 36px;
  }
  .rule-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(201,168,76,0.2);
    line-height: 1;
    margin-bottom: 8px;
  }
  .rule-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .rule-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(245,240,232,0.6);
  }
  .rule-highlight {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    background: rgba(201,168,76,0.1);
    border-left: 2px solid var(--gold);
    font-size: 20px;
    color: var(--gold-light);
    width: 100%;
  }

  /* RECOGNITION / PRIZES */
  .prizes-section {
    position: relative;
    z-index: 1;
    padding: 120px 60px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.03), transparent);
    text-align: center;
  }

  .podium-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    max-width: 700px;
    margin: 80px auto;
  }

  .podium-item {
    flex: 1;
    text-align: center;
    position: relative;
  }

  .podium-medal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    position: relative;
    transition: transform 0.3s;
  }
  .podium-item:hover .podium-medal { transform: scale(1.1) rotate(5deg); }

  .medal-1 { background: linear-gradient(135deg, #FFD700, #FFA500); color: var(--black); box-shadow: 0 8px 32px rgba(255,215,0,0.4); }
  .medal-2 { background: linear-gradient(135deg, #C0C0C0, #808080); color: var(--black); }
  .medal-3 { background: linear-gradient(135deg, #CD7F32, #8B4513); color: var(--white); }

  .podium-rank {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .podium-reward {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
  }

  .podium-block {
    margin-top: 24px;
    border: 1px solid rgba(201,168,76,0.2);
  }
  .podium-block-1 { height: 120px; background: rgba(255,215,0,0.05); }
  .podium-block-2 { height: 80px; background: rgba(192,192,192,0.03); }
  .podium-block-3 { height: 55px; background: rgba(205,127,50,0.03); }

  .cert-banner {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(201,168,76,0.3);
    padding: 24px 48px;
    background: rgba(201,168,76,0.04);
  }
  .cert-icon { font-size: 36px; }
  .cert-text-label {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 5px;
  }
  .cert-text-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--gold);
  }

  /* REGISTER CTA SECTION */
  .register-section {
    position: relative;
    z-index: 1;
    padding: 160px 60px;
    text-align: center;
    overflow: hidden;
  }
  .register-bg {
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 70%);
  }
  .register-section .section-title {
    font-size: clamp(52px, 8vw, 100px);
    margin-bottom: 24px;
  }
  .register-section .section-desc {
    max-width: 500px;
    margin: 0 auto 48px;
    text-align: center;
  }
  .register-deadline {
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 24px;
  }
  .register-deadline span { color: var(--gold); }

  /* FOOTER */
  footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 60px;
  }
  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .footer-brand-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    /* max-width: 300px; */
  }
  .footer-col-title {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-links a {
    text-decoration: none;
    font-size: 18px;
    color: var(--gray);
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--white); }

  .footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-copy {
    font-size: 18px;
    color: var(--gray);
    letter-spacing: 1px;
  }
  .footer-passilo {
    font-size: 18px;
    color: var(--gray);
  }
  .footer-passilo a {
    color: var(--gold);
    text-decoration: none;
  }

  /* DIVIDER */
  .gold-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
    margin: 0;
  }

  /* MOBILE MENU */
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }
  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s;
    display: block;
  }

  /* ANIMS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* LEADERBOARD PREVIEW */
  .leaderboard-preview {
    border: 1px solid rgba(201,168,76,0.2);
    background: rgba(8,8,16,0.8);
    overflow: hidden;
  }
  .lb-header {
    display: grid;
    grid-template-columns: 60px 1fr 120px 120px;
    padding: 16px 24px;
    background: rgba(201,168,76,0.08);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
  }
  .lb-row {
    display: grid;
    grid-template-columns: 60px 1fr 120px 120px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    align-items: center;
    transition: background 0.2s;
  }
  .lb-row:hover { background: rgba(201,168,76,0.04); }
  .lb-row.top1 { background: rgba(255,215,0,0.06); }

  .lb-rank { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--gold); text-align: center; }
  .lb-name { font-size: 14px; font-weight: 500; }
  .lb-country { font-size: 12px; color: var(--gray); margin-top: 2px; }
  .lb-cat { font-size: 14px; letter-spacing: 2px; color: var(--gray);white-space: nowrap;  }
  .lb-time { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--white); text-align: right; }

  /* Responsive */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .section { padding: 80px 24px; }
    .section-number { display: none; }
    .countdown-section { padding: 60px 24px; }
    .countdown-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
    .countdown-num { font-size: 48px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: 1fr; }
    .age-groups { flex-wrap: wrap; }
    .age-group { flex-basis: calc(50% - 1px); }
    .rules-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .podium-container { gap: 0; }
    .lb-header, .lb-row { grid-template-columns: 50px 1fr 100px; }
    .lb-cat { display: none; }
    .prizes-section { padding: 80px 24px; }
    .register-section { padding: 100px 24px; }
    footer { padding: 60px 24px; }
  }