/* === BASE STYLES === */:root {
      --primary: #FF006E;
      --secondary: #8338EC;
      --accent: #3A86FF;
      --dark: #0A0E27;
      --darker: #060818;
      --light: #F7F7FF;
      --success: #06FFB4;
      --warning: #FFB700;
      --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
      --gradient-accent: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%);
      --shadow-sm: 0 4px 6px rgba(131, 56, 236, 0.1);
      --shadow-md: 0 10px 30px rgba(131, 56, 236, 0.15);
      --shadow-lg: 0 20px 60px rgba(131, 56, 236, 0.25);
      --shadow-glow: 0 0 40px rgba(255, 0, 110, 0.3);
      --radius: 16px;
      --radius-lg: 24px;
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--light);
      background: var(--darker);
      overflow-x: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    h1 {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      color: var(--light);
      position: relative;
      padding-bottom: 1rem;
      margin-bottom: 2rem;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 4px;
      background: var(--gradient-accent);
      border-radius: 2px;
    }

    h3 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      color: var(--light);
    }

    p {
      margin-bottom: 1rem;
      color: rgba(247, 247, 255, 0.85);
      font-size: 1.1rem;
      line-height: 1.8;
    }

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

    a:hover {
      color: var(--primary);
      text-decoration: none;
    }

    .btn-primary {
      display: inline-block;
      padding: 16px 40px;
      background: var(--gradient-primary);
      color: white;
      font-weight: 600;
      font-size: 1.1rem;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: var(--shadow-md);
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
    }

    .btn-primary::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: left 0.6s;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg), var(--shadow-glow);
      color: white;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .card {
      background: linear-gradient(145deg, rgba(131, 56, 236, 0.1), rgba(255, 0, 110, 0.05));
      border: 1px solid rgba(131, 56, 236, 0.2);
      border-radius: var(--radius-lg);
      padding: 2rem;
      transition: var(--transition);
      backdrop-filter: blur(10px);
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary);
      background: linear-gradient(145deg, rgba(131, 56, 236, 0.15), rgba(255, 0, 110, 0.1));
    }

    /* === LAYOUT STYLES === */
    .site-header {
      background: rgba(10, 14, 39, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(131, 56, 236, 0.2);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 1rem 0;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 0;
    }

    .logo {
      flex-shrink: 0;
    }

    .logo img {
      max-width: 180px;
      height: auto;
      display: block;
    }

    .logo-text {
      font-size: 1.8rem;
      font-weight: 900;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .main-nav {
      display: flex;
      align-items: center;
    }

    .hamburger-menu {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 24px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .hamburger-menu span {
      display: block;
      width: 100%;
      height: 3px;
      background: var(--light);
      border-radius: 2px;
      transition: var(--transition);
    }

    .hamburger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger-menu.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav-list {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 2rem;
    }

    .nav-list a {
      color: var(--light);
      font-weight: 500;
      position: relative;
      padding: 0.5rem 0;
      font-size: 1.05rem;
    }

    .nav-list a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-accent);
      transition: width 0.3s;
    }

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

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

    .site-footer {
      background: var(--gradient-dark);
      border-top: 1px solid rgba(131, 56, 236, 0.2);
      padding: 3rem 0 2rem;
      margin-top: 5rem;
    }

    .footer-content {
      text-align: center;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      list-style: none;
      margin-bottom: 2rem;
      padding: 0;
    }

    .footer-links a {
      color: rgba(247, 247, 255, 0.7);
      font-size: 1rem;
    }

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

    .footer-text {
      color: rgba(247, 247, 255, 0.5);
      font-size: 0.95rem;
      margin: 0;
    }

    @media (max-width: 767px) {
      .site-header {
        padding: 0.75rem 0 0;
      }

      .header-content {
        flex-wrap: wrap;
        position: relative;
      }

      .logo {
        order: 1;
      }

      .main-nav {
        order: 2;
        margin-left: auto;
      }

      .hamburger-menu {
        display: flex;
      }

      .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 2rem;
        margin-top: 1rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
      }

      .nav-list.active {
        display: flex;
      }

      .header-content > .btn-primary {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        text-align: center;
      }

      .footer-links {
        flex-direction: column;
        gap: 1rem;
      }
    }

@media (max-width: 767px) {
      .site-header {
        padding: 0.75rem 0 0;
      }

      .header-content {
        flex-wrap: wrap;
        position: relative;
      }

      .logo {
        order: 1;
      }

      .main-nav {
        order: 2;
        margin-left: auto;
      }

      .hamburger-menu {
        display: flex;
      }

      .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 2rem;
        margin-top: 1rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
      }

      .nav-list.active {
        display: flex;
      }

      .header-content > .btn-primary {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        text-align: center;
      }

      .footer-links {
        flex-direction: column;
        gap: 1rem;
      }
    }

@media (max-width: 767px) {
      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.75rem;
      }

      h3 {
        font-size: 1.35rem;
      }

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

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

      .game-categories {
        grid-template-columns: 1fr;
      }

      .strategy-list li {
        padding-left: 3rem;
      }

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

      .payment-table {
        font-size: 0.9rem;
      }

      .payment-table th,
      .payment-table td {
        padding: 0.75rem;
      }
    }