/* ============================================================
   VenomScript — Minimal Dark Premium
   Inspired by BraveAimers aesthetic
   ============================================================ */

:root {
  --bg:       #0a0a0a;
  --bg-2:     #111111;
  --bg-3:     #181818;
  --white:    #ffffff;
  --off:      #888888;
  --dim:      #333333;
  --border:   rgba(255,255,255,0.08);
  --radius:   12px;
  --font:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ============================================================
   UTILS
   ============================================================ */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 720px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
}

.section-head {
  margin-bottom: 56px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  font-family: var(--font);
}
.btn--primary {
  background: var(--white);
  color: #000;
}
.btn--primary:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--off);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}
.btn--buy {
  background: var(--white);
  color: #000;
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 16px;
  border-radius: 8px;
}
.btn--buy:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.nav__inner {
  max-width: 1080px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav__logo span { color: var(--off); }
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--off);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: 760px;
  text-align: center;
}
.hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off);
  margin-bottom: 32px;
}
.hero__title {
  font-size: clamp(56px, 10vw, 112px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero__title span { color: var(--off); }
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--off);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 48px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  flex-wrap: wrap;
}
.hero__stat {
  padding: 20px 40px;
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.hero__stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 4px;
}
.hero__stat span {
  font-size: 11px;
  color: var(--off);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   BAND
   ============================================================ */
.band {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: var(--bg-2);
}
.band__track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: band-scroll 22s linear infinite;
  white-space: nowrap;
}
.band__track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off);
  flex-shrink: 0;
}
.band__dot {
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  background: var(--dim) !important;
  flex-shrink: 0;
  letter-spacing: 0 !important;
}
@keyframes band-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SCRIPTS / CARDS
   ============================================================ */
.scripts {
  padding: 120px 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--white);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  cursor: pointer;
}
.card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.card--soon {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.card__img {
  aspect-ratio: 4/3;
  background: var(--bg-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
}
.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__game {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off);
  margin-bottom: 10px;
}
.card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.card__desc {
  font-size: 14px;
  color: var(--off);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.card__price {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.card__price--soon {
  font-size: 13px;
  font-weight: 500;
  color: var(--off);
}
.card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--off);
  transition: all 0.2s;
}
.card:hover .card__arrow {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.features__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}
.features__desc p {
  font-size: 16px;
  color: var(--off);
  line-height: 1.8;
  margin-bottom: 16px;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feat {
  background: var(--bg);
  padding: 32px 28px;
  transition: background 0.2s;
}
.feat:hover { background: var(--bg-2); }
.feat__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--dim);
  margin-bottom: 20px;
}
.feat__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feat__desc {
  font-size: 14px;
  color: var(--off);
  line-height: 1.7;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.faq .section-title { margin-bottom: 56px; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid var(--border); }
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
  font-family: var(--font);
  letter-spacing: -0.01em;
}
.faq__q:hover { color: var(--off); }
.faq__icon {
  width: 24px; height: 24px;
  border: 1px solid var(--dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--off);
  transition: transform 0.3s var(--ease), border-color 0.2s;
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq__item.open .faq__a {
  max-height: 300px;
  padding-bottom: 22px;
}
.faq__a p {
  font-size: 15px;
  color: var(--off);
  line-height: 1.75;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}
.product-page .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-media {
  position: sticky;
  top: 88px;
}
.product-img {
  aspect-ratio: 4/3;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
}
.product-info { padding-top: 8px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 32px;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--dim); }
.product-game {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off);
  margin-bottom: 12px;
}
.product-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.product-price {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.product-desc {
  font-size: 15px;
  color: var(--off);
  line-height: 1.8;
  margin-bottom: 32px;
}
.product-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--off);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.product-features li:last-child { border-bottom: none; }
.product-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}
.product-buy-wrap { margin-bottom: 20px; }
.product-compat {
  font-size: 12px;
  color: var(--dim);
  text-align: center;
}

/* Mod tabs on product page */
.mod-tabs {
  margin-bottom: 32px;
}
.mod-tabs__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off);
  margin-bottom: 12px;
}
.mod-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mod-tab {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--off);
  background: var(--bg-2);
  cursor: default;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.footer__logo span { color: var(--off); }
.footer__copy {
  font-size: 13px;
  color: var(--dim);
}
.footer__disclaimer {
  font-size: 12px;
  color: var(--dim);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
  }
  .nav__burger { display: flex; }
  .nav__inner .btn--sm { display: none; }

  .hero__stat-divider { display: none; }
  .hero__stats { flex-direction: column; gap: 0; }
  .hero__stat { border-bottom: 1px solid var(--border); }
  .hero__stat:last-child { border-bottom: none; }

  .features__top { grid-template-columns: 1fr; gap: 32px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }

  .product-page .container { grid-template-columns: 1fr; gap: 40px; }
  .product-media { position: static; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .feat-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 100px 20px 60px; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }
