/* Hero */
    .hero-section {
      background: linear-gradient(135deg, #050510 0%, #0a1628 40%, #0d2244 100%);
      padding: var(--sp6) 0;
      position: relative;
      overflow: hidden;
      min-height: 70vh;
      display: flex;
      align-items: center;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 60%;
      height: 130%;
      background: radial-gradient(ellipse, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -20%;
      left: -5%;
      width: 50%;
      height: 100%;
      background: radial-gradient(ellipse, rgba(124, 77, 255, 0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner { position: relative; z-index: 1; }

    .hero-section h1 {
      background: linear-gradient(135deg, #ffffff 0%, var(--acc) 60%, var(--acc3) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: var(--sp3);
    }

    .hero-desc {
      font-size: clamp(1rem, 1.5vw, 1.15rem);
      color: var(--fg2);
      max-width: 700px;
      line-height: 1.8;
      margin-bottom: var(--sp4);
    }

    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp2);
      margin-bottom: var(--sp4);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--sp3);
      margin-bottom: var(--sp4);
      max-width: 500px;
    }

    @media (min-width: 576px) {
      .hero-stats { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
    }

    .hero-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp1);
      margin-top: var(--sp2);
    }

    /* Countdown */
    .countdown-bar {
      display: inline-flex;
      align-items: center;
      gap: var(--sp2);
      background: rgba(255, 215, 0, 0.08);
      border: 1px solid rgba(255, 215, 0, 0.25);
      border-radius: 50px;
      padding: 0.5rem 1.2rem;
      margin-bottom: var(--sp3);
      font-size: 0.85rem;
      color: var(--gold);
      font-weight: 700;
    }

    .countdown-timer {
      display: flex;
      gap: 0.5rem;
      align-items: center;
      font-size: 1rem;
      font-weight: 900;
      color: var(--gold);
    }

    .countdown-seg {
      background: rgba(255, 215, 0, 0.15);
      border-radius: 6px;
      padding: 0.2rem 0.5rem;
      min-width: 36px;
      text-align: center;
    }

    /* Registration section */
    .registration { background: var(--c1); }

    .timeline-wrap { position: relative; }

    .timeline-article {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--rad-lg);
      padding: var(--sp4);
      margin-bottom: var(--sp4);
      transition: var(--trans);
    }

    .timeline-article:hover {
      border-color: rgba(0, 229, 255, 0.3);
      box-shadow: var(--shadow);
    }

    .timeline-article h3 {
      color: var(--acc);
      margin-bottom: var(--sp2);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    /* Bonuses section */
    .bonuses { background: linear-gradient(180deg, var(--c2) 0%, var(--c1) 100%); }

    /* Games section */
    .games { background: var(--c1); }

    .game-category {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--rad-lg);
      padding: var(--sp4);
      margin-bottom: var(--sp4);
      transition: var(--trans);
    }

    .game-category:hover { border-color: rgba(0, 229, 255, 0.3); box-shadow: var(--shadow); }
    .game-category h3 { color: var(--acc); margin-bottom: var(--sp2); }

    /* Payments section */
    .payments { background: linear-gradient(180deg, var(--c3) 0%, var(--c1) 100%); }

    .text-block h3 { color: var(--acc); margin-bottom: var(--sp2); }

    /* Security section */
    .security { background: var(--c1); }

    /* Platform section */
    .platform { background: linear-gradient(180deg, var(--c2) 0%, var(--c1) 100%); }

    .highlight-boxes h3 { color: var(--acc); margin-bottom: var(--sp2); }

    /* Support section */
    .support { background: var(--c1); }

    /* FAQ section */
    .faq { background: linear-gradient(180deg, var(--c2) 0%, var(--c1) 100%); }

    .info-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--rad-lg);
      padding: var(--sp4);
      transition: var(--trans);
    }
    .info-card:hover { border-color: rgba(0, 229, 255, 0.35); box-shadow: var(--shadow); transform: translateY(-4px); }
    .info-card h3 { color: var(--acc); margin-bottom: var(--sp2); }

    @media (min-width: 768px) {
      .hero-stats { grid-template-columns: repeat(4, 1fr); }
    }

    @media (min-width: 1024px) {
      .hero-inner { max-width: 75%; }
    }