    main {
      padding-top: 100px;
      width: 100%;
      max-width: 100vw;
      overflow-x: hidden;
    }

    main img {
      max-width: 100%;
      height: auto;
    }

    .hero-section {
      padding: 6rem 0;
      background: radial-gradient(ellipse at top, rgba(255, 0, 107, 0.2) 0%, transparent 50%),
                  radial-gradient(ellipse at bottom right, rgba(0, 245, 255, 0.1) 0%, transparent 50%);
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 0, 107, 0.03) 10px, rgba(255, 0, 107, 0.03) 20px);
    }

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

    .hero-section h1 {
      margin-bottom: 2rem;
      text-align: center;
    }

    .hero-section p {
      font-size: 1.25rem;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-section .btn {
      margin-top: 2.5rem;
    }

    .overview {
      padding: 5rem 0;
      background: linear-gradient(135deg, rgba(26, 11, 46, 0.5) 0%, rgba(10, 6, 21, 0.8) 100%);
    }

    .feature-table {
      width: 100%;
      margin: 3rem 0;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      background: rgba(26, 11, 46, 0.9);
    }

    .table-wrapper {
      margin: 3rem 0;
    }

    @media (max-width: 767px) {
      .table-wrapper {
        margin: 2rem 0;
      }

      .table-wrapper .feature-table {
        margin: 0;
        min-width: auto;
        display: block;
        border-radius: var(--border-radius);
      }

      .feature-table thead {
        display: none;
      }

      .feature-table tbody {
        display: block;
      }

      .feature-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        background: rgba(45, 27, 78, 0.6);
        border-radius: var(--border-radius);
        border: 1px solid rgba(0, 245, 255, 0.2);
        padding: 0;
      }

      .feature-table tbody tr:last-child {
        margin-bottom: 0;
      }

      .feature-table tbody td {
        display: block;
        padding: 1rem 1.25rem;
        text-align: left;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .feature-table tbody td:first-child {
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--accent);
        padding-top: 1.25rem;
        padding-bottom: 0.5rem;
      }

      .feature-table tbody td:last-child {
        font-size: 1rem;
        color: var(--white);
        padding-bottom: 1.25rem;
        border-bottom: none;
      }
    }

    .feature-table thead {
      background: var(--gradient-primary);
    }

    .feature-table th {
      padding: 1.5rem;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .feature-table td {
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid rgba(255, 0, 107, 0.1);
      color: var(--light);
      font-size: 1.125rem;
    }

    .feature-table tbody tr {
      transition: var(--transition);
    }

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

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

    .feature-table td:first-child {
      font-weight: 600;
      color: var(--accent);
    }

    .content-text {
      margin-top: 3rem;
    }

    .registration {
      padding: 5rem 0;
      background: radial-gradient(circle at center, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    }

    .registration-steps,
    .verification-info {
      margin: 3rem 0;
      padding: 3rem;
      background: rgba(26, 11, 46, 0.6);
      border-radius: var(--border-radius-lg);
      border: 1px solid rgba(0, 245, 255, 0.2);
      backdrop-filter: blur(10px);
      transition: var(--transition);
    }

    .registration-steps:hover,
    .verification-info:hover {
      border-color: var(--primary);
      transform: translateX(8px);
      box-shadow: -8px 8px 32px rgba(255, 0, 107, 0.2);
    }

    .registration-steps img,
    .verification-info img {
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-lg);
      max-width: 450px;
      width: 100%;
      height: auto;
    }

    .mobile-app {
      padding: 5rem 0;
      background: linear-gradient(180deg, rgba(10, 6, 21, 0.9) 0%, rgba(26, 11, 46, 0.7) 100%);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 3rem;
      margin-top: 3rem;
    }

    .feature-card {
      background: linear-gradient(135deg, rgba(45, 27, 78, 0.9) 0%, rgba(26, 11, 46, 0.9) 100%);
      border-radius: var(--border-radius-lg);
      padding: 2.5rem;
      border: 1px solid rgba(0, 245, 255, 0.2);
      box-shadow: var(--shadow-lg);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    .feature-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 32px 64px rgba(255, 0, 107, 0.3);
      border-color: var(--primary);
    }

    .feature-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: var(--border-radius);
      margin-bottom: 1.5rem;
      box-shadow: var(--shadow-md);
    }

    .games {
      padding: 5rem 0;
      background: radial-gradient(ellipse at center, rgba(255, 0, 107, 0.1) 0%, transparent 60%);
    }

    .games-content {
      display: grid;
      gap: 4rem;
      margin-top: 3rem;
    }

    .game-category {
      padding: 3rem;
      background: rgba(26, 11, 46, 0.7);
      border-radius: var(--border-radius-lg);
      border: 1px solid rgba(255, 0, 107, 0.2);
      backdrop-filter: blur(10px);
    }

    .slots-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .slots-grid img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-md);
      transition: var(--transition);
    }

    .slots-grid img:hover {
      transform: scale(1.05) rotate(2deg);
      box-shadow: 0 16px 48px rgba(255, 0, 107, 0.4);
    }

    .game-category > img {
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-lg);
      transition: var(--transition);
      max-width: 450px;
      width: 100%;
      height: auto;
    }

    .game-category > img:hover {
      transform: scale(1.02);
      box-shadow: 0 24px 48px rgba(0, 245, 255, 0.3);
    }

    .support {
      padding: 5rem 0;
      background: linear-gradient(135deg, rgba(10, 6, 21, 0.9) 0%, rgba(26, 11, 46, 0.8) 100%);
    }

    .support-methods,
    .support-quality {
      margin: 3rem 0;
      padding: 2.5rem;
      background: rgba(45, 27, 78, 0.5);
      border-radius: var(--border-radius);
      border-left: 4px solid var(--accent);
    }

    .providers {
      padding: 5rem 0;
      background: radial-gradient(circle at top right, rgba(0, 245, 255, 0.15) 0%, transparent 50%);
    }

    .highlight-box {
      background: linear-gradient(135deg, rgba(255, 0, 107, 0.1) 0%, rgba(0, 245, 255, 0.05) 100%);
      border-radius: var(--border-radius);
      padding: 2.5rem;
      border: 1px solid rgba(255, 0, 107, 0.3);
      margin: 2rem 0;
    }

    .highlight-box p {
      margin-bottom: 1.5rem;
    }

    .highlight-box p:last-child {
      margin-bottom: 0;
    }

    .provider-list {
      background: rgba(26, 11, 46, 0.6);
      border-radius: var(--border-radius);
      padding: 2.5rem;
      margin: 2rem 0;
    }

    .faq {
      padding: 5rem 0;
      background: linear-gradient(180deg, rgba(26, 11, 46, 0.7) 0%, rgba(10, 6, 21, 1) 100%);
    }

    .accordion-container {
      margin-top: 3rem;
    }

    .accordion-item {
      margin-bottom: 1.5rem;
      background: rgba(45, 27, 78, 0.6);
      border-radius: var(--border-radius);
      border: 1px solid rgba(0, 245, 255, 0.2);
      overflow: hidden;
      transition: var(--transition);
    }

    .accordion-item:hover {
      border-color: var(--primary);
      box-shadow: 0 8px 32px rgba(255, 0, 107, 0.2);
    }

    .accordion-header {
      padding: 1.5rem 2rem;
      margin: 0;
      cursor: pointer;
      font-size: 1.25rem;
      color: var(--white);
      position: relative;
      transition: var(--transition);
    }

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

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

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

    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
      padding: 0 2rem;
    }

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

    @media (max-width: 991px) {
      .feature-grid {
        grid-template-columns: 1fr;
      }

      .slots-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 767px) {
      main {
        padding-top: 140px;
        overflow-x: hidden;
      }

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

      .hero-section .btn {
        margin-top: 1rem !important;
      }

      .hero-section h1 {
        font-size: 2rem;
      }

      .hero-section p {
        font-size: 1.125rem;
      }

      h2 {
        font-size: 1.75rem;
      }

      h3 {
        font-size: 1.5rem;
      }

      p {
        font-size: 1rem;
      }


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

      .card,
      .feature-card,
      .registration-steps,
      .verification-info,
      .game-category,
      .support-methods,
      .support-quality {
        padding: 1.5rem;
      }

      .btn {
        padding: 14px 32px;
        font-size: 1rem;
      }

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

      .accordion-header::after {
        right: 1.5rem;
      }

      .registration-steps img,
      .verification-info img {
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 10px 0;
      }

      .feature-card img {
        height: 180px;
        width: 100%;
        object-fit: cover;
      }

      .slots-grid {
        gap: 1rem;
      }

      .slots-grid img {
        height: 150px;
        width: 100%;
      }

      .game-category > img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 10px 0;
      }
    }