    :root {
      --primary-color: #FF1744;
      --secondary-color: #00E5FF;
      --accent-color: #FFC400;
      --dark-bg: #0A0E27;
      --card-bg: #151B3D;
      --text-primary: #FFFFFF;
      --text-secondary: #B8C5D6;
      --gradient-1: linear-gradient(135deg, #FF1744 0%, #FF6E40 100%);
      --gradient-2: linear-gradient(135deg, #00E5FF 0%, #00B8D4 100%);
      --gradient-3: linear-gradient(135deg, #FFC400 0%, #FFD740 100%);
      --gradient-hero: linear-gradient(165deg, #0A0E27 0%, #1A1F4D 50%, #0A0E27 100%);
      --shadow-primary: 0 20px 60px rgba(255, 23, 68, 0.4);
      --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
      --shadow-hover: 0 25px 70px rgba(255, 23, 68, 0.6);
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--dark-bg);
      color: var(--text-primary);
      line-height: 1.7;
      overflow-x: hidden;
    }
    .container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 20px;
    }
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 14, 39, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 23, 68, 0.2);
      padding: 15px 0;
      transition: all 0.3s ease;
    }
    header.scrolled {
      padding: 10px 0;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    }
    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }
    .logo a {
      font-size: 24px;
      font-weight: 800;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
      letter-spacing: -0.5px;
      transition: all 0.3s ease;
    }
    .logo a:hover {
      transform: scale(1.05);
    }
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 35px;
      margin: 0;
    }
    .nav-menu a {
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: all 0.3s ease;
      position: relative;
    }
    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-1);
      transition: width 0.3s ease;
    }
    .nav-menu a:hover {
      color: var(--primary-color);
    }
    .nav-menu a:hover::after {
      width: 100%;
    }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
    }
    .hamburger span {
      width: 28px;
      height: 3px;
      background: var(--primary-color);
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
    .cta-button {
      padding: 14px 32px;
      background: var(--gradient-1);
      color: var(--text-primary);
      text-decoration: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 15px;
      transition: all 0.4s ease;
      border: none;
      cursor: pointer;
      box-shadow: var(--shadow-primary);
      display: inline-block;
      text-align: center;
      white-space: nowrap;
    }
    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
      color: var(--text-primary);
    }

    main {
      margin-top: 70px;
    }

    section {
      padding: 100px 0;
      position: relative;
    }

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

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

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
      animation: pulse 8s ease-in-out infinite reverse;
    }

    .text-block {
      background: var(--card-bg);
    }

    .feature-table,
    .payment-table {
      width: 100%;
      margin: 40px 0;
      border-collapse: separate;
      border-spacing: 0;
      background: var(--dark-bg);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }

    .feature-table td,
    .payment-table td,
    .payment-table th {
      padding: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      color: var(--text-secondary);
    }

    .feature-table td:first-child,
    .payment-table th {
      color: var(--text-primary);
      font-weight: 600;
    }

    .payment-table thead {
      background: var(--gradient-1);
    }

    .payment-table th {
      color: var(--text-primary);
      font-weight: 700;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 1px;
    }

    .payment-table tbody tr {
      transition: all 0.3s ease;
    }

    .payment-table tbody tr:hover {
      background: rgba(255, 23, 68, 0.05);
      transform: scale(1.01);
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .card {
      background: var(--card-bg);
      border-radius: 24px;
      padding: 40px;
      box-shadow: var(--shadow-card);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(255, 23, 68, 0.3);
    }

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

    .card h3 {
      margin-bottom: 20px;
      font-size: 24px;
    }

    .card p {
      font-size: 16px;
      line-height: 1.7;
    }

    .section-image,
    .card-icon,
    .game-icon {
      width: 100%;
      height: auto;
      border-radius: 16px;
      margin: 25px 0;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .card-icon,
    .game-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid rgba(255, 23, 68, 0.3);
    }

    .tabs-nav {
      display: flex;
      gap: 10px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

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

    .tab-button:hover {
      border-color: var(--primary-color);
      color: var(--primary-color);
    }

    .tab-button.active {
      background: var(--gradient-1);
      color: var(--text-primary);
      border-color: transparent;
      box-shadow: var(--shadow-primary);
    }

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

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

    footer {
      background: var(--dark-bg);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding: 60px 0 30px;
    }

    .footer-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: center;
      text-align: center;
    }

    .footer-logo p {
      font-size: 24px;
      font-weight: 800;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin: 0;
    }

    .footer-nav ul {
      display: flex;
      gap: 30px;
      list-style: none;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-nav a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-nav a:hover {
      color: var(--primary-color);
    }

    .footer-info {
      color: var(--text-secondary);
      font-size: 14px;
    }

    .footer-info p {
      margin: 5px 0;
      font-size: 14px;
    }

    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .header-container {
        flex-wrap: wrap;
        gap: 10px;
      }

      nav {
        order: 3;
        width: 100%;
        flex: none;
      }

      .nav-menu {
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: var(--card-bg);
        border-radius: 16px;
        margin-top: 15px;
      }

      .nav-menu.active {
        max-height: 500px;
      }

      .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .nav-menu li:last-child {
        border-bottom: none;
      }

      .nav-menu a {
        display: block;
        padding: 18px 25px;
      }

      .nav-menu a::after {
        display: none;
      }

      .header-container > .cta-button {
        order: 2;
        font-size: 14px;
        padding: 12px 24px;
        width: 100%;
      }

      h1 {
        font-size: 36px !important;
      }

      .hero-section h1 {
        font-size: 36px;
      }

      h2 {
        font-size: 32px;
      }

      h3 {
        font-size: 22px;
      }

      section {
        padding: 60px 0;
      }

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

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

      .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

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

      .tab-button {
        width: 100%;
      }

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

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

      .payment-table {
        display: block;
        overflow-x: auto;
      }

      .footer-nav ul {
        flex-direction: column;
        gap: 15px;
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      h1 {
        font-size: 48px !important;
      }

      .hero-section h1 {
        font-size: 48px;
      }

      h2 {
        font-size: 40px;
      }

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

@media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .header-container {
        flex-wrap: wrap;
      }

      nav {
        order: 3;
        width: 100%;
        flex: none;
      }

      .nav-menu {
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: var(--card-bg);
        border-radius: 16px;
        margin-top: 15px;
      }

      .nav-menu.active {
        max-height: 500px;
      }

      .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .nav-menu li:last-child {
        border-bottom: none;
      }

      .nav-menu a {
        display: block;
        padding: 18px 25px;
      }

      .nav-menu a::after {
        display: none;
      }

      .header-container > .cta-button {
        order: 2;
        font-size: 14px;
        padding: 12px 24px;
        width: 100%;
      }

      h1 {
        font-size: 36px !important;
      }

      .hero-section h1 {
        font-size: 36px;
      }

      h2 {
        font-size: 32px;
      }

      h3 {
        font-size: 22px;
      }

      section {
        padding: 60px 0;
      }

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

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

      .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

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

      .tab-button {
        width: 100%;
      }

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

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

      .payment-table {
        display: block;
        overflow-x: auto;
      }

      .footer-nav ul {
        flex-direction: column;
        gap: 15px;
      }
    }