.hero-section {
      background: var(--gradient-secondary);
      color: white;
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -5%;
      right: -5%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 245, 255, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      animation: pulse 8s ease-in-out infinite;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -5%;
      left: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 61, 113, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      animation: pulse 6s ease-in-out infinite reverse;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.6; }
      50% { transform: scale(1.1); opacity: 0.8; }
    }

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

    .hero-section h1 {
      -webkit-text-fill-color: white;
      margin-bottom: 1.5rem;
    }

    .hero-section p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 900px;
      margin-bottom: 1.5rem;
    }

    .hero-section .btn-primary {
      margin-top: 1rem;
      font-size: 1.1rem;
      padding: 16px 40px;
    }

    .table-of-contents {
      background: white;
      padding: 2rem 0;
      box-shadow: var(--shadow-sm);
    }

    .table-of-contents h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .table-of-contents ul {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1rem;
      list-style: none;
    }

    .table-of-contents li {
      background: linear-gradient(135deg, rgba(255, 61, 113, 0.05) 0%, rgba(74, 0, 224, 0.05) 100%);
      border-radius: 12px;
      transition: var(--transition);
    }

    .table-of-contents li:hover {
      background: linear-gradient(135deg, rgba(255, 61, 113, 0.1) 0%, rgba(74, 0, 224, 0.1) 100%);
      transform: translateX(8px);
    }

    .table-of-contents a {
      display: block;
      padding: 1rem 1.5rem;
      font-weight: 500;
    }

    section {
      padding: 4rem 0;
    }

    .registration {
      background: linear-gradient(180deg, white 0%, rgba(255, 61, 113, 0.03) 100%);
    }

    .info-card,
    .highlight-box,
    .feature-list,
    .highlight-list,
    .checklist {
      background: white;
      border-left: 4px solid var(--primary);
      padding: 1.5rem;
      margin: 1.5rem 0;
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
    }

    .info-card h4,
    .highlight-box h4,
    .feature-list h4,
    .highlight-list h4,
    .checklist h4 {
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .info-card ul,
    .highlight-box ul,
    .feature-list ul,
    .highlight-list ul,
    .checklist ul {
      list-style: none;
      padding-left: 0;
    }

    .info-card li,
    .highlight-box li,
    .feature-list li,
    .highlight-list li,
    .checklist li {
      padding: 0.5rem 0;
      padding-left: 1.5rem;
      position: relative;
    }

    .info-card li::before,
    .highlight-box li::before,
    .feature-list li::before,
    .highlight-list li::before,
    .checklist li::before {
      content: '◆';
      position: absolute;
      left: 0;
      color: var(--primary);
      font-weight: bold;
    }

    .numbered-list {
      counter-reset: item;
      list-style: none;
      padding-left: 0;
    }

    .numbered-list li {
      counter-increment: item;
      padding: 1rem 1rem 1rem 3rem;
      margin-bottom: 1rem;
      background: white;
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      position: relative;
    }

    .numbered-list li::before {
      content: counter(item);
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: var(--gradient-primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    .mobile-app {
      background: linear-gradient(180deg, rgba(74, 0, 224, 0.03) 0%, white 100%);
    }

    .cards-grid-3,
    .cards-grid-2,
    .cards-grid-4 {
      display: grid;
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .cards-grid-3 {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .cards-grid-2 {
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .cards-grid-4 {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .cards-grid-3 .card h4,
    .cards-grid-2 .card h4,
    .cards-grid-4 .card h4 {
      color: var(--secondary);
      margin-bottom: 0.75rem;
    }

    .gaming-sections {
      background: white;
    }

    .comparison-table {
      margin: 2rem 0;
    }

    .feature-blocks {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .feature-block {
      background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(74, 0, 224, 0.05) 100%);
      padding: 1.5rem;
      border-radius: 16px;
      box-shadow: var(--shadow-sm);
    }

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

    .strategy-tips {
      background: linear-gradient(180deg, white 0%, rgba(0, 245, 255, 0.03) 100%);
    }

    .accordion-item {
      background: white;
      border-radius: 16px;
      margin-bottom: 1rem;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: var(--transition);
    }

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

    .accordion-header {
      padding: 1.5rem;
      cursor: pointer;
      font-size: 1.2rem;
      color: var(--dark);
      transition: var(--transition);
      position: relative;
      user-select: none;
    }

    .accordion-header::after {
      content: '+';
      position: absolute;
      right: 1.5rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--primary);
      transition: var(--transition);
    }

    .accordion-header:hover {
      background: rgba(255, 61, 113, 0.05);
    }

    .accordion-item.active .accordion-header::after {
      content: '−';
    }

    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
    }

    .accordion-item.active .accordion-body {
      max-height: 3000px;
      transition: max-height 0.6s ease-in;
    }

    .accordion-body > div {
      padding: 0 1.5rem 1.5rem;
    }

    .payment-methods {
      background: linear-gradient(180deg, rgba(74, 0, 224, 0.03) 0%, white 100%);
    }

    .software-providers {
      background: white;
    }

    .faq {
      background: linear-gradient(180deg, white 0%, rgba(255, 61, 113, 0.03) 100%);
    }

    .cta-section {
      background: var(--gradient-primary);
      color: white;
      text-align: center;
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -3%;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .cta-section .container {
      position: relative;
      z-index: 1;
    }

    .cta-section h2 {
      color: white;
      font-size: clamp(2rem, 4vw, 3rem);
    }

    .cta-section h2::after {
      display: none;
    }

    .cta-section p {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.95);
      max-width: 800px;
      margin: 1.5rem auto;
    }

    .cta-section .btn-primary {
      background: white;
      color: var(--primary);
      margin-top: 1.5rem;
      font-size: 1.2rem;
      padding: 18px 48px;
    }

    .cta-section .btn-primary:hover {
      background: var(--accent);
      color: white;
    }

    .responsible-gaming {
      background: rgba(10, 14, 39, 0.05);
      padding: 2rem 0;
      text-align: center;
    }

    .responsible-gaming p {
      font-size: 0.9rem;
      color: rgba(10, 14, 39, 0.7);
      max-width: 900px;
      margin: 0 auto;
    }

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

      section {
        padding: 2.5rem 0;
      }

      .cards-grid-3,
      .cards-grid-2,
      .cards-grid-4 {
        grid-template-columns: 1fr;
      }

      .table-of-contents ul {
        grid-template-columns: 1fr;
      }

      .cta-section {
        padding: 3rem 0;
      }

      h2::after {
        width: 60px;
      }
    }

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

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

    @media (min-width: 1024px) {
      .hero-section {
        padding: 6rem 0;
      }

      section {
        padding: 5rem 0;
      }
    }