/* AURA PRIVATE — Huly design system tokens */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --color-obsidian-canvas: #303236;
  --color-void: #090a0c;
  --color-charcoal-card: #111111;
  --color-slate-edge: #4a4b50;
  --color-iron-veil: #6b6c6d;
  --color-smoke: #95979e;
  --color-ash: #a9a9aa;
  --color-frost: #d1d1d1;
  --color-linen: #e5e5e7;
  --color-snow: #ffffff;
  --color-electric-iris: #5683da;
  --color-ember-pulse: #ff8964;
  --color-molasses: #5a250a;
  --color-ok: #3ecf8e;

  --font-inter: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Sora', ui-sans-serif, system-ui, sans-serif;

  --text-caption: 11px;
  --text-body: 14px;
  --text-body-lg: 16px;
  --text-subheading: 18px;
  --text-heading-sm: 22px;
  --text-heading: 24px;
  --text-display-sm: 32px;
  --text-display: 80px;

  --page-max-width: 1200px;
  --section-gap: 96px;
  --card-padding: 24px;
  --element-gap: 12px;

  --radius-md: 4px;
  --radius-cards: 12px;
  --radius-panels: 30px;
  --radius-full: 9999px;

  --shadow-md: rgba(0, 0, 0, 0.35) 0px 4px 16px 0px;
  --shadow-xl: rgba(0, 0, 0, 0.5) 0px 6px 25px 0px;
  --nav-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-inter);
  font-size: var(--text-body);
  line-height: 1.5;
  letter-spacing: -0.14px;
  background: var(--color-void);
  color: var(--color-snow);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
.container { width: min(100% - 40px, var(--page-max-width)); margin-inline: auto; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(9, 10, 12, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
.nav.scrolled {
  background: rgba(9, 10, 12, 0.88);
  border-bottom-color: var(--color-slate-edge);
}
.nav-inner {
  width: min(100% - 40px, var(--page-max-width));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.logo span { color: var(--color-electric-iris); }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--color-ash);
  padding: 8px 12px; border-radius: var(--radius-full); transition: 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-snow); background: rgba(255,255,255,0.04); }
.nav-actions { display: flex; gap: 8px; align-items: center; }

/* BUTTONS — pill system */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
  border-radius: var(--radius-full);
  padding: 12px 24px;
  transition: 0.25s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-electric-iris);
  color: var(--color-snow);
  box-shadow: 0 0 0 0 rgba(86,131,218,0.4);
}
.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 24px rgba(86,131,218,0.45);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--color-obsidian-canvas);
  color: var(--color-snow);
  padding: 10px 20px;
}
.btn-ghost:hover { background: var(--color-charcoal-card); border-color: var(--color-slate-edge); }
.btn-white {
  background: var(--color-snow);
  color: var(--color-void);
}
.btn-white:hover { filter: brightness(0.95); transform: translateY(-1px); }
.btn-ember {
  background: linear-gradient(135deg, var(--color-ember-pulse), #ff6b3d);
  color: var(--color-void);
  font-weight: 600;
}
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn-discord {
  background: #5865f2;
  color: #fff;
}

/* TAGS */
.tag {
  display: inline-flex; align-items: center;
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 11px; font-weight: 500;
  background: rgba(86,131,218,0.12);
  color: var(--color-electric-iris);
}
.tag-ember {
  background: rgba(255,137,100,0.12);
  color: var(--color-ember-pulse);
}
.tag-ok {
  background: rgba(62,207,142,0.12);
  color: var(--color-ok);
}
.tag-dark {
  background: rgba(255,255,255,0.06);
  color: var(--color-ash);
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  padding: 80px 0 64px;
  overflow: hidden;
}
.aurora {
  position: absolute;
  left: 50%;
  top: -10%;
  transform: translateX(-50%);
  width: 22%;
  min-width: 160px;
  max-width: 280px;
  height: 120%;
  background: linear-gradient(180deg,
    rgba(86,131,218,0.55) 0%,
    rgba(255,137,100,0.45) 45%,
    rgba(255,255,255,0.35) 100%);
  filter: blur(40px);
  opacity: 0.85;
  pointer-events: none;
  animation: auroraPulse 8s ease-in-out infinite alternate;
}
.aurora-glow {
  position: absolute;
  left: 50%; bottom: 8%;
  transform: translateX(-50%);
  width: 420px; height: 280px;
  background: radial-gradient(circle, rgba(255,170,129,0.35), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
@keyframes auroraPulse {
  from { opacity: 0.65; transform: translateX(-50%) scaleY(1); }
  to { opacity: 0.95; transform: translateX(-52%) scaleY(1.04); }
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0 0 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--color-snow), var(--color-electric-iris), var(--color-ember-pulse));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead {
  color: var(--color-ash);
  font-size: var(--text-body-lg);
  max-width: 480px;
  margin: 0 0 28px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-faceit-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(62,207,142,0.3);
  background: rgba(62,207,142,0.08);
  color: var(--color-ok);
  font-size: 12px; font-weight: 600;
}
.hero-faceit-badge i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-ok);
  box-shadow: 0 0 12px var(--color-ok);
  animation: blink 1.6s ease infinite;
}
@keyframes blink { 50% { opacity: 0.35; } }

.hero-media {
  position: relative;
  border-radius: var(--radius-cards);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-slate-edge);
  background: var(--color-charcoal-card);
  aspect-ratio: 16/11;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media .float-tag {
  position: absolute; bottom: 14px; left: 14px;
  backdrop-filter: blur(10px);
  background: rgba(9,10,12,0.7);
}

/* SECTIONS */
.section { padding: var(--section-gap) 0; }
.section-dark { background: var(--color-void); }
.section-canvas { background: var(--color-obsidian-canvas); }
.section-light {
  background: var(--color-snow);
  color: #050506;
}
.section-light .section-title { color: #050506; }
.section-light .section-desc { color: var(--color-obsidian-canvas); }
.section-light .muted { color: #6b6c6d; }

.section-label {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-electric-iris);
  margin: 0 0 10px;
}
.section-light .section-label { color: var(--color-electric-iris); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 600;
  letter-spacing: -1.6px;
  line-height: 1;
  margin: 0 0 12px;
}
.section-desc {
  color: var(--color-smoke);
  max-width: 560px;
  margin: 0 0 36px;
  font-size: var(--text-body-lg);
}
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px; flex-wrap: wrap; margin-bottom: 32px;
}
.section-head .section-desc { margin-bottom: 0; }

/* FACEIT centerpiece */
.faceit-banner {
  border-radius: var(--radius-panels);
  padding: 28px 32px;
  margin-bottom: 32px;
  border: 1px solid rgba(86,131,218,0.35);
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(86,131,218,0.18), transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(255,137,100,0.12), transparent 55%),
    var(--color-charcoal-card);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.faceit-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.04em;
  margin: 0 0 8px;
  line-height: 1;
}
.faceit-banner p { margin: 0; color: var(--color-ash); max-width: 480px; }
.faceit-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.faceit-stats div { text-align: center; }
.faceit-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-ok);
}
.faceit-stats span { font-size: 11px; color: var(--color-smoke); text-transform: uppercase; letter-spacing: 0.08em; }

/* PRODUCT CARDS — custom conversion-focused */
.tier-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
}
.tier-tab {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-slate-edge);
  background: transparent;
  color: var(--color-ash);
  font-weight: 500; font-size: 13px;
  transition: 0.2s;
}
.tier-tab.active, .tier-tab:hover {
  background: rgba(86,131,218,0.12);
  border-color: rgba(86,131,218,0.4);
  color: var(--color-snow);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.pcard {
  position: relative;
  background: var(--color-charcoal-card);
  border: 1px solid var(--color-slate-edge);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  display: flex; flex-direction: column;
  transition: 0.35s var(--ease);
  overflow: hidden;
  min-height: 100%;
}
.pcard::before {
  content: "";
  position: absolute;
  top: -80px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,137,100,0.18), transparent 70%);
  pointer-events: none;
}
.pcard:hover {
  border-color: rgba(86,131,218,0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pcard.premium {
  border-color: rgba(255,137,100,0.4);
}
.pcard.premium::before {
  background: radial-gradient(circle, rgba(255,137,100,0.28), transparent 70%);
}
.pcard.medium::before {
  background: radial-gradient(circle, rgba(86,131,218,0.22), transparent 70%);
}
.pcard-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; position: relative;
}
.pcard-tier {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-electric-iris);
}
.pcard.premium .pcard-tier { color: var(--color-ember-pulse); }
.pcard h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  line-height: 1.1;
  position: relative;
}
.pcard-variant {
  font-size: 13px; font-weight: 600;
  color: var(--color-ember-pulse);
  margin-bottom: 10px;
  position: relative;
}
.pcard-tagline {
  color: var(--color-smoke);
  font-size: 14px;
  margin: 0 0 16px;
  position: relative;
  flex: 0 0 auto;
}
.pcard-features {
  list-style: none; margin: 0 0 20px; padding: 0;
  position: relative; flex: 1;
}
.pcard-features li {
  position: relative;
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid rgba(74,75,80,0.5);
  color: var(--color-ash);
  font-size: 13px;
  line-height: 1.45;
}
.pcard-features li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-electric-iris);
}
.pcard.premium .pcard-features li::before { background: var(--color-ember-pulse); }
.pcard-price-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  margin-top: auto; position: relative; padding-top: 8px;
}
.pcard-price {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pcard-price .old {
  display: block;
  font-size: 14px;
  color: var(--color-smoke);
  text-decoration: line-through;
  font-family: var(--font-inter);
  font-weight: 400;
  margin-bottom: 4px;
}
.pcard-price small {
  font-size: 13px; color: var(--color-smoke);
  font-family: var(--font-inter); font-weight: 400;
}
.variant-switch {
  display: flex; gap: 6px; margin-bottom: 16px; position: relative;
}
.variant-switch button {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-slate-edge);
  background: transparent;
  color: var(--color-ash);
  font-size: 12px; font-weight: 600;
  transition: 0.2s;
}
.variant-switch button.active {
  background: rgba(86,131,218,0.15);
  border-color: var(--color-electric-iris);
  color: var(--color-snow);
}

/* MEDIA GALLERY */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}
.gallery-main {
  border-radius: var(--radius-cards);
  overflow: hidden;
  border: 1px solid var(--color-slate-edge);
  box-shadow: var(--shadow-xl);
  background: #000;
  min-height: 320px;
  position: relative;
}
.gallery-main video, .gallery-main img {
  width: 100%; height: 100%; object-fit: cover; min-height: 320px;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-height: 420px;
  overflow-y: auto;
}
.gallery-thumbs button {
  border-radius: var(--radius-cards);
  overflow: hidden;
  border: 1px solid var(--color-slate-edge);
  padding: 0;
  aspect-ratio: 16/10;
  background: var(--color-charcoal-card);
  transition: 0.2s;
}
.gallery-thumbs button:hover, .gallery-thumbs button.active {
  border-color: var(--color-electric-iris);
  box-shadow: 0 0 0 1px var(--color-electric-iris);
}
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* TECH */
.tech-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}
.tech-copy {
  background: var(--color-charcoal-card);
  border: 1px solid var(--color-slate-edge);
  border-radius: var(--radius-cards);
  padding: 32px;
}
.tech-copy h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.tech-copy p { color: var(--color-ash); margin: 0 0 14px; }
.ring-viz {
  background: var(--color-void);
  border: 1px solid var(--color-slate-edge);
  border-radius: var(--radius-cards);
  padding: 32px;
  display: grid; place-items: center;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(86,131,218,0.25);
  animation: ringSpin 12s linear infinite;
}
.ring-1 { width: 120px; height: 120px; }
.ring-2 { width: 180px; height: 180px; animation-duration: 18s; border-color: rgba(255,137,100,0.25); }
.ring-3 { width: 250px; height: 250px; animation-duration: 26s; border-color: rgba(255,255,255,0.08); }
.ring-core {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-electric-iris), var(--color-ember-pulse));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  color: var(--color-void);
  z-index: 2;
  box-shadow: 0 0 40px rgba(86,131,218,0.5);
}
@keyframes ringSpin {
  to { transform: rotate(360deg); }
}
.ring-label {
  position: absolute;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-smoke);
  z-index: 2;
}
.ring-label.r3 { top: 18%; }
.ring-label.r0 { bottom: 28%; left: 18%; color: var(--color-electric-iris); }
.ring-label.r2 { bottom: 18%; right: 16%; color: var(--color-ember-pulse); }

/* STATUS */
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.status-card {
  background: var(--color-charcoal-card);
  border: 1px solid var(--color-slate-edge);
  border-radius: var(--radius-cards);
  padding: 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.status-card h4 { margin: 0 0 4px; font-size: 15px; font-weight: 600; }
.status-card p { margin: 0; font-size: 12px; color: var(--color-smoke); }
.status-dot {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--color-ok);
}
.status-dot i {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--color-ok);
  box-shadow: 0 0 14px var(--color-ok);
  animation: blink 1.5s ease infinite;
}
.status-hero {
  text-align: center;
  padding: 40px;
  border-radius: var(--radius-panels);
  border: 1px solid rgba(62,207,142,0.35);
  background: radial-gradient(ellipse at center, rgba(62,207,142,0.1), transparent 60%), var(--color-charcoal-card);
  margin-bottom: 28px;
}
.status-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
  margin: 12px 0 8px;
  color: var(--color-ok);
}

/* FAQ */
.faq-list { display: grid; gap: 10px; max-width: 800px; }
.faq-item {
  border: 1px solid var(--color-slate-edge);
  border-radius: var(--radius-cards);
  background: var(--color-charcoal-card);
  overflow: hidden;
}
.section-light .faq-item {
  background: #fff;
  border-color: var(--color-frost);
}
.faq-q {
  width: 100%; text-align: left;
  padding: 18px 20px;
  display: flex; justify-content: space-between; gap: 12px;
  font-weight: 600; font-size: 15px;
}
.faq-q::after { content: "+"; color: var(--color-electric-iris); font-size: 18px; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease);
  color: var(--color-smoke);
  padding: 0 20px;
  font-size: 14px;
}
.section-light .faq-a { color: #555; }
.faq-item.open .faq-a { max-height: 280px; padding-bottom: 18px; }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.review-card {
  background: var(--color-charcoal-card);
  border: 1px solid var(--color-slate-edge);
  border-radius: var(--radius-cards);
  padding: 20px;
}
.review-card .stars { color: var(--color-ember-pulse); letter-spacing: 2px; font-size: 12px; margin-bottom: 8px; }
.review-card .nick { font-weight: 600; margin-bottom: 4px; }
.review-card .prod { font-size: 11px; color: var(--color-electric-iris); margin-bottom: 10px; }
.review-card p { margin: 0; color: var(--color-ash); font-size: 14px; line-height: 1.55; }

/* SUPPORT CTA sticky */
.support-cta {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  width: min(100% - 32px, 720px);
  padding: 14px 16px 14px 20px;
  border-radius: var(--radius-full);
  background: rgba(17,17,17,0.92);
  border: 1px solid rgba(86,131,218,0.4);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  animation: slideUp 0.6s var(--ease) both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.support-cta p {
  margin: 0;
  font-size: 13px;
  color: var(--color-ash);
  line-height: 1.35;
}
.support-cta strong { color: var(--color-snow); display: block; font-size: 14px; margin-bottom: 2px; }
.support-cta .actions { display: flex; gap: 8px; flex-shrink: 0; }

/* AUTH / FORMS */
.auth-wrap {
  min-height: calc(100vh - var(--nav-h));
  display: grid; place-items: center;
  padding: 48px 20px;
}
.auth-card {
  width: 100%; max-width: 420px;
  background: var(--color-charcoal-card);
  border: 1px solid var(--color-slate-edge);
  border-radius: var(--radius-cards);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.auth-card h1 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  text-align: center;
}
.auth-card .sub { text-align: center; color: var(--color-smoke); margin: 0 0 24px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-smoke);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-slate-edge);
  background: var(--color-void);
  outline: none;
  transition: 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--color-electric-iris);
  box-shadow: 0 0 0 3px rgba(86,131,218,0.2);
}
.alert {
  display: none;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  margin-bottom: 12px;
}
.alert.show { display: block; }
.alert-error { background: rgba(255,100,100,0.1); border: 1px solid rgba(255,100,100,0.3); color: #ff8a8a; }
.alert-ok { background: rgba(62,207,142,0.1); border: 1px solid rgba(62,207,142,0.3); color: var(--color-ok); }
.oauth-row { display: grid; gap: 8px; margin: 16px 0; }
.divider {
  text-align: center; color: var(--color-smoke); font-size: 12px;
  margin: 16px 0; position: relative;
}
.auth-footer { text-align: center; margin-top: 16px; color: var(--color-smoke); font-size: 13px; }
.auth-footer a { color: var(--color-electric-iris); }

/* CHECKOUT */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px 0 100px;
}
.panel {
  background: var(--color-charcoal-card);
  border: 1px solid var(--color-slate-edge);
  border-radius: var(--radius-cards);
  padding: 24px;
}
.panel h2 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.wallet-list { display: grid; gap: 8px; margin-bottom: 16px; }
.wallet-opt {
  text-align: left;
  padding: 14px 16px;
  border-radius: var(--radius-cards);
  border: 1px solid var(--color-slate-edge);
  background: var(--color-void);
  transition: 0.2s;
}
.wallet-opt.active, .wallet-opt:hover {
  border-color: var(--color-electric-iris);
  background: rgba(86,131,218,0.08);
}
.wallet-opt strong { display: block; margin-bottom: 4px; }
.wallet-opt span { font-size: 12px; color: var(--color-smoke); word-break: break-all; }
.pay-amount {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: -0.04em;
  margin: 8px 0;
}
.addr-box {
  background: var(--color-void);
  border: 1px solid var(--color-slate-edge);
  border-radius: var(--radius-md);
  padding: 14px;
  word-break: break-all;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  margin: 12px 0;
}
.copy-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* ACCOUNT / ADMIN */
.account-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  padding: 40px 0 80px;
}
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th, .table td {
  text-align: left; padding: 12px 8px;
  border-bottom: 1px solid var(--color-slate-edge);
  vertical-align: top;
}
.table th { color: var(--color-smoke); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.badge-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600;
}
.badge-awaiting { background: rgba(255,137,100,0.12); color: var(--color-ember-pulse); }
.badge-pending { background: rgba(86,131,218,0.12); color: var(--color-electric-iris); }
.badge-paid { background: rgba(62,207,142,0.12); color: var(--color-ok); }
.badge-cancelled { background: rgba(255,255,255,0.06); color: var(--color-smoke); }

/* FOOTER */
.footer {
  border-top: 1px solid var(--color-slate-edge);
  padding: 48px 0 100px;
  background: var(--color-void);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.footer h4 { margin: 0 0 12px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-smoke); }
.footer a { display: block; color: var(--color-ash); font-size: 14px; margin-bottom: 8px; }
.footer a:hover { color: var(--color-snow); }
.footer p { color: var(--color-smoke); font-size: 13px; margin: 0; line-height: 1.6; }
.footer-bottom {
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid var(--color-slate-edge);
  color: var(--color-iron-veil); font-size: 12px;
}

/* MODAL lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(9,10,12,0.88);
  display: none; place-items: center;
  padding: 24px;
}
.lightbox.open { display: grid; }
.lightbox img {
  max-width: min(96vw, 1000px);
  max-height: 86vh;
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-charcoal-card);
  border: 1px solid var(--color-slate-edge);
  color: #fff; font-size: 20px;
}

.reveal { opacity: 0; transform: translateY(24px); transition: 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

.nav-toggle {
  display: none; width: 40px; height: 40px;
  border-radius: 10px; border: 1px solid var(--color-slate-edge);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 16px; height: 1.5px; background: #fff; display: block; }

@media (max-width: 900px) {
  .hero-grid, .gallery, .tech-grid, .checkout-layout, .account-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(9,10,12,0.97);
    border-bottom: 1px solid var(--color-slate-edge);
    padding: 12px;
  }
  .nav-toggle { display: flex; }
  .support-cta { flex-direction: column; border-radius: 16px; text-align: center; }
  .product-grid { grid-template-columns: 1fr; }
}

/* ===== LEGACY AURA DESIGN LAYERS (from previous project) ===== */
.cinema-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
#fx-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  z-index: 10001;
  background: linear-gradient(90deg, var(--color-electric-iris), var(--color-ember-pulse), #e8d5b5);
  box-shadow: 0 0 12px rgba(86,131,218,0.5);
}

.hero-legacy-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
  background: linear-gradient(180deg, #fff 15%, #c8a8ff 50%, #e8d5b5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(200,168,255,0.25));
}
.hero-sub-gold {
  color: #e8d5b5;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 16px;
  opacity: 0.9;
}

/* Purchase ticker */
.ticker-wrap {
  border-top: 1px solid var(--color-slate-edge);
  border-bottom: 1px solid var(--color-slate-edge);
  background: rgba(0,0,0,0.35);
  overflow: hidden;
}
.ticker {
  display: flex;
  gap: 40px;
  width: max-content;
  padding: 12px 0;
  animation: ticker 45s linear infinite;
  font-size: 12px;
  color: var(--color-smoke);
  white-space: nowrap;
}
.ticker b { color: #c8a8ff; font-weight: 600; }
.ticker .dot { color: var(--color-iron-veil); margin: 0 6px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Game tiles (legacy) */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.game-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-slate-edge);
  min-height: 200px;
  background: #0a0a10;
  transition: 0.4s var(--ease);
  display: block;
}
.game-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: 0.6s var(--ease);
}
.game-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,8,0.95) 0%, rgba(5,5,8,0.3) 55%, rgba(5,5,8,0.2) 100%);
}
.game-tile:hover {
  border-color: rgba(200,168,255,0.45);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.45), 0 0 30px rgba(124,92,255,0.12);
}
.game-tile:hover img { transform: scale(1.08); opacity: 0.72; }
.game-tile .body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 18px;
}
.game-tile .status {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 5px 9px;
  border-radius: 6px;
  text-transform: uppercase;
}
.game-tile .status.active {
  background: rgba(62,207,142,0.15);
  color: var(--color-ok);
  border: 1px solid rgba(62,207,142,0.35);
}
.game-tile .cat {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-smoke);
  margin-bottom: 6px;
}
.game-tile h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

/* Product cards with banner media (legacy style) */
.pcard-media {
  position: relative;
  height: 150px;
  margin: -24px -24px 16px;
  overflow: hidden;
  border-radius: var(--radius-cards) var(--radius-cards) 0 0;
}
.pcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s var(--ease);
  filter: saturate(1.05);
}
.pcard:hover .pcard-media img { transform: scale(1.08); }
.pcard-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,1) 0%, transparent 70%);
}
.pcard-game-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5ce1e6;
  margin-bottom: 6px;
}
.pcard-price {
  background: linear-gradient(90deg, #fff, #c8a8ff, #e8d5b5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Game section banners */
.game-block { margin-bottom: 48px; }
.game-banner {
  position: relative;
  height: min(280px, 42vw);
  min-height: 180px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--color-slate-edge);
  background-size: cover;
  background-position: center;
  transition: 0.4s var(--ease);
}
.game-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(9,10,12,0.95) 0%, rgba(9,10,12,0.3) 50%, rgba(9,10,12,0.2) 100%),
    linear-gradient(90deg, rgba(86,131,218,0.2), transparent 55%);
}
.game-banner-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 24px 28px;
}
.game-banner .tag-line {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8a8ff;
  margin-bottom: 6px;
}
.game-banner h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.game-banner:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-slate-edge);
  color: var(--color-smoke);
  background: rgba(0,0,0,0.25);
}
.chip.hot {
  border-color: rgba(200,168,255,0.4);
  color: #c8a8ff;
  background: rgba(200,168,255,0.08);
}

.tech-legacy-box {
  margin-top: 20px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(232,213,181,0.25);
  background: linear-gradient(135deg, rgba(232,213,181,0.06), transparent 50%);
}
.tech-legacy-box h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 16px;
  color: #e8d5b5;
}
.tech-legacy-box p {
  margin: 0;
  color: var(--color-ash);
  font-size: 13px;
  line-height: 1.65;
}

/* ===== UPDATE: payments, modal, YT, status neon, reviews marquee, OAuth ===== */
.pay-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}
.pay-method {
  padding: 16px 12px;
  border-radius: 12px;
  border: 1px solid var(--color-slate-edge);
  background: var(--color-void);
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.25s var(--ease);
  color: var(--color-ash);
}
.pay-method:hover, .pay-method.active {
  border-color: var(--color-electric-iris);
  color: #fff;
  background: rgba(86,131,218,0.12);
  box-shadow: 0 0 24px rgba(86,131,218,0.25);
  transform: translateY(-2px);
}
.pay-method.crypto.active {
  border-color: #f0b429;
  box-shadow: 0 0 24px rgba(240,180,41,0.25);
}
.pay-method.card.active {
  border-color: var(--color-electric-iris);
}
.pay-method.skrill.active {
  border-color: #8b1a6b;
  box-shadow: 0 0 24px rgba(139,26,107,0.3);
}
.card-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 12px 0 4px;
}
.card-brands span {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--color-slate-edge);
  background: rgba(255,255,255,0.04);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-ash);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(9,10,12,0.82);
  backdrop-filter: blur(10px);
  display: none;
  place-items: center;
  padding: 20px;
}
.modal-backdrop.open { display: grid; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  width: min(100%, 480px);
  background: linear-gradient(165deg, rgba(86,131,218,0.12), transparent 40%), var(--color-charcoal-card);
  border: 1px solid rgba(86,131,218,0.45);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 60px rgba(86,131,218,0.15);
  position: relative;
  animation: modalUp 0.35s var(--ease);
}
@keyframes modalUp {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.modal-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  text-align: center;
}
.modal-card p {
  color: var(--color-ash);
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
  margin: 0 0 22px;
}
.modal-actions { display: grid; gap: 10px; }
.btn-glow-tg {
  background: linear-gradient(135deg, #2aabee, #229ed9);
  color: #fff;
  box-shadow: 0 0 28px rgba(42,171,238,0.45);
  font-weight: 700;
}
.btn-glow-tg:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-glow-dc {
  background: linear-gradient(135deg, #7289da, #5865f2);
  color: #fff;
  box-shadow: 0 0 28px rgba(88,101,242,0.5);
  font-weight: 700;
}
.btn-glow-dc:hover { filter: brightness(1.08); transform: translateY(-2px); }
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-slate-edge);
  color: #fff;
  font-size: 18px;
  background: rgba(0,0,0,0.3);
}

/* YouTube hero frame */
.yt-frame-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(86,131,218,0.45);
  box-shadow:
    0 0 0 1px rgba(255,137,100,0.15),
    0 0 40px rgba(86,131,218,0.35),
    var(--shadow-xl);
  background: #000;
  aspect-ratio: 16/9;
}
.yt-frame-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(86,131,218,0.6), transparent 40%, rgba(255,137,100,0.45));
  z-index: -1;
  filter: blur(8px);
  opacity: 0.8;
  animation: ytGlow 4s ease-in-out infinite alternate;
}
@keyframes ytGlow {
  from { opacity: 0.5; }
  to { opacity: 1; }
}
.yt-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  pointer-events: none;
}

/* Reviews marquee + grid */
.reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin-bottom: 20px;
}
.reviews-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 80s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  width: 300px;
  flex-shrink: 0;
}
.reviews-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  max-height: 640px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-electric-iris) transparent;
}
.reviews-pager {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}
.reviews-pager button {
  min-width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--color-slate-edge);
  background: transparent;
  color: var(--color-ash);
  font-size: 12px;
  font-weight: 600;
}
.reviews-pager button.active {
  background: var(--color-electric-iris);
  color: #fff;
  border-color: transparent;
}

/* Status neon page */
.status-neon-hero {
  text-align: center;
  padding: 48px 28px;
  border-radius: 24px;
  border: 1px solid rgba(62,207,142,0.4);
  background:
    radial-gradient(ellipse at center, rgba(62,207,142,0.15), transparent 55%),
    var(--color-charcoal-card);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.status-neon-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(62,207,142,0.08), transparent);
  animation: scan 3s linear infinite;
}
@keyframes scan {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}
.status-neon-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ok);
  text-shadow: 0 0 30px rgba(62,207,142,0.6);
  margin: 12px 0;
  position: relative;
  z-index: 1;
}
.status-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.status-neon-card {
  position: relative;
  padding: 22px 20px;
  border-radius: 14px;
  border: 1px solid rgba(62,207,142,0.3);
  background: linear-gradient(145deg, rgba(62,207,142,0.06), transparent 50%), var(--color-charcoal-card);
  overflow: hidden;
  transition: 0.35s var(--ease);
}
.status-neon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(62,207,142,0.2);
  border-color: rgba(62,207,142,0.55);
}
.status-neon-card h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
}
.status-neon-card .plat {
  font-size: 11px;
  color: var(--color-smoke);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.status-neon-card .detail {
  font-size: 13px;
  color: var(--color-ash);
  margin: 0;
}
.neon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ok);
  background: rgba(62,207,142,0.1);
  border: 1px solid rgba(62,207,142,0.4);
  box-shadow: 0 0 20px rgba(62,207,142,0.25);
}
.neon-pill i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-ok);
  box-shadow: 0 0 12px var(--color-ok), 0 0 24px var(--color-ok);
  animation: neonPulse 1.4s ease infinite;
}
@keyframes neonPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

/* OAuth icon buttons */
.oauth-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--color-slate-edge);
  background: var(--color-void);
  color: #fff;
  transition: 0.25s;
  text-decoration: none;
}
.oauth-btn:hover { border-color: var(--color-electric-iris); background: rgba(255,255,255,0.04); }
.oauth-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.oauth-btn.discord-o {
  background: #5865f2;
  border-color: transparent;
}
.oauth-btn.discord-o:hover { filter: brightness(1.08); }
.oauth-btn:disabled, .oauth-btn.disabled {
  opacity: 0.55;
  pointer-events: none;
}

.contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.contact-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-slate-edge);
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s;
}
.contact-bar a:hover { border-color: var(--color-electric-iris); color: #fff; }
.contact-bar a.dc {
  background: rgba(88,101,242,0.15);
  border-color: rgba(88,101,242,0.45);
  color: #a5b0ff;
  box-shadow: 0 0 20px rgba(88,101,242,0.2);
}

.txid-box {
  margin-top: 12px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(240,180,41,0.3);
  background: rgba(240,180,41,0.06);
}
.txid-box label { color: #f0b429; }

@media (max-width: 700px) {
  .pay-methods { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr !important; }
}

/* ===== Crypto coin picker (no addresses until modal) ===== */
.crypto-steps { margin-top: 8px; }
.crypto-step-label {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px; margin-bottom: 8px;
}
.step-num {
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--color-electric-iris); color: #fff;
  font-size: 12px; font-weight: 700;
}
.crypto-step-hint {
  color: var(--color-smoke); font-size: 13px; margin: 0 0 14px; line-height: 1.5;
}
.coin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.coin-btn {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--color-slate-edge);
  background: var(--color-void);
  color: #fff;
  cursor: pointer;
  transition: 0.3s var(--ease);
}
.coin-btn:hover, .coin-btn.active {
  border-color: var(--color-electric-iris);
  background: rgba(86,131,218,0.1);
  box-shadow: 0 0 24px rgba(86,131,218,0.2);
  transform: translateX(4px);
}
.coin-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
  background: linear-gradient(135deg, rgba(86,131,218,0.35), rgba(255,137,100,0.25));
  border: 1px solid rgba(255,255,255,0.08);
}
.coin-name { font-weight: 600; font-size: 14px; }
.coin-cta { font-size: 11px; color: var(--color-electric-iris); font-weight: 600; white-space: nowrap; }

.crypto-addr-modal { max-width: 480px !important; }
.step-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-ember-pulse);
  background: rgba(255,137,100,0.12);
  border: 1px solid rgba(255,137,100,0.3);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 12px;
}
.crypto-modal-meta { color: var(--color-ash); font-size: 13px; margin: 0 0 16px; text-align: center; }
.addr-reveal {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(86,131,218,0.35);
  background: rgba(0,0,0,0.35);
  margin-bottom: 14px;
  animation: addrIn 0.4s var(--ease);
}
@keyframes addrIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.addr-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-smoke); margin-bottom: 8px; text-align: center;
}
.crypto-warn {
  font-size: 12px; color: var(--color-ember-pulse); text-align: center;
  margin: 0 0 16px; line-height: 1.5;
}

/* ===== Hero YouTube fixed ===== */
.hero-media-video {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  position: relative;
  z-index: 2;
}
.yt-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(86,131,218,0.5);
  background: #000;
  box-shadow: 0 0 40px rgba(86,131,218,0.35), var(--shadow-xl);
  z-index: 3;
}
.yt-frame-wrap iframe,
.yt-frame-wrap .yt-poster,
.yt-frame-wrap .yt-local-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.yt-frame-wrap iframe { z-index: 2; background: #000; }
.yt-poster { z-index: 1; transition: opacity 0.5s; }
.yt-local-fallback { display: none; z-index: 2; }
.yt-frame-wrap.use-local .yt-local-fallback { display: block; }
.yt-frame-wrap.use-local iframe { display: none !important; }
.yt-frame-wrap.playing .yt-poster { opacity: 0; pointer-events: none; }
.yt-play-btn {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(9,10,12,0.75);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(8px);
  cursor: pointer;
  box-shadow: 0 0 30px rgba(86,131,218,0.4);
  transition: 0.25s;
}
.yt-play-btn:hover { transform: translate(-50%, -50%) scale(1.05); background: rgba(86,131,218,0.35); }
.yt-caption {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--color-smoke);
  text-align: center;
}
.yt-caption a { color: var(--color-electric-iris); }

/* ===== Extra animations / polish ===== */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes shineSweep {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero-faceit-badge { animation: floatY 3.5s ease-in-out infinite; }
.pcard {
  animation: none;
}
.pcard:hover .pcard-price {
  background-size: 200% auto;
  animation: shineSweep 1.2s linear;
}
.faceit-banner {
  position: relative;
  overflow: hidden;
}
.faceit-banner::after {
  content: "";
  position: absolute;
  top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: bannerShine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bannerShine {
  0% { left: -40%; }
  50%, 100% { left: 120%; }
}
.section-title {
  position: relative;
}
.game-tile .status.active {
  animation: neonPulse 1.6s ease infinite;
}
.support-cta {
  animation: slideUp 0.6s var(--ease) both, softY 4s ease-in-out 1s infinite;
}
.btn-primary, .btn-ember {
  position: relative;
  overflow: hidden;
}
.btn-primary::before, .btn-ember::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s;
}
.btn-primary:hover::before, .btn-ember:hover::before { transform: translateX(120%); }

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 600px) {
  .coin-btn { grid-template-columns: 40px 1fr; }
  .coin-cta { grid-column: 2; }
}

.oauth-note {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-smoke);
  text-align: center;
}
.oauth-note code {
  color: var(--color-ember-pulse);
  font-size: 11px;
}
.oauth-btn.oauth-soon {
  opacity: 0.85;
  cursor: pointer;
}
.oauth-btn.oauth-soon:hover {
  border-color: var(--color-ember-pulse);
  opacity: 1;
}

.forgot-hint {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--color-smoke);
  text-align: center;
}
.forgot-hint a {
  color: var(--color-electric-iris);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.forgot-hint a:hover { color: #fff; }
