.hero-section {
      position: relative;
      padding: 8rem 0 6rem;
      overflow: hidden;
      background: linear-gradient(135deg, var(--dark) 0%, #0D1B3A 100%);
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -5%;
      right: -5%;
      width: 60%;
      height: 120%;
      background: radial-gradient(circle, rgba(0, 217, 255, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

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

    .hero-section .container {
      position: relative;
      z-index: 2;
    }

    .hero-section h1 {
      background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 50%, var(--secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1.5rem;
      animation: heroTitleFade 1s ease-out;
    }

    @keyframes heroTitleFade {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-section p {
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 900px;
      line-height: 1.8;
      animation: heroTextFade 1s ease-out 0.2s both;
    }

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

    .table-of-contents {
      padding: 4rem 0;
      background: var(--dark-alt);
    }

    .table-of-contents h2 {
      color: var(--primary);
      margin-bottom: 2rem;
      text-align: center;
    }

    .toc-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1rem;
      padding: 0;
    }

    .toc-list li {
      background: var(--dark);
      border: 1px solid rgba(0, 217, 255, 0.1);
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .toc-list li:hover {
      border-color: var(--primary);
      transform: translateX(5px);
      box-shadow: var(--shadow-md);
    }

    .toc-list a {
      display: block;
      padding: 1rem 1.5rem;
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .toc-list a:hover {
      color: var(--primary);
    }

    .registration {
      padding: 6rem 0;
      background: var(--dark);
    }

    .registration h2 {
      color: var(--primary);
      text-align: center;
      margin-bottom: 3rem;
    }

    .registration > .container > p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 4rem;
      font-size: 1.1rem;
      color: var(--text-muted);
    }

    .timeline-item {
      margin-bottom: 3rem;
      padding: 2.5rem;
      background: var(--dark-alt);
      border-left: 4px solid var(--primary);
      border-radius: 12px;
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
    }

    .timeline-item:hover {
      transform: translateX(10px);
      box-shadow: var(--shadow-lg);
    }

    .timeline-item h3 {
      color: var(--primary);
      margin-bottom: 1rem;
      font-size: 1.75rem;
    }

    .timeline-item p {
      color: var(--text-muted);
      margin-bottom: 1rem;
      line-height: 1.8;
    }

    .mobile-experience {
      padding: 6rem 0;
      background: linear-gradient(135deg, #0D1B3A 0%, var(--dark) 100%);
      position: relative;
      overflow: hidden;
    }

    .mobile-experience::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      height: 80%;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
      pointer-events: none;
    }

    .mobile-experience h2 {
      color: var(--accent);
      text-align: center;
      margin-bottom: 3rem;
    }

    .mobile-experience > .container > p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 4rem;
      font-size: 1.1rem;
      color: var(--text-muted);
    }

    .feature-block {
      margin-bottom: 3rem;
      padding: 2.5rem;
      background: rgba(255, 215, 0, 0.03);
      border: 1px solid rgba(255, 215, 0, 0.2);
      border-radius: 12px;
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
    }

    .feature-block:hover {
      border-color: var(--accent);
      box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    }

    .feature-block h3 {
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .feature-block p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .feature-block a {
      color: var(--accent);
      text-decoration: underline;
      transition: opacity 0.3s ease;
    }

    .feature-block a:hover {
      opacity: 0.8;
    }

    .game-selection {
      padding: 6rem 0;
      background: var(--dark);
    }

    .game-selection h2 {
      color: var(--secondary);
      text-align: center;
      margin-bottom: 3rem;
    }

    .game-selection > .container > p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 4rem;
      font-size: 1.1rem;
      color: var(--text-muted);
    }

    .game-selection .card {
      border-color: rgba(255, 0, 107, 0.2);
      margin-bottom: 3rem;
    }

    .game-selection .card:hover {
      border-color: var(--secondary);
    }

    .game-selection .card h3 {
      color: var(--secondary);
      margin-bottom: 1rem;
    }

    .game-selection .card p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .game-selection .card a {
      color: var(--secondary);
      text-decoration: underline;
      transition: opacity 0.3s ease;
    }

    .game-selection .card a:hover {
      opacity: 0.8;
    }

    .strategies {
      padding: 6rem 0;
      background: var(--dark-alt);
      position: relative;
      overflow: hidden;
    }

    .strategies::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background: linear-gradient(90deg, transparent 0%, rgba(0, 217, 255, 0.03) 100%);
      pointer-events: none;
    }

    .strategies h2 {
      color: var(--primary);
      text-align: center;
      margin-bottom: 3rem;
    }

    .strategies > .container > p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 4rem;
      font-size: 1.1rem;
      color: var(--text-muted);
    }

    .highlight-item {
      margin-bottom: 3rem;
      padding: 2.5rem;
      background: var(--dark);
      border-radius: 12px;
      border: 1px solid rgba(0, 217, 255, 0.1);
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
      position: relative;
    }

    .highlight-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--gradient-1);
      border-radius: 12px 0 0 12px;
    }

    .highlight-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary);
    }

    .highlight-item h3 {
      color: var(--primary);
      margin-bottom: 1rem;
      padding-left: 1rem;
    }

    .highlight-item p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 1rem;
      padding-left: 1rem;
    }

    .highlight-item a {
      color: var(--primary);
      text-decoration: underline;
      transition: opacity 0.3s ease;
    }

    .highlight-item a:hover {
      opacity: 0.8;
    }

    .banking {
      padding: 6rem 0;
      background: var(--dark);
    }

    .banking h2 {
      color: var(--accent);
      text-align: center;
      margin-bottom: 3rem;
    }

    .banking > .container > p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 4rem;
      font-size: 1.1rem;
      color: var(--text-muted);
    }

    .text-block {
      margin-bottom: 3rem;
      padding: 2rem;
      background: var(--dark-alt);
      border-radius: 12px;
      border: 1px solid rgba(255, 215, 0, 0.1);
      box-shadow: var(--shadow-md);
    }

    .text-block h3 {
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .text-block p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .licensing {
      padding: 6rem 0;
      background: linear-gradient(135deg, var(--dark-alt) 0%, var(--dark) 100%);
    }

    .licensing h2 {
      color: var(--primary);
      text-align: center;
      margin-bottom: 3rem;
    }

    .licensing > .container > p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 4rem;
      font-size: 1.1rem;
      color: var(--text-muted);
    }

    .licensing article {
      margin-bottom: 3rem;
      padding: 2.5rem;
      background: rgba(0, 217, 255, 0.03);
      border: 1px solid rgba(0, 217, 255, 0.2);
      border-radius: 12px;
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
    }

    .licensing article:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-lg);
    }

    .licensing article h3 {
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .licensing article p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .licensing article a {
      color: var(--primary);
      text-decoration: underline;
      transition: opacity 0.3s ease;
    }

    .licensing article a:hover {
      opacity: 0.8;
    }

    .faq {
      padding: 6rem 0;
      background: var(--dark);
    }

    .faq h2 {
      color: var(--secondary);
      text-align: center;
      margin-bottom: 3rem;
    }

    .accordion-item {
      background: var(--dark-alt);
      border: 1px solid rgba(255, 0, 107, 0.1);
      border-radius: 12px;
      margin-bottom: 1.5rem;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .accordion-item:hover {
      border-color: var(--secondary);
      box-shadow: var(--shadow-md);
    }

    .accordion-header {
      width: 100%;
      background: none;
      border: none;
      padding: 1.5rem 2rem;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      transition: all 0.3s ease;
    }

    .accordion-header h3 {
      margin: 0;
      color: var(--text);
      font-size: 1.25rem;
      transition: color 0.3s ease;
    }

    .accordion-header:hover h3 {
      color: var(--secondary);
    }

    .accordion-icon {
      font-size: 1.5rem;
      color: var(--secondary);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .accordion-icon::before {
      content: '+';
    }

    .accordion-header[aria-expanded="true"] .accordion-icon {
      transform: rotate(45deg);
    }

    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .accordion-body.active {
      max-height: 1000px;
      padding: 0 2rem 1.5rem;
    }

    .accordion-body p {
      color: var(--text-muted);
      line-height: 1.8;
      margin: 0;
    }

    .accordion-body a {
      color: var(--secondary);
      text-decoration: underline;
      transition: opacity 0.3s ease;
    }

    .accordion-body a:hover {
      opacity: 0.8;
    }

    @media (max-width: 767px) {
      .hero-section {
        padding: 4rem 0 3rem;
      }

      h1 { font-size: 2rem; }
      h2 { font-size: 1.75rem; }
      h3 { font-size: 1.5rem; }

      .registration,
      .mobile-experience,
      .game-selection,
      .strategies,
      .banking,
      .licensing,
      .faq {
        padding: 3rem 0;
      }

      .timeline-item,
      .feature-block,
      .highlight-item,
      .text-block,
      .licensing article {
        padding: 1.5rem;
      }

      .toc-list {
        grid-template-columns: 1fr;
      }

      .accordion-header {
        padding: 1rem 1.5rem;
      }

      .accordion-header h3 {
        font-size: 1.1rem;
      }

      .accordion-body.active {
        padding: 0 1.5rem 1rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      table {
        font-size: 0.875rem;
      }

      table thead th,
      table tbody td {
        padding: 0.75rem 0.5rem;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .hero-section {
        padding: 6rem 0 4rem;
      }

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