.hero-section {
      padding: 4rem 0;
      background: linear-gradient(135deg, rgba(255, 0, 110, 0.05) 0%, rgba(251, 86, 7, 0.05) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -5%;
      right: -5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 190, 11, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -5%;
      left: -5%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(58, 12, 163, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    section {
      padding: 3rem 0;
      position: relative;
    }

    .timeline {
      position: relative;
    }

    .subsection {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      border-left: 4px solid var(--primary);
    }

    .subsection:hover {
      transform: translateX(5px);
      box-shadow: var(--shadow-md);
    }

    .steps-list {
      background: var(--gradient-primary);
      color: white;
      border-radius: 12px;
      padding: 2rem;
      margin: 1.5rem 0;
      counter-reset: step-counter;
    }

    .steps-list li {
      counter-increment: step-counter;
      position: relative;
      padding-left: 3rem;
      margin-bottom: 1rem;
      font-weight: 500;
    }

    .steps-list li::before {
      content: counter(step-counter);
      position: absolute;
      left: 0;
      top: 0;
      width: 30px;
      height: 30px;
      background: white;
      color: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
    }

    .checklist {
      list-style: none;
      padding: 0;
    }

    .checklist li {
      position: relative;
      padding-left: 2rem;
      margin-bottom: 1rem;
      color: #495057;
    }

    .checklist li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: bold;
      font-size: 1.25rem;
    }

    .feature-blocks {
      background: #F8F9FA;
    }

    .feature-block {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .feature-block::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gradient-accent);
    }

    .feature-block:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-lg);
    }

    .cards-grid-3 {
      background: white;
    }

    .game-category {
      padding: 2rem;
      border-radius: 16px;
      margin-bottom: 2rem;
      background: linear-gradient(135deg, rgba(255, 0, 110, 0.03) 0%, rgba(251, 86, 7, 0.03) 100%);
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }

    .game-category:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
    }

    .game-showcase {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin: 2rem 0;
      padding: 1.5rem;
      background: white;
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
    }

    .game-showcase figure {
      flex-shrink: 0;
    }

    .highlight-boxes {
      background: linear-gradient(135deg, #F8F9FA 0%, white 100%);
    }

    .highlight-box {
      background: white;
      border-radius: 20px;
      padding: 2.5rem;
      margin-bottom: 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
    }

    .highlight-box::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: var(--gradient-accent);
      opacity: 0.1;
      border-radius: 0 0 0 100%;
    }

    .highlight-box:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-xl);
    }

    .comparison-table {
      padding: 4rem 0;
      background: #F8F9FA;
    }

    .payment-table {
      margin-top: 2rem;
    }

    .payment-info {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      margin: 2rem 0;
      box-shadow: var(--shadow-sm);
    }

    .text-block {
      background: white;
    }

    .regulatory-info,
    .fair-gaming,
    .responsible-gaming,
    .data-protection {
      padding: 2rem;
      margin-bottom: 2rem;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(58, 12, 163, 0.03) 0%, rgba(114, 9, 183, 0.03) 100%);
    }

    .tools-list {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      margin: 2rem 0;
    }

    .tools-list dt {
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
    }

    .tools-list dd {
      margin-bottom: 1.5rem;
      padding-left: 1rem;
      color: #495057;
    }

    .accordion {
      background: linear-gradient(135deg, #F8F9FA 0%, white 100%);
      padding: 4rem 0;
    }

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

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

    .accordion-header {
      padding: 1.5rem;
      margin: 0;
      cursor: pointer;
      color: var(--dark);
      font-size: 1.25rem;
      position: relative;
      padding-right: 3rem;
      transition: all 0.3s ease;
    }

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

    .accordion-item.active .accordion-header::after {
      transform: translateY(-50%) rotate(45deg);
    }

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

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

    @media (max-width: 767px) {
      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.75rem;
      }

      h3 {
        font-size: 1.25rem;
      }

      section {
        padding: 2rem 0;
      }

      .hero-section {
        padding: 2rem 0;
      }

      .hero-section::before,
      .hero-section::after {
        width: 200px;
        height: 200px;
      }

      .game-showcase {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
      }

      .game-showcase figure {
        width: 100%;
        margin: 0 auto;
      }

      .game-showcase .content-image.portrait img {
        max-width: 100%;
        width: 100%;
        max-height: 250px;
        height: auto;
        object-fit: contain;
      }

      .subsection,
      .feature-block,
      .highlight-box,
      .payment-info {
        padding: 1.5rem;
      }

      .steps-list {
        padding: 1.5rem;
      }

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

    @media (min-width: 768px) {
      .game-showcase {
        transition: transform 0.3s ease;
      }

      .game-showcase:hover {
        transform: translateX(10px);
      }
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 40px;
      }

      .hero-section {
        padding: 6rem 0;
      }

      section {
        padding: 4rem 0;
      }
    }