    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { background: #080d14; color: #c8dce8; font-family: 'Inter', sans-serif; overflow-x: hidden; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 60px;
      background: rgba(10,14,22,0.95);
      border-bottom: 1px solid rgba(0,210,255,0.08);
      backdrop-filter: blur(12px);
    }
    .nav-brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
    .nav-brand img { width: 28px; height: 28px; border-radius: 6px; }
    .nav-brand span { font-size: 17px; font-weight: 700; color: #00d2ff; letter-spacing: -0.3px; }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a { color: #6a8ea8; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.15s; }
    .nav-links a:hover { color: #c8dce8; }
    .nav-discord {
      background: #00d2ff; color: #080d14;
      padding: 8px 18px; border-radius: 8px;
      font-size: 14px; font-weight: 600; text-decoration: none;
      transition: background 0.15s;
    }
    .nav-discord:hover { background: #33ddff; }

    /* HERO */
    .hero {
      min-height: 100vh; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 80px 24px 60px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 50% 40%, rgba(0,100,180,0.13) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 30% 70%, rgba(0,210,255,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 70% 20%, rgba(57,255,110,0.05) 0%, transparent 60%);
    }
    /* subtle floating dots */
    .hero-dots {
      position: absolute; inset: 0; pointer-events: none;
      background-image: radial-gradient(circle, rgba(0,210,255,0.15) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }
    .hero-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,210,255,0.08); border: 1px solid rgba(0,210,255,0.2);
      color: #00d2ff; padding: 6px 14px; border-radius: 999px;
      font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
      margin-bottom: 28px; position: relative;
    }
    .pill-dot { width: 6px; height: 6px; background: #39ff6e; border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
    .hero h1 {
      font-size: clamp(56px, 9vw, 100px); font-weight: 800;
      color: #e8f4ff; line-height: 1; letter-spacing: -3px;
      position: relative; margin-bottom: 24px;
    }
    .hero h1 .accent { color: #00d2ff; }
    .hero-sub {
      font-size: 17px; color: #4a6a80; max-width: 500px;
      line-height: 1.65; margin-bottom: 40px; position: relative;
    }
    .hero-sub strong { color: #c8dce8; font-weight: 600; }
    .hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: #00d2ff; color: #080d14;
      padding: 13px 26px; border-radius: 10px;
      font-size: 15px; font-weight: 700; text-decoration: none;
      transition: all 0.15s;
    }
    .btn-primary:hover { background: #33ddff; transform: translateY(-1px); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
      color: #c8dce8; padding: 13px 26px; border-radius: 10px;
      font-size: 15px; font-weight: 600; text-decoration: none;
      transition: all 0.15s;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
    .hero-discord-link {
      display: flex; align-items: center; gap: 7px; margin-top: 20px;
      color: #4a6a80; text-decoration: none; font-size: 14px;
      transition: color 0.15s; position: relative;
    }
    .hero-discord-link:hover { color: #c8dce8; }
    .scroll-hint {
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      color: #2a4a5a; font-size: 20px; animation: bob 2s ease-in-out infinite;
    }
    @keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

    /* STATS */
    .statsbar {
      background: #0a0f18; border-top: 1px solid rgba(0,210,255,0.07);
      border-bottom: 1px solid rgba(0,210,255,0.07);
    }
    .stats-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
    .stat { text-align: center; padding: 32px 16px; border-right: 1px solid rgba(0,210,255,0.06); }
    .stat:last-child { border-right: none; }
    .stat-n { font-size: 36px; font-weight: 800; color: #00d2ff; letter-spacing: -1px; line-height: 1; }
    .stat-l { font-size: 12px; color: #2a4a5a; margin-top: 4px; font-weight: 500; letter-spacing: 0.3px; }

    /* SECTIONS */
    .section { padding: 90px 24px; }
    .sec-wrap { max-width: 1000px; margin: 0 auto; }
    .sec-head { text-align: center; margin-bottom: 52px; }
    .sec-head h2 { font-size: clamp(30px, 5vw, 48px); font-weight: 800; color: #00d2ff; letter-spacing: -1px; margin-bottom: 12px; }
    .sec-head p { font-size: 15px; color: #4a6a80; max-width: 480px; margin: 0 auto; line-height: 1.65; }

    /* FEATURES */
    .features { background: #080d14; }
    .feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
    .feat-card {
      background: #0d1520; border: 1px solid rgba(0,210,255,0.08);
      border-radius: 14px; padding: 28px 24px;
      transition: border-color 0.2s, background 0.2s;
    }
    .feat-card:hover { border-color: rgba(0,210,255,0.2); background: #101b28; }
    .feat-icon { font-size: 26px; margin-bottom: 14px; }
    .feat-card h3 { font-size: 16px; font-weight: 700; color: #d8eef8; margin-bottom: 8px; }
    .feat-card p { font-size: 13px; color: #3a5a70; line-height: 1.65; }

    /* DOWNLOADS */
    .downloads { background: #0a0f18; }
    .dl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
    .dl-card {
      background: #0d1520; border: 1px solid rgba(0,210,255,0.1);
      border-radius: 16px; padding: 32px 28px;
      transition: border-color 0.2s;
    }
    .dl-card:hover { border-color: rgba(0,210,255,0.25); }
    .dl-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
    .dl-card-icon { font-size: 28px; }
    .dl-card-name { font-size: 20px; font-weight: 700; color: #d8eef8; }
    .dl-meta { display: flex; gap: 10px; margin-bottom: 16px; }
    .dl-ver { font-size: 12px; font-weight: 600; color: #00d2ff; }
    .dl-size { font-size: 12px; color: #2a4a5a; }
    .dl-card p { font-size: 14px; color: #3a5a70; line-height: 1.6; margin-bottom: 24px; }
    .dl-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: #00d2ff; color: #080d14;
      padding: 11px 22px; border-radius: 9px;
      font-size: 14px; font-weight: 700; text-decoration: none;
      transition: background 0.15s;
    }
    .dl-btn:hover { background: #33ddff; }

    /* FAQ */
    .faq-sec { background: #080d14; }
    .faq-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; }
    .faq-tab {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 8px 18px; border-radius: 8px; font-size: 14px; font-weight: 600;
      cursor: pointer; border: 1px solid rgba(0,210,255,0.15);
      background: transparent; color: #4a6a80; transition: all 0.15s;
    }
    .faq-tab.active { background: #00d2ff; color: #080d14; border-color: #00d2ff; }
    .faq-tab:hover:not(.active) { color: #c8dce8; border-color: rgba(0,210,255,0.3); }
    .faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
    .faq-item {
      background: #0d1520; border: 1px solid rgba(0,210,255,0.08);
      border-radius: 10px; margin-bottom: 8px; overflow: hidden;
    }
    .faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      padding: 18px 22px; color: #c8dce8; font-size: 15px; font-weight: 500;
      text-align: left; font-family: 'Inter', sans-serif; transition: color 0.15s;
    }
    .faq-q:hover { color: #fff; }
    .faq-chev { color: #00d2ff; font-size: 18px; transition: transform 0.2s; flex-shrink: 0; }
    .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .faq-body-inner { padding: 0 22px 18px; font-size: 14px; color: #3a5a70; line-height: 1.7; border-top: 1px solid rgba(0,210,255,0.06); padding-top: 14px; }
    .faq-item.open .faq-chev { transform: rotate(180deg); }
    .faq-item.open .faq-body { max-height: 200px; }

    /* FOOTER */
    footer { background: #070c13; border-top: 1px solid rgba(0,210,255,0.07); padding: 56px 24px 32px; }
    .foot-wrap { max-width: 1000px; margin: 0 auto; }
    .foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(0,210,255,0.06); }
    .foot-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
    .foot-brand img { width: 26px; height: 26px; border-radius: 5px; }
    .foot-brand span { font-size: 16px; font-weight: 700; color: #00d2ff; }
    .foot-desc { font-size: 13px; color: #2a4a5a; line-height: 1.7; max-width: 220px; }
    .foot-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #1a3a4a; margin-bottom: 14px; }
    .foot-col a { display: block; color: #2a4a5a; text-decoration: none; font-size: 14px; margin-bottom: 9px; transition: color 0.15s; }
    .foot-col a:hover { color: #00d2ff; }
    .soc-link { display: flex; align-items: center; gap: 8px; color: #2a4a5a; text-decoration: none; font-size: 14px; margin-bottom: 9px; transition: color 0.15s; }
    .soc-link:hover { color: #00d2ff; }
    .soc-link span { font-size: 15px; }
    .foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 10px; }
    .foot-copy { font-size: 12px; color: #1a3a4a; }
    .foot-live { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #1a3a4a; }
    .live-dot { width: 5px; height: 5px; background: #39ff6e; border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }

    /* PACKS */
    .packs-sec { background: #0a0f18; }
    .packs-banner {
      background: linear-gradient(135deg, rgba(0,210,255,0.1), rgba(57,255,110,0.08));
      border: 1px solid rgba(0,210,255,0.2); border-radius: 12px;
      padding: 16px 24px; margin-bottom: 48px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .packs-banner-left { display: flex; align-items: center; gap: 10px; }
    .packs-banner-left span { font-size: 20px; }
    .packs-banner p { font-size: 14px; color: #c8dce8; font-weight: 500; }
    .packs-banner p strong { color: #00d2ff; }
    .packs-banner-code {
      background: rgba(0,210,255,0.1); border: 1px solid rgba(0,210,255,0.25);
      color: #00d2ff; padding: 6px 14px; border-radius: 7px;
      font-size: 13px; font-weight: 700; letter-spacing: 1px; font-family: monospace;
    }
    .packs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
    .pack-card {
      background: #0d1520; border: 1px solid rgba(0,210,255,0.08);
      border-radius: 16px; overflow: hidden;
      transition: border-color 0.2s, transform 0.2s;
      display: flex; flex-direction: column;
    }
    .pack-card:hover { border-color: rgba(0,210,255,0.25); transform: translateY(-3px); }
    .pack-card.best {
      border-color: rgba(0,210,255,0.3);
      background: linear-gradient(180deg, #0f1e2e 0%, #0d1520 100%);
    }
    .pack-img-wrap { position: relative; background: linear-gradient(135deg, #0a1828, #0d2035); height: 160px; display: flex; align-items: center; justify-content: center; }
    .pack-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .pack-img-emoji { font-size: 72px; line-height: 1; }
    .pack-best-badge {
      position: absolute; top: 12px; right: 12px;
      background: #00d2ff; color: #080d14;
      font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
      padding: 4px 10px; border-radius: 6px; display: flex; align-items: center; gap: 4px;
    }
    .pack-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
    .pack-name { font-size: 18px; font-weight: 700; color: #d8eef8; margin-bottom: 4px; }
    .pack-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
    .pack-price { font-size: 26px; font-weight: 800; color: #00d2ff; letter-spacing: -0.5px; }
    .pack-price-orig { font-size: 14px; color: #2a4a5a; text-decoration: line-through; }
    .pack-currency { font-size: 12px; color: #2a4a5a; font-weight: 500; }
    .pack-desc { font-size: 13px; color: #3a5a70; line-height: 1.6; margin-bottom: 14px; }
    .pack-features { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; flex: 1; }
    .pack-features li { font-size: 13px; color: #5a7a90; display: flex; align-items: center; gap: 7px; }
    .pack-features li::before { content: '✓'; color: #00d2ff; font-weight: 700; font-size: 12px; flex-shrink: 0; }
    .pack-buy {
      display: flex; align-items: center; justify-content: center; gap: 7px;
      background: #00d2ff; color: #080d14;
      padding: 11px 20px; border-radius: 9px;
      font-size: 14px; font-weight: 700; text-decoration: none;
      transition: background 0.15s; margin-top: auto;
    }
    .pack-buy:hover { background: #33ddff; }
    .packs-payment { margin-top: 32px; text-align: center; }
    .packs-payment p { font-size: 13px; color: #2a4a5a; }
    .packs-payment a { color: #00d2ff; text-decoration: none; }
    .packs-payment a:hover { text-decoration: underline; }

    /* HERO SOCIALS */
    .hero-socials { display: flex; gap: 12px; margin-top: 20px; position: relative; }
    .hero-soc-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: #4a6a80; text-decoration: none; transition: all 0.15s;
    }
    .hero-soc-icon:hover { color: #00d2ff; border-color: rgba(0,210,255,0.4); background: rgba(0,210,255,0.08); }

    /* FOOTER SOC ICONS */
    .foot-soc-row { display: flex; gap: 10px; margin-top: 4px; }
    .foot-soc-icon {
      width: 36px; height: 36px; border-radius: 8px;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(0,210,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: #2a4a5a; text-decoration: none; transition: all 0.15s;
    }
    .foot-soc-icon:hover { color: #00d2ff; border-color: rgba(0,210,255,0.35); background: rgba(0,210,255,0.06); }
