@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700;900&family=Orbitron:wght@400;700;900&display=swap');

/* === BASE STYLES === */
:root {
      --primary: #FF006E;
      --secondary: #3A0CA3;
      --accent: #00F5FF;
      --dark: #0B0518;
      --light: #F7F3FF;
      --gradient-primary: linear-gradient(135deg, #FF006E 0%, #8338EC 100%);
      --gradient-secondary: linear-gradient(135deg, #3A0CA3 0%, #7209B7 100%);
      --gradient-accent: linear-gradient(135deg, #00F5FF 0%, #00C9FF 100%);
      --shadow-sm: 0 4px 12px rgba(255, 0, 110, 0.15);
      --shadow-md: 0 8px 24px rgba(58, 12, 163, 0.2);
      --shadow-lg: 0 16px 48px rgba(11, 5, 24, 0.3);
      --shadow-glow: 0 0 40px rgba(0, 245, 255, 0.4);
      --border-radius: 16px;
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    body {
      font-family: 'Archivo', sans-serif;
      background: linear-gradient(180deg, #0B0518 0%, #1A0B2E 50%, #2E1750 100%);
      color: var(--light);
      line-height: 1.7;
      position: relative;
      min-height: 100vh;
    }

    .page-wrapper {
      width: 100%;
      overflow: hidden;
    }

    .subpage main,
    .subpage section.container,
    .subpage > section {
      padding-top: 140px;
    }

    .subpage section.container {
      padding-top: 140px !important;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                  radial-gradient(circle at 80% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
                  radial-gradient(circle at 40% 20%, rgba(131, 56, 236, 0.1) 0%, transparent 50%);
      pointer-events: none;
      z-index: 1;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Orbitron', sans-serif;
      font-weight: 900;
      line-height: 1.2;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    h1 { font-size: 72px; margin-bottom: 30px; }
    h2 { font-size: 48px; margin-bottom: 25px; }
    h3 { font-size: 32px; margin-bottom: 20px; }
    h4 { font-size: 24px; margin-bottom: 15px; }

    .subpage h1 {
      font-size: 48px;
    }

    p {
      margin-bottom: 20px;
      color: rgba(247, 243, 255, 0.9);
      font-size: 18px;
    }

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

    a:hover {
      color: var(--primary);
      text-shadow: 0 0 20px rgba(255, 0, 110, 0.8);
    }

    .btn {
      display: inline-block;
      padding: 18px 48px;
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      border: none;
      border-radius: var(--border-radius);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      z-index: 1;
      cursor: pointer;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--gradient-accent);
      transform: translateX(-100%);
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: -1;
    }

    .btn:hover::before {
      transform: translateX(0);
    }

    .btn-primary {
      background: var(--gradient-primary);
      color: white;
      box-shadow: var(--shadow-md), var(--shadow-glow);
    }

    .btn-primary:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 0, 110, 0.6);
    }


    .card {
      background: linear-gradient(135deg, rgba(58, 12, 163, 0.2) 0%, rgba(255, 0, 110, 0.1) 100%);
      border: 1px solid rgba(0, 245, 255, 0.3);
      border-radius: var(--border-radius);
      padding: 30px;
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: var(--gradient-accent);
      border-radius: var(--border-radius);
      opacity: 0;
      transition: opacity 0.4s;
      z-index: -1;
    }

    .card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: var(--shadow-lg), var(--shadow-glow);
      border-color: var(--accent);
    }

    .card:hover::before {
      opacity: 0.4;
    }

    /* === LAYOUT STYLES === */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(11, 5, 24, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 245, 255, 0.2);
      z-index: 1000;
      padding: 20px 0;
    }

    .header-content {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 16px;
    }

    .header-bar {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .logo {
      justify-self: start;
    }

    .logo-text {
      font-family: 'Orbitron', sans-serif;
      font-size: 32px;
      font-weight: 900;
      background: var(--gradient-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-transform: uppercase;
      letter-spacing: 3px;
    }

    .main-nav {
      justify-self: center;
      display: flex;
      justify-content: center;
    }

    .hamburger-menu {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 35px;
      height: 25px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 1001;
    }

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

    .hamburger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger-menu[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
      transform: translateX(-20px);
    }

    .hamburger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav-list {
      list-style: none;
      display: flex;
      gap: 22px;
      margin: 0;
      padding: 0;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
      row-gap: 10px;
    }

    .nav-list .nav-break {
      flex-basis: 100%;
      height: 0;
    }

    .header-content > .btn-primary {
      padding: 12px 32px;
      font-size: 14px;
      margin-left: 24px;
      white-space: nowrap;
    }

    .nav-list li a {
      color: var(--light);
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
    }

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

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

    .site-footer {
      background: linear-gradient(180deg, rgba(11, 5, 24, 0.95) 0%, #0B0518 100%);
      border-top: 1px solid rgba(0, 245, 255, 0.2);
      padding: 60px 0 30px;
      margin-top: 120px;
      position: relative;
      z-index: 2;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      gap: 30px;
      margin: 0;
      padding: 0;
    }

    .footer-links a {
      color: rgba(247, 243, 255, 0.8);
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-info p {
      color: rgba(247, 243, 255, 0.6);
      font-size: 14px;
      margin: 0;
    }

    @media (max-width: 1024px) {
      .nav-list {
        gap: 25px;
      }

      .nav-list li a {
        font-size: 14px;
      }
    }

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

      .logo-text {
        font-size: 26px;
      }

      .header-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: relative;
      }

      .header-bar {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      .hamburger-menu {
        display: flex;
        margin-left: 0;
      }

      .main-nav {
        width: 100%;
        margin-top: 20px;
        margin-left: 0;
      }

      .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100vh;
        background: linear-gradient(180deg, #1A0B2E 0%, #0B0518 100%);
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.4s;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
        text-align: left;
      }

      .nav-list li {
        width: 100%;
      }

      .nav-list li a {
        display: block;
        width: 100%;
        padding: 10px 0;
      }

      .nav-list.active {
        transform: translateX(0);
      }

      .nav-list .nav-break {
        display: none;
      }

      .header-content > .btn-primary {
        width: 100%;
        margin: 0 0 16px;
        text-align: center;
      }

      .footer-content {
        flex-direction: column;
        text-align: center;
      }

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

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

      h1 { font-size: 36px; }
      h2 { font-size: 32px; }
      h3 { font-size: 24px; }
      h4 { font-size: 20px; }

      .subpage h1 {
        font-size: 32px;
      }
      
      p { font-size: 16px; }
      
      .hero-section {
        padding: 60px 0;
      }
      
      .hero-section p {
        font-size: 18px;
      }
      
      section {
        padding: 50px 0;
      }

      .subpage main,
      .subpage section.container,
      .subpage > section {
        padding-top: 160px;
      }

      .subpage section.container {
        padding-top: 160px !important;
      }
      
      .btn {
        padding: 15px 35px;
        font-size: 16px;
      }
      
      .feature-table th, .feature-table td,
      .payment-table th, .payment-table td {
        padding: 12px 15px;
        font-size: 14px;
      }
      
      .cards-grid .slots-categories {
        grid-template-columns: 1fr;
      }
      
      .accordion-header {
        font-size: 18px;
        padding: 20px;
      }
    }