/* Hero */
    .hero-section {
      position: relative;
      overflow: hidden;
      padding-block: 0;
      min-height: auto;
      display: flex;
      align-items: flex-start;
      background: radial-gradient(ellipse at 30% 50%, rgba(0, 100, 180, 0.3) 0%, transparent 60%),
                  radial-gradient(ellipse at 70% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                  linear-gradient(180deg, var(--color-2) 0%, var(--color-1) 100%);
    }

    .hero-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300d4ff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 1;
      pointer-events: none;
    }

    .hero-section .container {
      position: relative;
      z-index: 2;
      padding-block: var(--space-3) var(--space-6);
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-4);
      max-width: 860px;
    }

    .hero-section h1 {
      font-size: clamp(2rem, 5vw, 3.8rem);
      font-weight: 900;
      line-height: 1.15;
      color: var(--color-6);
      letter-spacing: -1px;
    }

    .hero-section h1 em {
      font-style: normal;
      color: var(--color-4);
      text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    }

    .hero-section p {
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: var(--color-7);
      max-width: 680px;
      line-height: 1.8;
    }

    .hero__badges {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-2);
      margin-bottom: var(--space-3);
    }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(0, 212, 255, 0.1);
      border: 1px solid rgba(0, 212, 255, 0.3);
      border-radius: 50px;
      padding: 0.4rem 1rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--color-4);
    }

    .hero__cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-2);
      align-items: center;
    }

    .hero__stats {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-4);
      padding-top: var(--space-4);
      border-top: 1px solid var(--color-border);
    }

    .hero__stat {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .hero__stat-value {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--color-4);
      text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    }

    .hero__stat-label {
      font-size: 0.78rem;
      color: var(--color-7);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Overview */
    .overview {
      background: var(--color-2);
    }

    /* Registration */
    .registration {
      background: var(--color-1);
    }

    .registration h2 { margin-bottom: var(--space-3); }

    /* Login */
    .login {
      background: var(--color-3);
    }

    /* Mobile access */
    .mobile-access {
      background: var(--color-2);
    }

    /* Bonuses */
    .bonuses {
      background: var(--color-1);
      position: relative;
      overflow: hidden;
    }

    .bonuses::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Games */
    .games {
      background: var(--color-2);
    }

    /* Payments */
    .payments {
      background: var(--color-1);
    }

    .payments h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--color-6);
      margin-top: var(--space-5);
      margin-bottom: var(--space-3);
    }

    /* Security */
    .security {
      background: var(--color-3);
    }

    /* Support */
    .support {
      background: var(--color-1);
    }

    .support__email-link {
      display: inline-block;
      font-size: 0.9rem;
      word-break: break-all;
    }

    /* Tips */
    .tips {
      background: var(--color-2);
    }

    /* Highlights */
    .highlights {
      background: var(--color-1);
      position: relative;
      overflow: hidden;
    }

    .highlights::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    /* FAQ */
    .faq {
      background: var(--color-2);
    }

    .faq > .container > h2 {
      margin-bottom: var(--space-4);
    }

    .faq .accordion {
      margin-top: 0;
    }

    /* Responsive page styles */
    @media (max-width: 767px) {
      section { padding-block: var(--space-5); }

      .hero-section {
        min-height: auto;
      }

      .hero-section .container {
        padding-block: var(--space-2) var(--space-5);
      }

      .hero__stats {
        gap: var(--space-3);
      }

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

      .feature-table th,
      .feature-table td {
        padding: var(--space-2);
        font-size: 0.85rem;
      }

      .accordion-header {
        padding: var(--space-2) var(--space-3);
        font-size: 0.95rem;
      }

      .accordion-body {
        padding: 0 var(--space-3) var(--space-2);
      }
    }

    @media (max-width: 480px) {
      .cards-grid--4 {
        grid-template-columns: 1fr 1fr;
      }

      .hero__badges { gap: var(--space-1); }

      .hero__badge { font-size: 0.78rem; padding: 0.35rem 0.75rem; }
    }

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

    @media (min-width: 1024px) {
      .hero-section .container {
        max-width: 900px;
      }

      .hero-section h1 {
        font-size: clamp(2.8rem, 4.5vw, 4.2rem);
      }
    }

    /* Scroll animation utility */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in--visible {
      opacity: 1;
      transform: none;
    }