    :root {
      --color-primary: #FF1744;
      --color-secondary: #00E5FF;
      --color-accent: #FFC400;
      --color-dark: #0A0E27;
      --color-dark-alt: #151B3D;
      --color-card-bg: #1A2142;
      --color-text: #FFFFFF;
      --color-text-muted: #B0B8D4;
      --gradient-primary: linear-gradient(135deg, #FF1744 0%, #F50057 100%);
      --gradient-secondary: linear-gradient(135deg, #00E5FF 0%, #00B8D4 100%);
      --gradient-accent: linear-gradient(135deg, #FFC400 0%, #FFB300 100%);
      --gradient-hero: linear-gradient(135deg, rgba(255, 23, 68, 0.15) 0%, rgba(0, 229, 255, 0.15) 100%);
      --shadow-sm: 0 2px 8px rgba(255, 23, 68, 0.15);
      --shadow-md: 0 8px 24px rgba(255, 23, 68, 0.25);
      --shadow-lg: 0 16px 48px rgba(255, 23, 68, 0.35);
      --shadow-glow: 0 0 30px rgba(255, 23, 68, 0.5);
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      --border-radius: 16px;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: var(--color-dark);
      color: var(--color-text);
      line-height: 1.7;
      overflow-x: hidden;
    }
    .container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    h1, h2, h3, h4 {
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: clamp(36px, 5vw, 72px);
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 24px;
    }

    h2 {
      font-size: clamp(32px, 4vw, 56px);
      margin-bottom: 20px;
      color: var(--color-text);
    }

    h3 {
      font-size: clamp(24px, 3vw, 36px);
      margin-bottom: 16px;
      color: var(--color-text);
    }

    h4 {
      font-size: clamp(18px, 2vw, 24px);
      margin-bottom: 12px;
      color: var(--color-secondary);
    }

    p {
      font-size: 17px;
      color: var(--color-text-muted);
      margin-bottom: 16px;
    }

    a {
      text-decoration: none;
      transition: var(--transition);
    }

    .site-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: 16px 0;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .logo a {
      font-size: 28px;
      font-weight: 900;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.03em;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }

    .hamburger span {
      width: 28px;
      height: 3px;
      background: var(--color-primary);
      border-radius: 2px;
      transition: var(--transition);
    }

    .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-menu {
      display: flex;
      list-style: none;
      gap: 32px;
      align-items: center;
      margin: 0;
      padding-left: 0;
      margin-bottom: 0;
      flex: none;
    }

    .nav-menu a {
      color: var(--color-text-muted);
      font-weight: 600;
      font-size: 15px;
      position: relative;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: var(--transition);
    }

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

    .nav-menu a:hover::after {
      width: 100%;
    }

    .cta-button {
      display: inline-block;
      padding: 14px 32px;
      background: var(--gradient-primary);
      color: var(--color-text);
      font-weight: 700;
      font-size: 16px;
      border-radius: 50px;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
      transition: var(--transition);
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: var(--transition);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-glow);
      color: var(--color-text);
    }

    .cta-button:hover::before {
      left: 100%;
    }

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

    main {
      padding-top: 80px;
    }

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

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

    section:first-of-type::before {
      display: none;
    }

    .hero-section {
      min-height: 85vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: var(--color-dark);
    }

    .hero-section::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 30%, rgba(255, 23, 68, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.15) 0%, transparent 50%);
      pointer-events: none;
    }

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

    .hero-section p {
      font-size: 19px;
      margin-bottom: 40px;
      color: var(--color-text-muted);
      line-height: 1.8;
    }

    .info-table,
    .payment-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      margin: 40px 0;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .info-table thead,
    .payment-table thead {
      background: var(--gradient-primary);
    }

    .info-table th,
    .payment-table th {
      padding: 20px;
      text-align: left;
      font-weight: 700;
      font-size: 16px;
      color: var(--color-text);
    }

    .info-table td,
    .payment-table td {
      padding: 20px;
      background: var(--color-card-bg);
      border-bottom: 1px solid rgba(255, 23, 68, 0.1);
      color: var(--color-text-muted);
      font-size: 15px;
    }

    .info-table tr:last-child td,
    .payment-table tr:last-child td {
      border-bottom: none;
    }

    .info-table tr:hover td,
    .payment-table tr:hover td {
      background: var(--color-dark-alt);
    }

    .timeline-item {
      margin-bottom: 60px;
      padding-left: 40px;
      border-left: 3px solid var(--color-primary);
      position: relative;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -9px;
      top: 0;
      width: 15px;
      height: 15px;
      background: var(--gradient-primary);
      border-radius: 50%;
      box-shadow: var(--shadow-glow);
    }

    .timeline-item h3 {
      color: var(--color-secondary);
      margin-bottom: 20px;
    }

    .timeline-item ul {
      list-style: none;
      padding-left: 0;
    }

    .timeline-item li {
      padding-left: 28px;
      position: relative;
      margin-bottom: 12px;
      color: var(--color-text-muted);
    }

    .timeline-item li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 8px;
      height: 8px;
      background: var(--color-accent);
      border-radius: 50%;
    }

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

    .card {
      background: var(--color-card-bg);
      border-radius: var(--border-radius);
      padding: 32px;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      border: 1px solid rgba(255, 23, 68, 0.2);
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-glow);
      border-color: var(--color-primary);
    }

    .card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 24px;
    }

    .card h3 {
      font-size: 24px;
      margin-bottom: 16px;
      color: var(--color-secondary);
    }

    .card p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--color-text-muted);
    }

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

    .tab-btn {
      padding: 14px 28px;
      background: var(--color-card-bg);
      border: 2px solid rgba(255, 23, 68, 0.2);
      border-radius: 50px;
      color: var(--color-text-muted);
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      transition: var(--transition);
    }

    .tab-btn.active,
    .tab-btn:hover {
      background: var(--gradient-primary);
      border-color: var(--color-primary);
      color: var(--color-text);
      box-shadow: var(--shadow-glow);
    }

    .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);
      }
    }

    .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
      margin: 40px 0;
    }

    .game-card {
      background: var(--color-card-bg);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      border: 1px solid rgba(0, 229, 255, 0.2);
    }

    .game-card:hover {
      transform: scale(1.05);
      box-shadow: var(--shadow-glow);
      border-color: var(--color-secondary);
    }

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

    .game-card h4 {
      padding: 16px 20px 8px;
      font-size: 18px;
      color: var(--color-accent);
    }

    .game-card p {
      padding: 0 20px 20px;
      font-size: 14px;
      color: var(--color-text-muted);
    }

    .highlight-item {
      margin-bottom: 48px;
      padding: 32px;
      background: var(--color-card-bg);
      border-radius: var(--border-radius);
      border-left: 4px solid var(--color-accent);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .highlight-item:hover {
      box-shadow: var(--shadow-md);
      transform: translateX(8px);
    }

    .highlight-item h3 {
      color: var(--color-accent);
      margin-bottom: 16px;
    }

    .accordion-item {
      background: var(--color-card-bg);
      border-radius: var(--border-radius);
      margin-bottom: 20px;
      overflow: hidden;
      border: 1px solid rgba(255, 23, 68, 0.2);
      transition: var(--transition);
    }

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

    .accordion-header button {
      width: 100%;
      padding: 24px 32px;
      background: none;
      border: none;
      text-align: left;
      font-size: 20px;
      font-weight: 700;
      color: var(--color-text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: var(--transition);
    }

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

    .accordion-header .icon {
      width: 24px;
      height: 24px;
      position: relative;
      transition: var(--transition);
    }

    .accordion-header .icon::before,
    .accordion-header .icon::after {
      content: '';
      position: absolute;
      background: var(--color-primary);
      border-radius: 2px;
      transition: var(--transition);
    }

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

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

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

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

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

    .cta-section {
      text-align: center;
      background: var(--gradient-hero);
      border-radius: var(--border-radius);
      padding: 80px 40px;
      margin: 60px 0;
    }

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

    .cta-section p {
      font-size: 19px;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .site-footer {
      background: var(--color-dark-alt);
      border-top: 1px solid rgba(255, 23, 68, 0.2);
      padding: 60px 0 40px;
    }

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

    .footer-section h3,
    .footer-nav h4 {
      font-size: 20px;
      margin-bottom: 20px;
      color: var(--color-secondary);
    }

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

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

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

    .footer-nav a {
      color: var(--color-text-muted);
      font-size: 15px;
      transition: var(--transition);
    }

    .footer-nav a:hover {
      color: var(--color-primary);
      padding-left: 8px;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 23, 68, 0.1);
    }

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

    @media (max-width: 992px) {
      .header-content {
        justify-content: space-between;
        position: relative;
      }

      .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        align-items: flex-start;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
      }

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

      .hamburger {
        display: flex;
        margin-left: auto;
        order: 3;
      }

      .logo {
        order: 1;
        flex-shrink: 0;
      }

      .main-nav {
        order: 2;
        flex: 0 0 0;
        width: 0;
        overflow: visible;
      }

      .header-content .cta-button {
        display: none;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 60px 0;
      }

      h1 {
        font-size: 36px;
      }

      h2 {
        font-size: 32px;
      }

      h3 {
        font-size: 24px;
      }

      .hero-section {
        min-height: 70vh;
      }

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

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

      .tab-btn {
        width: 100%;
      }

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

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

      .timeline-item {
        padding-left: 24px;
      }

      .highlight-item {
        padding: 24px;
      }

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

      .cta-section {
        padding: 60px 24px;
      }
    }

    @media (max-width: 576px) {
      .container {
        padding: 0 16px;
      }

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

      .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    img[src*="horizontal"], img[src*="vertical"], img[src*="wide"] {
      margin: 10px auto;
      display: block;
      max-width: 500px;
    }