    :root {
      --primary-color: #00D9FF;
      --primary-dark: #00A8CC;
      --secondary-color: #FF3366;
      --accent-color: #FFD700;
      --dark-bg: #0A0E27;
      --darker-bg: #050816;
      --card-bg: #151B3D;
      --text-primary: #FFFFFF;
      --text-secondary: #B8C5D6;
      --gradient-1: linear-gradient(135deg, #00D9FF 0%, #0066FF 100%);
      --gradient-2: linear-gradient(135deg, #FF3366 0%, #FF6B9D 100%);
      --gradient-3: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
      --glow-primary: 0 0 20px rgba(0, 217, 255, 0.5);
      --glow-secondary: 0 0 20px rgba(255, 51, 102, 0.5);
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background-color: var(--darker-bg);
      color: var(--text-primary);
      line-height: 1.7;
      overflow-x: hidden;
    }
    .container {
      max-width: 1400px;
      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(0, 217, 255, 0.1);
      transition: all 0.3s ease;
    }
    header.scrolled {
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }
    header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      gap: 30px;
    }
    .logo a {
      font-size: 28px;
      font-weight: 900;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 2px;
      transition: all 0.3s ease;
    }
    .logo a:hover {
      filter: drop-shadow(var(--glow-primary));
    }
    .hamburger {
      display: none;
      flex-direction: column;
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      z-index: 1001;
    }
    .hamburger span {
      width: 30px;
      height: 3px;
      background: var(--primary-color);
      margin: 4px 0;
      transition: all 0.3s ease;
      border-radius: 3px;
    }
    .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(8px, -8px);
    }
    nav {
      padding-left: 0;
      margin-bottom: 0;
    }
    nav:not(.footer-nav) {
      flex: none;
    }
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 35px;
      align-items: center;
      padding-left: 0;
      margin-bottom: 0;
    }
    .nav-menu a {
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      transition: all 0.3s ease;
      position: relative;
      padding: 5px 0;
    }
    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      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%;
    }
    .cta-button {
      background: var(--gradient-1);
      color: var(--text-primary);
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 15px;
      transition: all 0.3s ease;
      display: inline-block;
      border: 2px solid transparent;
      box-shadow: var(--glow-primary);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
      color: var(--text-primary);
    }

    .btn-primary {
      background: var(--gradient-1);
    }

    main {
      margin-top: 80px;
    }

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

    section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 1600px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.3), transparent);
    }

    h1 {
      font-size: 64px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 30px;
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    h2 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 50px;
      text-align: center;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    h3 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--text-primary);
    }

    h4 {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--primary-color);
    }

    p {
      font-size: 17px;
      color: var(--text-secondary);
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
                  radial-gradient(circle at 80% 80%, rgba(255, 51, 102, 0.1) 0%, transparent 50%);
    }

    .hero-section::before {
      display: none;
    }

    .hero-section .container {
      max-width: 1000px;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .hero-section h1 {
      font-size: 72px;
      animation: fadeInUp 1s ease;
    }

    .hero-section p {
      font-size: 20px;
      max-width: 800px;
      margin: 0 auto 40px;
      animation: fadeInUp 1s ease 0.2s both;
    }

    .hero-section .cta-button {
      animation: fadeInUp 1s ease 0.4s both;
      font-size: 18px;
      padding: 18px 50px;
    }

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

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

    .game-card, .bonus-card, .highlight-box {
      background: var(--card-bg);
      padding: 40px;
      border-radius: 25px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      transition: all 0.4s ease;
      border: 1px solid rgba(0, 217, 255, 0.1);
    }

    .game-card:hover, .bonus-card:hover, .highlight-box:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 30px 80px rgba(0, 217, 255, 0.4);
      border-color: var(--primary-color);
    }

    .game-card img, .bonus-card img, .highlight-box img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 15px;
      margin-bottom: 25px;
    }

    .game-card h4, .bonus-card h3, .highlight-box h3 {
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    .game-card ul, .bonus-card ul, .highlight-box ul {
      list-style: none;
      padding: 0;
    }

    .game-card ul li, .bonus-card ul li, .highlight-box ul li {
      padding: 10px 0;
      padding-left: 25px;
      position: relative;
      color: var(--text-secondary);
    }

    .game-card ul li::before, .bonus-card ul li::before, .highlight-box ul li::before {
      content: '◆';
      position: absolute;
      left: 0;
      color: var(--secondary-color);
    }

    .tab-content > img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 20px;
      margin: 30px 0;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .comparison-table table {
      margin-top: 50px;
    }

    .feature-list ul {
      list-style: none;
      padding: 0;
    }

    .feature-list ul li {
      background: var(--card-bg);
      padding: 25px 30px;
      margin-bottom: 20px;
      border-radius: 15px;
      border-left: 4px solid var(--primary-color);
      transition: all 0.3s ease;
    }

    .feature-list ul li:hover {
      transform: translateX(10px);
      background: rgba(0, 217, 255, 0.05);
      box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
    }

    .accordion-item {
      background: var(--card-bg);
      border-radius: 20px;
      margin-bottom: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }

    .accordion-item:hover {
      box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
    }

    .accordion-header button {
      width: 100%;
      background: none;
      border: none;
      padding: 30px;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--text-primary);
      font-size: 20px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

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

    .accordion-header .icon {
      width: 30px;
      height: 30px;
      position: relative;
      flex-shrink: 0;
    }

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

    .accordion-header .icon::before {
      width: 20px;
      height: 3px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .accordion-header .icon::after {
      width: 3px;
      height: 20px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .accordion-header button[aria-expanded="true"] .icon::after {
      transform: translate(-50%, -50%) rotate(90deg);
      opacity: 0;
    }

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

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

    .cta-section {
      background: var(--gradient-1);
      text-align: center;
      padding: 100px 20px;
      margin: 100px 0;
      border-radius: 30px;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      display: none;
    }

    .cta-section::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

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

    .cta-section h2 {
      color: var(--text-primary);
      background: none;
      -webkit-text-fill-color: var(--text-primary);
      margin-bottom: 20px;
    }

    .cta-section p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 20px;
      margin-bottom: 40px;
    }

    .cta-section .cta-button {
      background: var(--darker-bg);
      color: var(--primary-color);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .cta-section .cta-button:hover {
      background: var(--text-primary);
      color: var(--dark-bg);
    }

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

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-section h3 {
      font-size: 24px;
      margin-bottom: 20px;
      color: var(--primary-color);
    }

    .footer-section p {
      color: var(--text-secondary);
      font-size: 15px;
    }

    .footer-nav h4 {
      font-size: 18px;
      margin-bottom: 15px;
      color: var(--text-primary);
    }

    .footer-nav ul {
      list-style: none;
    }

    .footer-nav ul li {
      margin-bottom: 10px;
    }

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

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

    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-bottom p {
      color: var(--text-secondary);
      font-size: 14px;
      margin-bottom: 10px;
    }

    @media (max-width: 768px) {
      header .container {
        flex-wrap: wrap;
      }

      .hamburger {
        display: flex;
        order: 2;
      }

      .logo {
        order: 1;
      }

      header .cta-button {
        order: 3;
        width: 100%;
        margin-top: 15px;
        text-align: center;
      }

      nav {
        order: 4;
        width: 100%;
      }

      .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        gap: 20px;
        align-items: flex-start;
      }

      .nav-menu.active {
        right: 0;
      }

      h1 {
        font-size: 42px;
      }

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

      h2 {
        font-size: 36px;
      }

      h3 {
        font-size: 26px;
      }

      h4 {
        font-size: 20px;
      }

      p {
        font-size: 16px;
      }

      section {
        padding: 60px 0;
      }

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

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

      .tab-button {
        width: 100%;
      }

      table {
        font-size: 14px;
      }

      thead th, tbody td {
        padding: 12px;
      }

      .timeline-item {
        padding: 30px;
      }

      .feature-item, .game-card, .bonus-card, .highlight-box {
        padding: 30px;
      }

      section.container {
        margin-top: 200px !important;
      }
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 32px;
      }

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

      h2 {
        font-size: 28px;
      }

      .cta-button {
        padding: 12px 24px;
        font-size: 14px;
      }

      table {
        display: block;
        overflow-x: auto;
      }
    }
    img[src*="horizontal"], img[src*="vertical"], img[src*="wide"] {
      margin: 10px auto;
      display: block;
      max-width: 500px;
    }
    @media (max-width: 850px) {
      table {
        overflow: scroll;
        display: block;
      }
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 32px;
      }

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

      h2 {
        font-size: 28px;
      }

      .cta-button {
        padding: 12px 24px;
        font-size: 14px;
      }

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