/* === BASE STYLES === */:root {
      --primary: #FF006E;
      --secondary: #FB5607;
      --accent: #FFBE0B;
      --dark: #0A0E27;
      --darker: #050714;
      --light: #F7F7FF;
      --success: #06FFA5;
      --danger: #FF1654;
      --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 2px 8px rgba(255, 0, 110, 0.1);
      --shadow-md: 0 8px 24px rgba(255, 0, 110, 0.15);
      --shadow-lg: 0 16px 48px rgba(255, 0, 110, 0.2);
      --shadow-glow: 0 0 40px rgba(255, 0, 110, 0.4);
      --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-display: 'Poppins', var(--font-primary);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

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

    html {
      width: 100%;
      overflow-x: hidden;
      overflow-y: auto;
    }

    body {
      font-family: var(--font-primary);
      background: var(--darker);
      color: var(--light);
      line-height: 1.6;
      overflow-x: hidden;
      overflow-y: auto;
      width: 100%;
      position: relative;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
      box-sizing: border-box;
    }

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

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1rem;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    h1 {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
    }

    section.container h1 {
      margin-top: 120px;
      font-size: clamp(2rem, 4vw, 3rem);
    }

    section.container h2 {
      font-size: clamp(1.5rem, 3vw, 2.5rem);
    }

    @media (max-width: 767px) {
      section.container h1 {
        margin-top: 0;
      }
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      margin: 2rem 0;
    }

    h3 {
      font-size: clamp(1.5rem, 3vw, 2.5rem);
    }

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

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

    a:hover {
      color: var(--secondary);
    }

    .btn-primary, .btn-secondary {
      display: inline-block;
      padding: 16px 36px;
      font-weight: 700;
      font-size: 1.1rem;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

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

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

    .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::before {
      left: 100%;
    }

    .btn-secondary {
      background: transparent;
      color: var(--accent);
      border: 2px solid var(--accent);
    }

    .btn-secondary:hover {
      background: var(--accent);
      color: var(--dark);
      transform: scale(1.05);
      box-shadow: var(--shadow-md);
    }

    .card {
      background: linear-gradient(145deg, rgba(255, 0, 110, 0.05), rgba(251, 86, 7, 0.05));
      border: 1px solid rgba(255, 190, 11, 0.2);
      border-radius: 20px;
      padding: 30px;
      transition: var(--transition);
      backdrop-filter: blur(10px);
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: var(--accent);
    }

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

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

    .header-content > .btn-primary {
      white-space: nowrap;
      flex-shrink: 0;
    }

    .logo {
      flex-shrink: 0;
    }

    .logo-link {
      text-decoration: none;
      display: inline-block;
      transition: var(--transition);
    }

    .logo-link:hover {
      transform: scale(1.05);
    }

    .logo-link:hover .logo-text {
      background: var(--gradient-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .logo-text {
      font-family: var(--font-display);
      font-size: 2rem;
      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 {
      flex-grow: 1;
      display: flex;
      justify-content: center;
      margin-left: 40px;
      margin-right: 40px;
    }

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

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

    .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: 15px;
    }

    .nav-list a {
      color: var(--light);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
      padding: 8px 16px;
      border-radius: 25px;
      transition: var(--transition);
      white-space: nowrap;
    }

    .nav-list a:hover {
      background: rgba(255, 190, 11, 0.1);
      color: var(--accent);
    }

    .site-footer {
      background: var(--darker);
      border-top: 1px solid rgba(255, 190, 11, 0.2);
      padding: 40px 0;
      margin-top: 100px;
    }

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

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 40px;
      list-style: none;
      margin: 0;
      padding: 0;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: rgba(247, 247, 255, 0.6);
      font-size: 0.95rem;
      transition: var(--transition);
    }

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

    @media (max-width: 767px) {
      .site-header {
        position: relative;
        width: 100%;
        max-width: 100%;
      }

      .header-content {
        flex-wrap: wrap;
        padding: 15px 20px;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }

      .logo {
        order: 1;
      }

      .hamburger-menu {
        display: flex;
        order: 2;
        margin-left: auto;
        flex-shrink: 0;
      }

      .main-nav {
        order: 4;
        width: 100%;
        margin-top: 15px;
        margin-left: 0;
        margin-right: 0;
        display: none;
      }

      .main-nav.active {
        display: block;
      }

      .nav-list {
        flex-direction: column;
        gap: 10px;
      }

      .nav-list a {
        display: block;
        padding: 12px 20px;
        background: rgba(255, 0, 110, 0.05);
        border-radius: 10px;
      }

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

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