.hero-section {
      padding: 200px 0 120px;
      background: var(--gradient-hero);
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      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: -30%;
      left: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      animation: pulse 10s ease-in-out infinite reverse;
    }

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

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

    .hero-section p {
      font-size: 19px;
      max-width: 900px;
      margin-bottom: 40px;
      color: var(--light-cyan);
    }

    .overview {
      background: var(--dark-navy);
    }

    .feature-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      margin: 32px 0;
      background: var(--gradient-card);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .feature-table thead {
      background: linear-gradient(135deg, var(--primary-deep), var(--dark-slate));
    }

    .feature-table th,
    .feature-table td {
      padding: 20px 24px;
      text-align: left;
      border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    }

    .feature-table th {
      font-weight: 700;
      color: var(--primary-electric);
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 0.5px;
    }

    .feature-table td {
      color: var(--text-muted);
      font-size: 16px;
    }

    .feature-table tbody tr {
      transition: background 0.3s ease;
    }

    .feature-table tbody tr:hover {
      background: rgba(0, 245, 255, 0.05);
    }

    .feature-table tbody tr:last-child td {
      border-bottom: none;
    }

    .feature-table strong {
      color: var(--pure-white);
      font-weight: 600;
    }

    .registration {
      background: linear-gradient(180deg, var(--dark-navy) 0%, var(--dark-slate) 100%);
    }

    .timeline-container {
      position: relative;
      padding-left: 60px;
      margin: 48px 0;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--primary-electric) 0%, var(--accent-coral) 100%);
    }

    .timeline-item {
      position: relative;
      margin-bottom: 48px;
    }

    .timeline-marker {
      position: absolute;
      left: -48px;
      top: 0;
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, var(--primary-electric), var(--accent-gold));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 18px;
      color: var(--dark-navy);
      box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    }

    .timeline-content {
      background: var(--gradient-card);
      padding: 32px;
      border-radius: 16px;
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(0, 245, 255, 0.1);
      transition: all 0.3s ease;
    }

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

    .cards-grid-2,
    .cards-grid-3,
    .cards-grid-4 {
      display: grid;
      gap: 32px;
      margin: 48px 0;
    }

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

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

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

    .bonuses {
      background: var(--dark-navy);
    }

    .highlight-box {
      background: var(--gradient-card);
      border-radius: 20px;
      padding: 48px;
      margin: 32px 0;
      border: 2px solid rgba(0, 245, 255, 0.2);
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .highlight-box::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .highlight-box p {
      position: relative;
      z-index: 1;
    }

    .bonus-image,
    .promo-image,
    .game-icon {
      border-radius: 12px;
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
    }

    .bonus-image:hover,
    .promo-image:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-lg);
    }

    .game-icon {
      width: 100%;
      height: auto;
      margin-bottom: 16px;
    }

    .games {
      background: linear-gradient(180deg, var(--dark-slate) 0%, var(--dark-navy) 100%);
    }

    .tabs-nav {
      display: flex;
      gap: 16px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }

    .tab-button {
      padding: 16px 32px;
      font-size: 16px;
      font-weight: 600;
      background: var(--dark-slate);
      color: var(--text-muted);
      border: 2px solid rgba(0, 245, 255, 0.1);
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .tab-button:hover {
      border-color: var(--primary-electric);
      color: var(--primary-electric);
      transform: translateY(-2px);
    }

    .tab-button.active {
      background: linear-gradient(135deg, var(--primary-electric), var(--accent-gold));
      color: var(--dark-navy);
      border-color: transparent;
      box-shadow: 0 4px 16px rgba(0, 245, 255, 0.3);
    }

    .tab-content {
      display: none;
      animation: fadeIn 0.5s ease;
    }

    .tab-content.active {
      display: block;
    }

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

    .software {
      background: var(--dark-navy);
    }

    .highlight-list {
      list-style: none;
      padding: 0;
      margin: 32px 0;
    }

    .highlight-list li {
      background: var(--gradient-card);
      padding: 32px;
      margin-bottom: 24px;
      border-radius: 16px;
      border-left: 4px solid var(--primary-electric);
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
    }

    .highlight-list li:hover {
      transform: translateX(8px);
      border-left-color: var(--accent-coral);
      box-shadow: var(--shadow-lg);
    }

    .highlight-list strong {
      color: var(--primary-electric);
      font-size: 20px;
      display: block;
      margin-bottom: 12px;
    }

    .highlight-list p {
      margin: 0;
    }

    .support {
      background: linear-gradient(180deg, var(--dark-slate) 0%, var(--dark-navy) 100%);
    }

    .banking {
      background: var(--dark-navy);
    }

    .faq {
      background: var(--dark-slate);
    }

    .accordion-item {
      background: var(--gradient-card);
      border-radius: 16px;
      margin-bottom: 20px;
      overflow: hidden;
      border: 1px solid rgba(0, 245, 255, 0.1);
      transition: all 0.3s ease;
    }

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

    .accordion-header {
      width: 100%;
      padding: 28px 64px 28px 32px;
      background: transparent;
      border: none;
      text-align: left;
      font-size: 20px;
      font-weight: 600;
      color: var(--pure-white);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      transition: all 0.3s ease;
    }

    .accordion-header:hover {
      color: var(--primary-electric);
    }

    .accordion-icon {
      position: absolute;
      right: 32px;
      width: 24px;
      height: 24px;
      transition: transform 0.3s ease;
    }

    .accordion-icon::before,
    .accordion-icon::after {
      content: '';
      position: absolute;
      background: var(--primary-electric);
      transition: all 0.3s ease;
    }

    .accordion-icon::before {
      width: 24px;
      height: 3px;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
    }

    .accordion-icon::after {
      width: 3px;
      height: 24px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
    }

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

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

    .accordion-body.active {
      max-height: 1000px;
      padding: 0 32px 32px;
    }

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

    .cta-section {
      background: linear-gradient(135deg, var(--primary-deep) 0%, var(--dark-navy) 100%);
      text-align: center;
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

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

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

    .cta-section h2 {
      margin-bottom: 24px;
    }

    .cta-section h2::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .cta-section p {
      font-size: 20px;
      color: var(--light-cyan);
      max-width: 700px;
      margin: 0 auto 48px;
    }

    @media (max-width: 991px) {
      section {
        padding: 80px 0;
      }

      .hero-section {
        padding: 160px 0 100px;
      }

      h1 {
        font-size: 48px;
      }

      h2 {
        font-size: 40px;
      }

      .timeline-container {
        padding-left: 50px;
      }

      .timeline-marker {
        width: 36px;
        height: 36px;
        left: -43px;
        font-size: 16px;
      }
    }

    @media (max-width: 767px) {
      html, body {
        overflow-x: hidden;
        width: 100%;
      }

      section, .container, .hero-section, .card, img, video, iframe, table, .feature-table {
        max-width: 100%;
        overflow-x: hidden;
      }

      img, video, iframe {
        height: auto;
      }

      section {
        padding: 60px 0;
      }

      .hero-section {
        padding: 260px 0 80px;
        overflow: hidden;
      }

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

      .hero-section::before {
        right: -50px;
      }

      .hero-section::after {
        left: -50px;
      }

      .hero-section p {
        font-size: 17px;
      }

      .btn-primary {
        width: 100%;
        padding: 16px 32px;
        font-size: 16px;
      }

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

      .highlight-box {
        padding: 32px 24px;
        overflow: hidden;
      }

      .highlight-box::before {
        width: 200px;
        height: 200px;
        right: -50px;
      }

      .bonus-image,
      .promo-image {
        max-width: 100% !important;
        width: 100%;
        height: auto;
      }

      .tabs-nav {
        flex-direction: column;
      }

      .tab-button {
        width: 100%;
        text-align: center;
      }

      .timeline-container {
        padding-left: 40px;
      }

      .timeline-marker {
        width: 32px;
        height: 32px;
        left: -36px;
        font-size: 14px;
      }

      .timeline-content {
        padding: 24px;
      }

      .banking .feature-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
      }

      .banking .feature-table thead,
      .banking .feature-table tbody {
        display: table;
        width: 100%;
        min-width: 600px;
      }

      .feature-table {
        font-size: 14px;
      }

      .feature-table th,
      .feature-table td {
        padding: 16px 12px;
      }

      .accordion-header {
        font-size: 18px;
        padding: 24px 56px 24px 24px;
      }

      .accordion-icon {
        right: 24px;
      }

      .accordion-body.active {
        padding: 0 24px 24px;
      }

      .cta-section {
        padding: 80px 0;
        overflow: hidden;
      }

      .cta-section::before {
        width: 300px;
        height: 300px;
      }
    }