/*
 * Cyborg Loader — Sellauth theme
 * Matches loader_gui.cpp: pure black, starfield, corner frames, chip buttons.
 */

:root {
  --cyborg-black: #000000;
  --cyborg-text: #f5f5f5;
  --cyborg-muted: #969698;
  --cyborg-dim: #a0a0a0;
  --cyborg-border: rgba(255, 255, 255, 0.14);
  --cyborg-border-hover: rgba(255, 255, 255, 0.28);
  --cyborg-panel: rgba(0, 0, 0, 0.86);
  --cyborg-glow: rgba(255, 255, 255, 0.14);
  --cyborg-glow-strong: rgba(255, 255, 255, 0.28);
  --cyborg-glow-green: rgba(134, 239, 172, 0.45);
  --cyborg-shadow-glow: 0 0 24px rgba(255, 255, 255, 0.06), 0 0 48px rgba(255, 255, 255, 0.04);
  --cyborg-nav-h: 56px;
  --cyborg-radius: 14px;
  --cyborg-radius-sm: 10px;
  --cyborg-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --cyborg-mono: "JetBrains Mono", ui-monospace, monospace;
  --cyborg-green: #86efac;
  --cyborg-border: rgba(255, 255, 255, 0.12);
  --cyborg-panel: rgba(6, 6, 8, 0.82);
}

html {
  color-scheme: dark;
}

body.cyborg-app {
  margin: 0;
  background: var(--cyborg-black);
  color: var(--cyborg-text);
  font-family: var(--cyborg-font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.bg-image {
  display: none !important;
}

.cyborg-starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.cyborg-vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 22%, transparent 78%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.35) 100%);
}

.cyborg-app__inner,
.cyborg-main {
  position: relative;
  z-index: 2;
}

.cyborg-main {
  overflow-x: clip;
}

#app > .flex-wrapper > div:first-child,
.flex-wrapper {
  position: relative;
  z-index: 2;
}

/* ── Nav (loader title bar) ── */
.cyborg-nav {
  height: var(--cyborg-nav-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.cyborg-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--cyborg-nav-h);
}

.cyborg-nav__left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 0 1 auto;
}

.cyborg-nav__bolt {
  width: 14px;
  height: 14px;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 35% 100%, 50% 65%, 65% 100%, 100% 100%);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
}

.cyborg-nav__status {
  font-size: 0.78rem;
  color: #fff;
  white-space: nowrap;
}

.cyborg-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none !important;
  color: #fff !important;
  flex-shrink: 0;
}

.cyborg-nav__logo {
  border-radius: 8px;
  border: 1px solid var(--cyborg-border);
}

.cyborg-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--cyborg-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: #000;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
}

.cyborg-nav__title {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.cyborg-nav__dock,
.cyborg-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem 1.1rem;
}

.cyborg-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.2rem 0;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
  box-shadow: inset 0 -2px 0 transparent;
}

.cyborg-nav__link:hover {
  color: #fff !important;
}

.cyborg-nav__link.is-active {
  color: #fff !important;
  box-shadow: inset 0 -2px 0 #fff;
}

.cyborg-nav__link--btn {
  appearance: none;
}

.cyborg-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--cyborg-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.25s ease;
}

.cyborg-chip:hover {
  color: #fff !important;
  border-color: var(--cyborg-border-hover);
  background: #121212;
}

.cyborg-chip.is-active {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.45);
  background: #1a1a1a;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.cyborg-chip--btn,
button.cyborg-chip {
  appearance: none;
  cursor: pointer;
  font-family: inherit;
}

/* ── Panels (login card / content) ── */
.cyborg-panel {
  position: relative;
  background: var(--cyborg-panel);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--cyborg-radius);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8);
}

.cyborg-panel--shimmer {
  animation: cyborgBorderPulse 3.6s ease-in-out infinite;
}

@keyframes cyborgBorderPulse {
  0%, 100% { border-color: rgba(255, 255, 255, 0.16); }
  50% { border-color: rgba(255, 255, 255, 0.32); }
}

.cyborg-panel__corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

.cyborg-panel__corners::before,
.cyborg-panel__corners::after,
.cyborg-panel__corners span::before,
.cyborg-panel__corners span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(255, 255, 255, 0.55);
  border-style: solid;
}

.cyborg-panel__corners::before {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}

.cyborg-panel__corners::after {
  top: 10px;
  right: 10px;
  border-width: 2px 2px 0 0;
}

.cyborg-panel__corners span::before {
  bottom: 10px;
  left: 10px;
  border-width: 0 0 2px 2px;
}

.cyborg-panel__corners span::after {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
}

.cyborg-panel__body {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 2rem);
}

/* ── Buttons (DrawTextChipButton) ── */
.cyborg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.25rem;
  border-radius: var(--cyborg-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #000;
  color: #f5f5f5 !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.cyborg-btn:hover {
  background: #101010;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
}

.cyborg-btn--primary {
  background: #fff;
  color: #000 !important;
  border-color: #fff;
}

.cyborg-btn--primary:hover {
  background: #e5e5e5;
  border-color: #e5e5e5;
  color: #000 !important;
}

.cyborg-btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85) !important;
}

.cyborg-btn--block {
  width: 100%;
}

.cyborg-btn--lg {
  min-height: 44px;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
}

/* ── Menu rows ── */
.cyborg-rows {
  display: grid;
  gap: 0.5rem;
}

.cyborg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
  padding: 0 1rem;
  border-radius: var(--cyborg-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  color: #f5f5f5 !important;
  text-decoration: none !important;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cyborg-row:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: #121212;
  color: #fff !important;
}

.cyborg-row__label {
  font-weight: 600;
  font-size: 0.9rem;
}

.cyborg-row__hint {
  font-family: var(--cyborg-mono);
  font-size: 0.72rem;
  color: var(--cyborg-muted);
  letter-spacing: 0.04em;
}

/* ── Fields ── */
.cyborg-field {
  width: 100%;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #000;
  color: #fff;
  font-size: 0.95rem;
}

.cyborg-field::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.cyborg-field:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

/* ── Status bar (loader progress) ── */
.cyborg-bar {
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #000;
  overflow: hidden;
}

.cyborg-bar__fill {
  height: 100%;
  width: 45%;
  border-radius: inherit;
  background: #fff;
  animation: cyborgBarIndet 2s ease-in-out infinite;
}

@keyframes cyborgBarIndet {
  0% { transform: translateX(-120%); width: 38%; }
  100% { transform: translateX(280%); width: 38%; }
}

/* ── Home (login screen layout) ── */
.cyborg-home {
  padding: clamp(2rem, 6vw, 4rem) 0 3rem;
}

.cyborg-home__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .cyborg-home__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.cyborg-home__hero {
  text-align: center;
}

.cyborg-home__logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.cyborg-home__logo {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  border: 1px solid var(--cyborg-border);
  object-fit: contain;
  background: #000;
}

.cyborg-home__logo-fallback {
  width: 96px;
  height: 96px;
  font-size: 2.5rem;
}

.cyborg-home__brand {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 1rem + 1.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cyborg-home__sub {
  margin: 0 0 1.25rem;
  color: var(--cyborg-muted);
  font-size: 0.95rem;
}

.cyborg-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cyborg-home__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  text-align: left;
}

.cyborg-stat {
  padding: 0.75rem 0.85rem;
  border-radius: var(--cyborg-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
}

.cyborg-stat__k {
  display: block;
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
  margin-bottom: 0.25rem;
}

.cyborg-stat__v {
  font-weight: 700;
  font-size: 0.95rem;
}

/* ── Page shell ── */
.cyborg-page {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 3rem;
}

.cyborg-page__head {
  margin-bottom: 1.5rem;
}

.cyborg-page__eyebrow {
  font-family: var(--cyborg-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
  margin-bottom: 0.35rem;
}

.cyborg-page__title {
  margin: 0;
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cyborg-page__lead {
  margin: 0.5rem 0 0;
  max-width: 56ch;
  color: var(--cyborg-dim);
  line-height: 1.6;
}

/* ── Guide layout ── */
.cyborg-guide-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .cyborg-guide-layout {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

.cyborg-guide-nav {
  position: sticky;
  top: calc(var(--cyborg-nav-h) + 1rem);
}

.cyborg-guide-nav a {
  display: block;
  padding: 0.55rem 0;
  color: var(--cyborg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
}

.cyborg-guide-nav a:hover {
  color: #fff;
}

.cyborg-guide-section {
  margin-bottom: 1.25rem;
}

.cyborg-guide-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cyborg-guide-section p {
  color: var(--cyborg-dim);
  line-height: 1.65;
}

.cyborg-step {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  margin-top: 0.75rem;
  border-radius: var(--cyborg-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
}

.cyborg-step__n {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--cyborg-border);
  display: grid;
  place-items: center;
  font-weight: 800;
}

/* ── Download page ── */
.cyborg-download {
  min-height: calc(100vh - var(--cyborg-nav-h) - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.cyborg-download .cyborg-panel {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.cyborg-download h1 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.cyborg-download p {
  color: var(--cyborg-muted);
  margin-bottom: 1.25rem;
}

/* ── Footer ── */
.cyborg-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.9);
  padding: 1.25rem 0;
  margin-top: 2rem;
}

.cyborg-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cyborg-footer__brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

.cyborg-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cyborg-footer__links a {
  color: var(--cyborg-muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.cyborg-footer__links a:hover {
  color: #fff;
}

/* ── Sellauth / Bootstrap overrides ── */
.text-muted,
small.text-muted {
  color: var(--cyborg-muted) !important;
}

.content-card,
.card,
.modal-content {
  background: var(--cyborg-panel) !important;
  border: 1px solid var(--cyborg-border) !important;
  border-radius: var(--cyborg-radius) !important;
  color: var(--cyborg-text);
}

.btn-primary,
a.btn-primary {
  background: #fff !important;
  border-color: #fff !important;
  color: #000 !important;
}

.btn-primary:hover {
  background: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
  color: #000 !important;
}

.btn-outline-primary {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
  background: transparent !important;
}

.btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #fff !important;
  color: #fff !important;
}

.form-control,
.form-select,
.choices .choices__inner {
  background: #000 !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: #fff !important;
  border-radius: 8px !important;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1) !important;
}

.section-title h1,
.section-title h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

a:not(.btn):not(.cyborg-row):not(.cyborg-chip) {
  color: #fff;
}

.discord-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000 !important;
  border: 1px solid #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.discord-fab:hover {
  background: #e5e5e5;
  color: #000 !important;
}

/* Products grid */
.category-card,
.category-card--product {
  border: 1px solid var(--cyborg-border) !important;
  border-radius: var(--cyborg-radius) !important;
  background: #000 !important;
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.category-card--product:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.1);
}

.status-v3__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1rem;
}

.status-v3-card:not(.status-v3-card--clean),
.status-card:not(.status-v3-card--clean) {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(4, 4, 6, 0.92) !important;
  border-radius: calc(var(--cyborg-radius) + 2px) !important;
  color: #f5f5f5 !important;
  text-decoration: none !important;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.status-v3-card--clean {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(4, 4, 6, 0.92) !important;
  border-radius: calc(var(--cyborg-radius) + 2px) !important;
  color: #f5f5f5 !important;
  text-decoration: none !important;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.status-v3-card:hover,
.status-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.07);
}

.status-v3-card__media {
  border-radius: 10px;
  overflow: hidden;
  min-height: 64px;
  background-size: cover;
  background-position: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
}

/* Hide old theme chrome if any leaks */
.hud-ticker,
.shell-bar,
.home-future,
.footer-v3__marquee,
.global-tabs {
  display: none !important;
}

footer.footer:not(.cyborg-footer) {
  display: none !important;
}

@media (max-width: 768px) {
  .cyborg-nav__inner {
    flex-wrap: wrap;
    height: auto;
    padding: 0.65rem 0;
  }

  .cyborg-nav {
    height: auto;
  }

  .cyborg-nav__dock {
    width: 100%;
    justify-content: flex-start;
  }

  .cyborg-home__stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cyborg-panel--shimmer,
  .cyborg-bar__fill {
    animation: none !important;
  }
}

/* ── Landing ── */
.cyborg-landing {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 2rem;
}

.cyborg-landing__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .cyborg-landing__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }
}

.cyborg-landing__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.cyborg-landing__lead {
  margin: 0 0 1.5rem;
  max-width: 48ch;
  color: var(--cyborg-dim);
  font-size: 1.05rem;
  line-height: 1.65;
}

.cyborg-landing__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.cyborg-landing__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 0;
}

.cyborg-landing__metrics dt {
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
  margin-bottom: 0.2rem;
}

.cyborg-landing__metrics dd {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.cyborg-landing__metrics a {
  color: #fff;
  text-decoration: none;
}

.cyborg-landing__preview-label {
  font-family: var(--cyborg-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
  margin-bottom: 0.65rem;
  text-align: center;
}

.cyborg-landing__preview {
  width: 100%;
}

.cyborg-landing__cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cyborg-landing__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cyborg-landing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  text-decoration: none !important;
  transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.cyborg-landing-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  color: #fff;
}

.cyborg-landing-card__ix {
  font-family: var(--cyborg-mono);
  font-size: 0.72rem;
  color: var(--cyborg-muted);
}

.cyborg-landing-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.cyborg-landing-card p {
  margin: 0;
  color: var(--cyborg-dim);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}

.cyborg-landing-card__go {
  font-family: var(--cyborg-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
}

.cyborg-chip--external::after {
  content: "↗";
  margin-left: 0.35em;
  font-size: 0.85em;
  opacity: 0.7;
}

/* ── Loader preview ── */
.loader-preview {
  position: relative;
}

.loader-preview__glow {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.07), transparent 65%);
  pointer-events: none;
}

.loader-preview__window {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  min-height: 420px;
}

.loader-preview__corners::before,
.loader-preview__corners::after,
.loader-preview__corners span::before,
.loader-preview__corners span::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(255, 255, 255, 0.45);
  border-style: solid;
  z-index: 3;
  pointer-events: none;
}

.loader-preview__corners::before { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.loader-preview__corners::after { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
.loader-preview__corners span::before { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; }
.loader-preview__corners span::after { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

.loader-preview__titlebar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.92);
  position: relative;
  z-index: 2;
}

.loader-preview__bolt {
  width: 12px;
  height: 12px;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 35% 100%, 50% 65%, 65% 100%, 100% 100%);
}

.loader-preview__conn {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
}

.loader-preview__viewport {
  position: relative;
  min-height: 340px;
}

.loader-preview__stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.loader-preview__screen {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.25rem 1rem;
  min-height: 300px;
}

.loader-preview__card {
  max-width: 320px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.88);
  text-align: center;
}

.loader-preview__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.loader-preview__logo img {
  border-radius: 12px;
  border: 1px solid var(--cyborg-border);
}

.loader-preview__brand {
  margin: 0 0 0.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.loader-preview__hint {
  margin: 0 0 1rem;
  color: var(--cyborg-muted);
  font-size: 0.85rem;
}

.loader-preview__field {
  width: 100%;
  min-height: 42px;
  padding: 0.6rem 0.85rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #000;
  color: #fff;
  font-size: 0.9rem;
}

.loader-preview__loginbtn {
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #000;
  color: #f5f5f5;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.loader-preview__loginbtn:hover:not(:disabled) {
  background: #141414;
  border-color: rgba(255, 255, 255, 0.4);
}

.loader-preview__msg {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--cyborg-muted);
}

.loader-preview__session {
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.65);
  text-align: center;
}

.loader-preview__server {
  margin: 0 0 0.65rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.loader-preview__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  font-size: 0.72rem;
}

.loader-preview__meta .k {
  display: block;
  color: var(--cyborg-muted);
  font-family: var(--cyborg-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.loader-preview__meta .v--ok {
  color: #fff;
  font-weight: 700;
}

.loader-preview__menu {
  display: grid;
  gap: 0.45rem;
  max-width: 360px;
  margin: 0 auto;
}

.loader-preview__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  color: #f5f5f5;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.loader-preview__row .hint {
  font-family: var(--cyborg-mono);
  font-size: 0.68rem;
  color: var(--cyborg-muted);
  font-weight: 500;
}

.loader-preview__row:hover,
.loader-preview__row.is-active {
  border-color: rgba(255, 255, 255, 0.32);
  background: #101010;
}

.loader-preview__progress {
  max-width: 360px;
  margin: 1rem auto 0.5rem;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000;
  overflow: hidden;
}

.loader-preview__progress-fill {
  height: 100%;
  background: #fff;
  border-radius: inherit;
  transition: width 0.25s ease;
}

.loader-preview__foot {
  text-align: center;
  font-size: 0.72rem;
  color: var(--cyborg-muted);
  margin: 0;
}

.loader-preview__tabs {
  display: flex;
  gap: 0.35rem;
  padding: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.9);
}

.loader-preview__tab {
  flex: 1;
  min-height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--cyborg-muted);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.loader-preview__tab.is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: #141414;
}

/* ── Guide page ── */
.cyborg-guide-page {
  padding-bottom: 3rem;
}

.cyborg-guide-hero {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem 0 0.5rem;
}

.cyborg-guide-hero__title {
  margin: 0 auto 0.75rem;
  max-width: 18ch;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cyborg-guide-hero__lead {
  margin: 0 auto;
  max-width: 52ch;
  color: var(--cyborg-dim);
  font-size: 1.05rem;
}

.cyborg-guide-main {
  display: grid;
  gap: 1.25rem;
}

.cyborg-guide-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.cyborg-guide-section__head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.cyborg-guide-date {
  font-size: 0.8rem;
  color: var(--cyborg-muted);
}

.cyborg-guide-desc {
  color: var(--cyborg-dim);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.cyborg-guide-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: var(--cyborg-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
}

.cyborg-guide-banner h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 800;
}

/* ── Footer grid ── */
.cyborg-footer__grid {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .cyborg-footer__grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

.cyborg-footer__brand-col {
  min-width: 0;
}

.cyborg-footer__brand {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff !important;
  text-decoration: none !important;
  margin-bottom: 0.35rem;
}

.cyborg-footer__tag {
  margin: 0;
  font-size: 0.88rem;
  color: var(--cyborg-muted);
  max-width: 36ch;
  line-height: 1.5;
}

.cyborg-footer__heading {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-family: var(--cyborg-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.cyborg-footer__col .cyborg-footer__links {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.cyborg-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: var(--cyborg-muted);
}

.cyborg-footer__meta {
  opacity: 0.85;
}

/* ── Login modal ── */
.cyborg-login-modal .modal-content {
  overflow: visible;
}

.cyborg-login-modal .modal-body {
  overflow: visible;
}

.cyborg-login-modal .cyborg-field,
.cyborg-login-modal .cyborg-btn,
.cyborg-login-modal .cyborg-otp-digit {
  position: relative;
  z-index: 2;
}

.cyborg-login-modal .modal-header .modal-title {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cyborg-otp-row {
  justify-content: center;
}

.cyborg-otp-digit {
  width: 2.5rem;
  height: 3rem;
  font-size: 1.2rem;
  padding: 0;
}

.cyborg-altcha altcha-widget {
  display: block;
  max-width: 100%;
}

body.modal-open {
  overflow: hidden;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .cyborg-landing__metrics {
    grid-template-columns: 1fr;
  }
}

/* ── Custom overlays (no Bootstrap backdrop) ── */
.cyborg-starfield,
.cyborg-vignette {
  pointer-events: none !important;
}

.modal-backdrop {
  z-index: 1070 !important;
}

body:not(.modal-open) .modal-backdrop {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.cyborg-scroll-lock {
  overflow: hidden !important;
}

.cyborg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.cyborg-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  pointer-events: auto;
}

.cyborg-overlay__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  pointer-events: auto;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s ease;
}

.cyborg-overlay.is-open .cyborg-overlay__dialog,
.cyborg-overlay[style*="display: flex"] .cyborg-overlay__dialog,
.cyborg-overlay[style*="display: block"] .cyborg-overlay__dialog {
  transform: translateY(0) scale(1);
}

.cyborg-overlay__dialog--lg {
  max-width: 640px;
}

.cyborg-overlay__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0;
}

.cyborg-overlay__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cyborg-overlay__close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.cyborg-overlay__close:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.cyborg-overlay__body {
  padding: 0.75rem 1.25rem 1.25rem;
}

.cyborg-overlay__lead {
  margin: 0 0 1rem;
  color: var(--cyborg-dim);
  font-size: 0.9rem;
}

.cyborg-overlay .cyborg-panel__body {
  padding: 0;
}

/* ── Loader EXE preview (matches desktop client) ── */
.loader-exe {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  aspect-ratio: 1010 / 680;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  background: #000;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.75);
}

.loader-exe__stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.loader-exe__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.loader-exe__chrome {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 50px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.loader-exe__bolt,
.loader-exe__bolt-lg {
  display: inline-block;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 35% 100%, 50% 65%, 65% 100%, 100% 100%);
}

.loader-exe__bolt { width: 12px; height: 12px; }
.loader-exe__bolt-lg { width: 28px; height: 28px; }

.loader-exe__status {
  font-size: 0.72rem;
  color: #fff;
}

.loader-exe__close {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  opacity: 0.7;
  cursor: default;
  position: relative;
}

.loader-exe__close::before,
.loader-exe__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
}

.loader-exe__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.loader-exe__close::after { transform: translate(-50%, -50%) rotate(-45deg); }

.loader-exe__body {
  position: relative;
  z-index: 2;
  height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
}

.loader-exe__body--login {
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.loader-exe__login-card {
  position: relative;
  width: min(100%, 380px);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.88);
  text-align: center;
}

.loader-exe__corner {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loader-exe__corner i {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(255, 255, 255, 0.5);
  border-style: solid;
}

.loader-exe__corner i:nth-child(1) { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.loader-exe__corner i:nth-child(2) { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.loader-exe__corner i:nth-child(3) { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.loader-exe__corner i:nth-child(4) { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.loader-exe__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.loader-exe__logo img {
  border-radius: 10px;
}

.loader-exe__logo-letter {
  display: inline-flex;
  width: 88px;
  height: 88px;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.loader-exe__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.loader-exe__subtitle {
  margin: 0 0 1rem;
  color: #969698;
  font-size: 0.9rem;
}

.loader-exe__input {
  width: 100%;
  min-height: 42px;
  margin-bottom: 0.75rem;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #000;
  color: #fff;
  font-size: 0.95rem;
}

.loader-exe__login-btn {
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #000;
  color: #f5f5f5;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  cursor: pointer;
}

.loader-exe__login-btn:hover:not(:disabled) {
  background: #101010;
  border-color: rgba(255, 255, 255, 0.4);
}

.loader-exe__hint {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--cyborg-muted);
}

.loader-exe__footer {
  margin-top: auto;
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: #828288;
}

.loader-exe__dots {
  display: flex;
  gap: 0.65rem;
}

.loader-exe__dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  animation: loaderExeDot 1.4s ease-in-out infinite;
}

.loader-exe__dots i:nth-child(2) { animation-delay: 0.2s; }
.loader-exe__dots i:nth-child(3) { animation-delay: 0.4s; }

@keyframes loaderExeDot {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

.loader-exe__body--main {
  padding: 8px 12px 10px;
  gap: 6px;
}

.loader-exe__session {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
  text-align: center;
}

.loader-exe__server {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
}

.loader-exe__meta-chips {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.loader-exe__meta-chips li {
  flex: 1;
  max-width: 110px;
  padding: 6px 4px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.loader-exe__meta-chips .k {
  display: block;
  font-size: 0.62rem;
  color: #8a8a8e;
  letter-spacing: 0.06em;
}

.loader-exe__meta-chips .v {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 2px;
}

.loader-exe__meta-chips .v--on { color: #fff; }

.loader-exe__chip-btn {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  cursor: default;
}

.loader-exe__product {
  margin: 0;
  padding: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.loader-exe__split {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 8px;
  flex: 1;
  min-height: 0;
}

.loader-exe__req {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  overflow: hidden;
}

.loader-exe__req-title {
  margin: 0 0 6px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.loader-exe__shield {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

.loader-exe__req-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.68rem;
}

.loader-exe__req-list li {
  padding: 5px 6px;
  margin-bottom: 1px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #000;
}

.loader-exe__req-list li.ok::before { content: "✓ "; color: #ccc; }
.loader-exe__req-list li.warn::before { content: "✕ "; color: #888; }

.loader-exe__inject {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.loader-exe__ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.loader-exe__ring-label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  color: #dcdcdc;
}

.loader-exe__prog {
  display: block;
  width: 100%;
  height: 14px;
  margin-bottom: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000;
  overflow: hidden;
}

.loader-exe__prog span {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: inherit;
  transition: width 0.3s ease;
}

.loader-exe__inject-btn {
  width: 100%;
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #000;
  color: #f5f5f5;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  cursor: default;
}

.loader-exe__bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
}

.loader-exe__mini-btn {
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: default;
}

/* ── Accounts market ── */
.accounts-market__hero {
  text-align: center;
  margin-bottom: 2rem;
}

.accounts-market__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 800;
}

.accounts-market__lead {
  margin: 0 auto 1.25rem;
  max-width: 52ch;
  color: var(--cyborg-dim);
}

.accounts-market__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accounts-market__stats .k {
  display: block;
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.accounts-market__stats .v {
  font-weight: 700;
  font-size: 1rem;
}

.accounts-market__toolbar {
  max-width: 420px;
  margin: 0 auto 1.5rem;
}

.accounts-market__grid {
  gap: 1rem;
}

.accounts-market__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--cyborg-muted);
  padding: 2rem;
}

/* ── Customer account panel ── */
.cyborg-account-page {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 3rem;
}

.cyborg-account-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .cyborg-account-layout {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.cyborg-account-sidebar {
  padding: 1.25rem;
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.65);
}

.cyborg-account-sidebar__head {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cyborg-account-sidebar__logo {
  border-radius: 8px;
  border: 1px solid var(--cyborg-border);
}

.cyborg-account-sidebar__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.cyborg-account-sidebar__email {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--cyborg-muted);
  word-break: break-all;
}

.cyborg-account-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.cyborg-account-sidebar__link {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  color: var(--cyborg-muted) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.88rem;
}

.cyborg-account-sidebar__link:hover,
.cyborg-account-sidebar__link.is-active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
}

.cyborg-account-sidebar__logout {
  width: 100%;
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  cursor: pointer;
}

.cyborg-account-sidebar__logout:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cyborg-account-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cyborg-account-hero__title {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
  font-weight: 800;
}

.cyborg-account-hero__lead {
  margin: 0 0 1rem;
  color: var(--cyborg-dim);
}

.cyborg-account-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}

.cyborg-account-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.cyborg-account-stat__k {
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
  margin: 0 0 0.25rem;
}

.cyborg-account-stat__v {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.cyborg-account-stat__v--sm {
  font-size: 0.95rem;
}

.cyborg-account-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .cyborg-account-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cyborg-account-card__h {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
}

.cyborg-account-card__name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cyborg-account-card__link {
  color: #fff !important;
}

.cyborg-account-card__date {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--cyborg-muted);
}

.cyborg-account-balance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cyborg-account-balance__amt {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.cyborg-account-danger {
  text-align: right;
  margin: 0.5rem 0 0;
}

.cyborg-account-table-wrap {
  overflow: hidden;
}

.cyborg-account-table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--cyborg-text);
  --bs-table-border-color: rgba(255, 255, 255, 0.08);
}

.cyborg-account-table thead th {
  font-family: var(--cyborg-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.cyborg-account-table tbody td {
  vertical-align: middle;
  font-size: 0.88rem;
}

.cyborg-account-table a {
  color: #fff !important;
}

@media (max-width: 640px) {
  .loader-exe__split {
    grid-template-columns: 1fr;
  }

  .cyborg-nav__links {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem 1rem;
  }
}

/* ── Centered nav ── */
.cyborg-nav__inner--centered {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem 1rem;
}

.cyborg-nav__inner--centered .cyborg-nav__brand {
  justify-self: start;
}

.cyborg-nav__inner--centered .cyborg-nav__links {
  justify-self: center;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 991px) {
  .cyborg-nav__inner--centered {
    grid-template-columns: 1fr;
  }

  .cyborg-nav__inner--centered .cyborg-nav__brand,
  .cyborg-nav__inner--centered .cyborg-nav__links {
    justify-self: stretch;
  }
}

/* ── Route transitions (no full-page loader) ── */
body.cyborg-route-enter .cyborg-main {
  opacity: 0;
  transform: translateY(10px);
}

body.cyborg-route-enter-active .cyborg-main {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.75, 0.2, 1);
}

body.cyborg-route-exit .cyborg-main {
  opacity: 0;
  transform: translateY(-8px) scale(0.992);
  filter: blur(2px);
  transition: opacity 0.32s ease, transform 0.32s ease, filter 0.32s ease;
}

.cyborg-route-wipe {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.03) 42%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.03) 58%, transparent 64%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  transform: translateX(-130%) skewX(-12deg);
}

.cyborg-route-wipe.is-active {
  opacity: 1;
  animation: cyborgRouteWipeOut 0.36s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

.cyborg-route-wipe.is-enter {
  animation: cyborgRouteWipeIn 0.5s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

@keyframes cyborgRouteWipeOut {
  from { transform: translateX(-130%) skewX(-14deg); opacity: 0; }
  20% { opacity: 1; }
  to { transform: translateX(130%) skewX(-14deg); opacity: 0; }
}

@keyframes cyborgRouteWipeIn {
  from { transform: translateX(130%) skewX(-14deg); opacity: 0; }
  30% { opacity: 0.85; }
  to { transform: translateX(-130%) skewX(-14deg); opacity: 0; }
}

[x-cloak] {
  display: none !important;
}

.cyborg-login-step {
  animation: cyborgFadeIn 0.35s ease;
}

@keyframes cyborgFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

/* ── Variants (fix white-on-white) ── */
.product-page-remake .variants .variant,
.variants .variant {
  background: #000 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #f5f5f5 !important;
  border-radius: var(--cyborg-radius-sm) !important;
  padding: 0.75rem 1rem !important;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.25s ease;
}

.product-page-remake .variants .variant:hover,
.variants .variant:hover {
  border-color: rgba(255, 255, 255, 0.32) !important;
  background: #101010 !important;
}

.product-page-remake .variants .variant.active,
.variants .variant.active {
  border-color: rgba(255, 255, 255, 0.45) !important;
  background: #141414 !important;
  color: #fff !important;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.variants .variant .name {
  color: #fff !important;
  font-weight: 600;
}

.variants .variant .stock,
.variants .variant .description {
  color: var(--cyborg-muted) !important;
}

.variants .variant .price {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.variants .variant .active-indicator svg {
  color: #fff !important;
}

/* ── Product cards ── */
.category-card.category-card--product {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: #000 !important;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.category-card.category-card--product:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.category-bg--product {
  filter: brightness(0.7);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.category-card--product:hover .category-bg--product {
  transform: scale(1.04);
  filter: brightness(0.85);
}

.category-overlay--product {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
}

.category-title {
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
}

.category-caption,
.category-eyebrow {
  color: var(--cyborg-muted);
  font-size: 0.82rem;
}

.products-page__search {
  max-width: 420px;
}

.products-page__back {
  display: inline-flex;
  padding: 0.4rem 0.85rem;
  min-height: auto;
}

/* ── Compact footer ── */
.cyborg-footer--compact {
  margin-top: 1.25rem;
  padding: 0.85rem 0;
}

.cyborg-footer__grid--compact {
  gap: 1rem;
  padding-bottom: 0.65rem;
}

.cyborg-footer--compact .cyborg-footer__tag {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.cyborg-footer--compact .cyborg-footer__heading {
  margin-bottom: 0.4rem;
  font-size: 0.65rem;
}

.cyborg-footer--compact .cyborg-footer__bar {
  padding-top: 0.65rem;
  font-size: 0.75rem;
}

/* ── Feedback ── */
.feedback-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1rem;
}

.feedback-card {
  height: 100%;
}

.feedback-card__body {
  padding: 1.15rem 1.1rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feedback-card__stars {
  display: flex;
  gap: 0.15rem;
}

.feedback-card__star {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1rem;
}

.feedback-card__star--on {
  color: #ffd700;
}

.feedback-card__message {
  color: var(--cyborg-dim);
  line-height: 1.6;
  flex: 1;
}

.feedback-card__more {
  border: none;
  background: none;
  color: #fff;
  text-decoration: underline;
  font-size: 0.85rem;
  padding: 0;
  margin-left: 0.25rem;
  cursor: pointer;
}

.feedback-card__reply {
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
}

.feedback-card__reply-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.feedback-card__foot {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feedback-card__date {
  font-size: 0.78rem;
  color: var(--cyborg-muted);
}

.feedback-page .testimonial {
  display: none;
}

/* ── Status page ── */
.status-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.status-page__grid-wrap .status-v3__grid {
  margin-bottom: 0;
}

/* ── Loader chrome (no secure connection) ── */
.loader-exe__chrome--app {
  justify-content: space-between;
}

.loader-exe__chrome-title {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.loader-exe__nav-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.25rem;
  cursor: default;
}

.loader-exe__chip-btn--float {
  margin: 0 auto 0.35rem;
  display: block;
}

.loader-exe__session {
  position: relative;
}

.cyborg-landing__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 0;
}

.cyborg-landing__metrics dt {
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
  margin-bottom: 0.2rem;
}

.cyborg-landing__metrics dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.cyborg-landing__metrics a {
  color: #fff;
  text-decoration: none;
}

.cyborg-landing__metrics a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  body.cyborg-route-enter .cyborg-main,
  body.cyborg-route-enter-active .cyborg-main,
  body.cyborg-route-exit .cyborg-main {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .cyborg-route-wipe {
    display: none !important;
  }
}

/* ── Product card images (visible) ── */
.category-card--product {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 0 !important;
  overflow: hidden;
}

.product-card__media {
  position: relative;
  flex: 1 1 auto;
  min-height: 200px;
  background: #0a0a0a;
}

.product-card__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
}

.product-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.08), #000 70%);
}

.category-overlay--product {
  position: relative;
  flex-shrink: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
  padding: 1rem !important;
}

/* ── Loader v2 (matches desktop client) ── */
.loader-exe {
  border-radius: 4px;
  max-width: 720px;
  aspect-ratio: 1010 / 680;
}

.loader-exe__top {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.95);
}

.loader-exe__top-title {
  margin: 0;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.loader-exe__top-right {
  display: flex;
  gap: 0.25rem;
}

.loader-exe__icon-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.loader-exe__icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.loader-exe__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0;
}

.loader-exe__menu span {
  display: block;
  width: 14px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
}

.loader-exe__session-row {
  display: flex;
  justify-content: flex-end;
  padding: 0.35rem 0.5rem 0;
}

.loader-exe__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

.loader-exe__frame::before,
.loader-exe__frame::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: rgba(255, 255, 255, 0.45);
  border-style: solid;
}

.loader-exe__frame::before {
  top: 8px;
  left: 8px;
  border-width: 2px 0 0 2px;
}

.loader-exe__frame::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 2px 2px 0;
}

.loader-exe__panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #000;
  padding: 8px;
}

.loader-exe__panel-title {
  margin: 0 0 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.loader-exe__product-bar {
  margin: 0 0.5rem 0.4rem;
  padding: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #000;
}

.loader-exe__ring.is-ready {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

.loader-exe__ring.is-pulse {
  animation: loaderRingPulse 1.2s ease-in-out infinite;
}

@keyframes loaderRingPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 255, 255, 0.1); }
  50% { box-shadow: 0 0 28px rgba(255, 255, 255, 0.35); }
}

.loader-exe__mini-btn.is-on {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: #141414;
}

.loader-exe__inject-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.loader-exe__foot-mini {
  text-align: center;
  font-size: 0.72rem;
  color: #828288;
  margin-top: 0.75rem;
}

/* ── Accounts market (cheaters.market style) ── */
.accounts-market__hero {
  text-align: center;
  margin-bottom: 2rem;
}

.accounts-featured {
  margin-bottom: 2rem;
}

.accounts-featured__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 220px;
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  text-decoration: none !important;
  color: #fff !important;
  transition: border-color 0.25s ease, box-shadow 0.3s ease;
}

.accounts-featured__card:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.accounts-featured__bg {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: brightness(0.75);
}

.accounts-featured__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.88);
}

.accounts-featured__tag {
  font-family: var(--cyborg-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
  margin-bottom: 0.5rem;
}

.accounts-featured__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.accounts-featured__desc {
  margin: 0 0 1rem;
  color: var(--cyborg-dim);
  font-size: 0.9rem;
  line-height: 1.55;
}

.accounts-featured__price {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.accounts-market__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
}

.accounts-market__count {
  margin: 0 0 1rem;
  color: var(--cyborg-muted);
  font-size: 0.9rem;
}

.account-card {
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.account-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.account-card__link {
  display: block;
  text-decoration: none !important;
  color: #fff !important;
}

.account-card__banner {
  position: relative;
  height: 120px;
  background: #111;
}

.account-card__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-card__banner-img--empty {
  background: linear-gradient(135deg, #1a1a1a, #000);
}

.account-card__banner-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85));
}

.account-card__logo {
  position: absolute;
  left: 12px;
  bottom: -18px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  z-index: 2;
}

.account-card__body {
  padding: 1.5rem 1rem 1rem;
}

.account-card__crumb {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  color: var(--cyborg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.account-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.account-card__desc {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: var(--cyborg-dim);
  line-height: 1.5;
}

.account-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.account-card__price {
  font-weight: 800;
  font-size: 1rem;
  margin-right: 0.35rem;
}

.account-card__badge {
  font-size: 0.68rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.account-card__badge--ok {
  color: #9f9;
  border-color: rgba(150, 255, 150, 0.25);
}

.account-card__badge--out {
  color: #f99;
}

.account-card__badge--dim {
  color: var(--cyborg-muted);
}

.account-card__cta {
  font-family: var(--cyborg-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
}

/* ── Product page polish ── */
.product-page-remake__gallery {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: #000 !important;
}

.product-page-remake__gallery img {
  border-radius: 8px;
}

.product-page-remake-buy {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(0, 0, 0, 0.75) !important;
}

.product-page-remake__eyebrow {
  font-family: var(--cyborg-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

/* ── Guide page v2 ── */
.cyborg-guide-page .cyborg-guide-nav {
  animation: cyborgFadeIn 0.5s ease;
}

.cyborg-guide-page .cyborg-guide-section {
  transition: border-color 0.25s ease, box-shadow 0.3s ease;
}

.cyborg-guide-page .cyborg-guide-section:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.cyborg-guide-page .cyborg-step {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cyborg-guide-page .cyborg-step:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.cyborg-guide-page code {
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cyborg-guide-nav a {
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.cyborg-guide-nav a:hover {
  padding-left: 0.35rem;
}

.cyborg-guide-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.product-category-badges {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .accounts-featured__card {
    grid-template-columns: 1fr;
  }

  .accounts-featured__bg {
    min-height: 140px;
  }
}

/* ── Game tiles (reference product boxes) ── */
.game-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding-top: 0.75rem;
}

@media (max-width: 992px) {
  .game-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .game-tile-grid {
    grid-template-columns: 1fr;
  }
}

.game-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  color: #fff !important;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.game-tile:hover {
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}

.game-tile__img,
.game-tile__img--empty,
.game-tile__shade,
.game-tile__foot {
  border-radius: 16px;
}

.game-tile__img,
.game-tile__img--empty,
.game-tile__shade {
  overflow: hidden;
}

.game-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.game-tile__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.08), #000 72%);
}

.game-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.92) 100%);
  pointer-events: none;
}

.game-tile__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.game-tile__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.85rem 1rem 1rem;
}

.game-tile__price {
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.game-tile__sub {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.65);
}

.game-tile__title {
  margin: 0;
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

/* ── Homepage v2 ── */
.home-v2 {
  padding-bottom: 2rem;
}

.home-v2__hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
}

.home-v2__hero-inner {
  max-width: 720px;
}

.home-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-family: var(--cyborg-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.home-v2__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  animation: home-v2-pulse 2s ease-in-out infinite;
}

@keyframes home-v2-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.home-v2__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.home-v2__lead {
  margin: 0 0 1.5rem;
  max-width: 52ch;
  color: var(--cyborg-dim);
  font-size: 1.05rem;
  line-height: 1.65;
}

.home-v2__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.home-v2__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-v2__stats .k {
  display: block;
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.home-v2__stats .v {
  font-weight: 800;
  font-size: 1rem;
}

.home-v2__products,
.home-v2__reviews {
  padding: 2rem 0;
}

.home-v2__section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.home-v2__section-title {
  margin: 0.15rem 0 0;
  font-size: clamp(1.35rem, 1rem + 1.2vw, 1.85rem);
  font-weight: 800;
}

.home-v2__strip {
  padding: 1.5rem 0 2rem;
}

.home-v2__strip-inner {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .home-v2__strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .home-v2__strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home-v2__strip-item {
  padding: 1.15rem 1.1rem;
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
}

.home-v2__strip-ix {
  font-family: var(--cyborg-mono);
  font-size: 0.68rem;
  color: var(--cyborg-muted);
}

.home-v2__strip-item h3 {
  margin: 0.35rem 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
}

.home-v2__strip-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--cyborg-dim);
  line-height: 1.5;
}

.home-v2__reviews-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .home-v2__reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.home-v2__cta-band {
  padding: 1rem 0 2.5rem;
}

.home-v2__cta-band-body {
  text-align: center;
}

.home-v2__cta-band-body h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.home-v2__cta-band-body p {
  margin: 0 0 1.25rem;
  color: var(--cyborg-dim);
}

.home-v2__cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* ── Accounts listings (horizontal rows) ── */
.accounts-market__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: var(--cyborg-muted);
}

.accounts-market__crumbs a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.accounts-market__crumbs a:hover {
  color: #fff;
}

.accounts-market__crumbs-gap {
  flex: 1;
  min-width: 0.5rem;
}

.accounts-market__hero-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}

.accounts-market__hero {
  text-align: left;
}

.accounts-market__stats {
  justify-content: flex-start;
}

.accounts-market__search {
  width: 100%;
  max-width: 480px;
}

.accounts-featured__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}

.accounts-featured__card {
  grid-template-columns: 1.1fr 1fr;
}

.accounts-featured__bg {
  position: relative;
  z-index: 0;
}

.accounts-market__list-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.accounts-market__list-head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.accounts-market__list-head p {
  margin: 0;
  color: var(--cyborg-muted);
  font-size: 0.88rem;
}

.accounts-market__listings {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.acct-listing {
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.65);
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.acct-listing:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.acct-listing__link {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  text-decoration: none !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .acct-listing__link {
    grid-template-columns: 1fr;
  }
}

.acct-listing__visual {
  position: relative;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background: #0a0a0a;
}

.acct-listing__banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.acct-listing__banner--empty {
  background: linear-gradient(135deg, #111, #000);
}

.acct-listing__logo {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.acct-listing__crumb {
  margin: 0 0 0.25rem;
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.acct-listing__crumb span {
  opacity: 0.5;
  margin: 0 0.2rem;
}

.acct-listing__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.acct-listing__desc {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  color: var(--cyborg-dim);
  line-height: 1.45;
}

.acct-listing__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.acct-listing__tag {
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
}

.acct-listing__tag--ok {
  border-color: rgba(120, 220, 140, 0.35);
  color: #9ee0a8;
}

.acct-listing__tag--out {
  border-color: rgba(255, 120, 120, 0.35);
  color: #f0a0a0;
}

.acct-listing__aside {
  text-align: right;
  min-width: 120px;
}

.acct-listing__price-label {
  margin: 0;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyborg-muted);
}

.acct-listing__price {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.acct-listing__btn {
  white-space: nowrap;
  font-size: 0.78rem;
  padding: 0.45rem 0.85rem;
}

/* ── Home landing + loader login chrome ── */
.home-v2__landing {
  padding: clamp(2rem, 5vw, 3.5rem) 0 1.5rem;
}

.home-v2__landing .cyborg-landing__grid {
  margin-bottom: 2rem;
}

.home-v2__section-sub {
  margin: 0.35rem 0 0;
  color: var(--cyborg-dim);
  font-size: 0.92rem;
}

.home-v2__reviews-rating {
  margin: 0.35rem 0 0;
  color: var(--cyborg-muted);
  font-size: 0.88rem;
}

.home-v2__steps {
  padding: 1.5rem 0 2rem;
}

.home-v2__steps-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .home-v2__steps-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.home-v2__steps-list li {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
}

.home-v2__step-n {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--cyborg-mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.home-v2__steps-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.home-v2__steps-list p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--cyborg-dim);
  line-height: 1.5;
}

.cyborg-nav__link--reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cyborg-nav__stars {
  color: #fff;
  font-size: 0.72rem;
}

.cyborg-nav__rating {
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--cyborg-mono);
  font-size: 0.68rem;
  font-weight: 700;
}

.cyborg-footer__rating {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.loader-exe__top-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.75rem;
  position: relative;
  z-index: 4;
  width: 100%;
}

.loader-exe__top-app {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.5rem;
  position: relative;
  z-index: 4;
  width: 100%;
}

.loader-exe__mini-btn--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.loader-exe__secure {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: #fff;
}

.loader-exe__body--login {
  position: relative;
}

.loader-exe__discord {
  position: absolute;
  right: 1rem;
  bottom: 2.5rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.35rem;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.loader-exe__discord:hover {
  opacity: 1;
}

.loader-exe__login-card {
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(6px);
}

.loader-exe__logo-letter {
  font-size: 2.75rem;
}

.loader-exe__foot-mini {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-bottom: 0.75rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Accounts market cards (cheaters.market style) ── */
.accounts-market__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
}

.acct-card {
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.72);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.acct-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.acct-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: #fff !important;
}

.acct-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.acct-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acct-card__img--empty {
  background: linear-gradient(135deg, #141414, #000);
  min-height: 100%;
}

.acct-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.acct-card__crumb {
  position: absolute;
  left: 0.75rem;
  bottom: 0.65rem;
  z-index: 1;
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.acct-card__crumb span {
  opacity: 0.45;
  margin: 0 0.2rem;
}

.acct-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1rem 1.1rem;
  gap: 0.5rem;
}

.acct-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.acct-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.acct-card__meta li {
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.72);
}

.acct-card__meta--ok {
  border-color: rgba(120, 220, 140, 0.35);
  color: #9ee0a8;
}

.acct-card__meta--out {
  border-color: rgba(255, 120, 120, 0.35);
  color: #f0a0a0;
}

.acct-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.acct-card__price {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.acct-card__cta {
  font-family: var(--cyborg-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.acct-card:hover .acct-card__cta {
  color: #fff;
}

/* ── Customer portal (remade account panel) ── */
.portal-page {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 3rem;
}

.portal-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .portal-layout {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }
}

.portal-sidebar {
  padding: 1.15rem;
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.95), rgba(0, 0, 0, 0.88));
}

.portal-sidebar__user {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portal-sidebar__avatar {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.portal-sidebar__avatar--letter {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: #000;
}

.portal-sidebar__label {
  margin: 0;
  font-family: var(--cyborg-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.portal-sidebar__email {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  word-break: break-all;
}

.portal-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.portal-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  color: var(--cyborg-muted) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.portal-sidebar__link:hover,
.portal-sidebar__link.is-active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.07);
}

.portal-sidebar__ix {
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.35);
  min-width: 1.25rem;
}

.portal-sidebar__logout {
  width: 100%;
  min-height: 38px;
  margin-top: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  cursor: pointer;
}

.portal-sidebar__logout:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.portal-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portal-hero {
  padding: 1.35rem 1.25rem;
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.6);
}

.portal-hero__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
  font-weight: 800;
}

.portal-hero__lead {
  margin: 0 0 1rem;
  color: var(--cyborg-dim);
  max-width: 52ch;
}

.portal-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portal-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.65rem;
}

.portal-stat {
  padding: 1rem;
  border-radius: var(--cyborg-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
}

.portal-stat__k {
  margin: 0 0 0.25rem;
  font-family: var(--cyborg-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.portal-stat__v {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.portal-stat__v--sm {
  font-size: 0.95rem;
}

.portal-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .portal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portal-card--wide {
    grid-column: 1 / -1;
  }
}

.portal-card {
  padding: 1.15rem 1.1rem;
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
}

.portal-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.portal-card__head h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.portal-card__link {
  font-size: 0.78rem;
  color: var(--cyborg-muted) !important;
  text-decoration: none !important;
}

.portal-card__link:hover {
  color: #fff !important;
}

.portal-card__product {
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.portal-card__meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--cyborg-muted);
}

.portal-card__meta a {
  color: #fff !important;
}

.portal-card__hint,
.portal-card__empty {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--cyborg-dim);
}

.portal-balance__amt {
  margin: 0 0 0.35rem;
}

.portal-danger {
  text-align: right;
  margin: 0.25rem 0 0;
}

.portal-table-wrap {
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.portal-table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--cyborg-text);
  --bs-table-border-color: rgba(255, 255, 255, 0.08);
}

.portal-table thead th {
  font-family: var(--cyborg-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  padding: 0.85rem 1rem;
}

.portal-table tbody td {
  vertical-align: middle;
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
}

.portal-table a {
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════
   CYBORG — grid, pill nav, hero, product, loader scale
   ═══════════════════════════════════════════════════════════ */

:root {
  --cyborg-green: #34d399;
  --cyborg-green-dim: rgba(52, 211, 153, 0.15);
  --cyborg-grid: rgba(255, 255, 255, 0.04);
  --cyborg-panel: rgba(14, 14, 16, 0.92);
  --cyborg-border: rgba(255, 255, 255, 0.1);
}

body.cyborg-app {
  background-color: #000;
  background-image:
    linear-gradient(var(--cyborg-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--cyborg-grid) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center top;
}

.cyborg-starfield {
  opacity: 0.35;
}

.cyborg-vignette {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.85) 100%);
}

.cyborg-main {
  padding-top: 0.5rem;
}

/* ── Pill nav ── */
.cyborg-nav-wrap {
  position: sticky;
  top: 0.75rem;
  z-index: 100;
  padding: 0 1rem 0.75rem;
  pointer-events: none;
}

.cyborg-nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.45rem 0.65rem 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

.cyborg-nav__brand {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #fff !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.cyborg-nav__promo {
  display: none !important;
}

.cyborg-nav__promo-code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
}

.cyborg-nav__promo-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.cyborg-nav__promo-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
}

.cyborg-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.1rem;
}

.cyborg-nav__link {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 0.86rem;
  font-weight: 700;
  background: none;
  border: none;
  padding: 0.25rem 0;
  cursor: pointer;
  font-family: inherit;
  opacity: 1;
  transition: text-shadow 0.2s ease, transform 0.2s ease;
}

.cyborg-nav__link:hover,
.cyborg-nav__link.is-active {
  color: #ffffff !important;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.55);
}

.cyborg-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.cyborg-nav__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 36px;
  min-height: 36px;
  padding: 0 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cyborg-nav__action:hover,
.cyborg-nav__action.is-active {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

.cyborg-nav__action-text {
  display: none;
}

@media (min-width: 1100px) {
  .cyborg-nav__action-text {
    display: inline;
  }
}

.cyborg-nav__action--cart {
  position: relative;
  padding-right: 0.55rem;
}

.cyborg-nav__cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
}

.cyborg-nav__action--discord {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: #000 !important;
  padding: 0 0.55rem;
}

.cyborg-nav__action--discord:hover {
  background: #fff;
  color: #000 !important;
}

.cyborg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cyborg-dot--green {
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.55);
}

/* ── Buttons ── */
.cyborg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cyborg-btn--white {
  background: #fff;
  color: #000 !important;
}

.cyborg-btn--white:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}

.cyborg-btn--ghost {
  border-color: var(--cyborg-border);
  color: #fff !important;
  background: transparent;
}

.cyborg-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.cyborg-btn--text {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55) !important;
  min-height: auto;
  padding: 0.55rem 0.5rem;
}

.cyborg-btn--text:hover {
  color: #fff !important;
}

/* ── Home hero ── */
.cyborg-home {
  padding-bottom: 3rem;
}

.cyborg-hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 2rem;
}

.cyborg-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .cyborg-hero__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }
}

.cyborg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--cyborg-border);
  background: rgba(0, 0, 0, 0.65);
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.cyborg-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 1.3rem + 2.8vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.cyborg-hero__accent {
  color: #fff;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.25);
}

.cyborg-hero__lead {
  margin: 0 0 1.35rem;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.02rem;
  line-height: 1.65;
}

.cyborg-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 1.5rem;
}

.cyborg-hero__cta--center {
  justify-content: center;
}

.cyborg-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cyborg-hero__stats .k {
  display: block;
  font-family: var(--cyborg-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.cyborg-hero__stats .v {
  font-weight: 800;
  font-size: 1rem;
}

/* ── Home loader showcase ── */
.loader-showcase {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.loader-showcase--iron {
  max-width: 100%;
}

.loader-showcase__frame--lg {
  padding: 0.85rem;
  border-radius: 16px;
}

.loader-showcase__head {
  text-align: center;
  margin-bottom: 0.85rem;
}

.loader-showcase__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.loader-showcase__title {
  margin: 0 0 0.25rem;
  font-size: clamp(1.35rem, 1rem + 1.2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.2);
}

.loader-showcase__sub {
  margin: 0;
  font-size: 0.82rem;
  color: var(--cyborg-dim);
}

.loader-showcase__frame {
  padding: 0.65rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 48px rgba(255, 255, 255, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.55);
}

.cyborg-hero--clean {
  padding-bottom: 1.5rem;
}

.cyborg-hero__stats--compact {
  gap: 1rem 1.5rem;
}

.cyborg-strip {
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cyborg-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  font-family: var(--cyborg-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.cyborg-strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.loader-exe--home.loader-exe--desktop {
  flex-shrink: 0;
}

.loader-showcase .loader-exe-scaler,
.home-loader-embed .loader-exe-scaler {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.loader-showcase .loader-exe-scaler {
  margin: 0;
}

.loader-exe__win-dots {
  display: inline-flex;
  gap: 5px;
  margin-left: auto;
}

.loader-exe__win-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.cyborg-hero__float {
  display: none !important;
}

/* ── Loader scale (fixes zoom) ── */
.loader-exe-scaler {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  overflow: visible;
}

.loader-exe--hero {
  pointer-events: auto;
  touch-action: manipulation;
}

.loader-exe--hero .loader-exe__login-btn,
.loader-exe--hero .loader-exe__icon-btn,
.loader-exe--hero .loader-exe__inject-btn,
.loader-exe--hero .loader-exe__mini-btn,
.loader-exe--hero .loader-exe__chip-btn,
.loader-exe--hero .loader-exe__input {
  pointer-events: auto;
}

.loader-exe.loader-exe--desktop {
  position: relative;
  width: 1010px;
  height: 680px;
  max-width: none;
  margin: 0 auto;
  aspect-ratio: auto;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-shrink: 0;
}

.loader-exe--desktop .loader-exe__body {
  flex: 1;
  min-height: 0;
  height: auto;
  overflow: hidden;
}

.loader-exe--desktop .loader-exe__top {
  flex-shrink: 0;
}

.loader-exe--desktop .loader-exe__session .loader-exe__server {
  margin: 0 0 0.5rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.loader-exe--desktop .loader-exe__body--main {
  padding: 6px 10px 10px;
  overflow-y: auto;
}

.loader-exe--desktop .loader-exe__body--login {
  padding: 1rem;
}

.loader-exe--desktop .loader-exe__login-card {
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(8px);
}

.loader-exe--desktop .loader-exe__icon-btn {
  cursor: pointer;
}

.loader-exe--desktop .loader-exe__login-btn:not(:disabled),
.loader-exe--desktop .loader-exe__inject-btn:not(:disabled),
.loader-exe--desktop .loader-exe__mini-btn,
.loader-exe--desktop .loader-exe__chip-btn {
  cursor: pointer;
}

/* ── Sections ── */
.cyborg-section {
  padding: 2rem 0 2.5rem;
}

.cyborg-section--dim {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cyborg-section__rule {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.cyborg-section__rule h2 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.cyborg-section__line {
  flex: 1;
  min-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
}

.cyborg-section__link {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--cyborg-muted) !important;
  text-decoration: none !important;
}

.cyborg-section__more {
  margin: 1.25rem 0 0;
  text-align: center;
}

.cyborg-perks {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .cyborg-perks {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .cyborg-perks {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cyborg-perk {
  padding: 1.1rem;
  border-radius: var(--cyborg-radius);
  border: 1px solid var(--cyborg-border);
  background: rgba(0, 0, 0, 0.55);
}

.cyborg-perk--glow {
  background: linear-gradient(145deg, rgba(12, 12, 14, 0.9), rgba(0, 0, 0, 0.75));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.cyborg-perk__n {
  font-family: var(--cyborg-mono);
  font-size: 0.65rem;
  color: var(--cyborg-muted);
}

.cyborg-perk h3 {
  margin: 0.35rem 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.cyborg-perk p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--cyborg-dim);
  line-height: 1.5;
}

.cyborg-cta-band {
  padding: 2.5rem 0 3rem;
}

.cyborg-cta-band__inner {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--cyborg-radius);
  border: 1px solid var(--cyborg-border);
  background: rgba(0, 0, 0, 0.6);
}

.cyborg-cta-band__inner h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.cyborg-cta-band__inner p {
  margin: 0 0 1.25rem;
  color: var(--cyborg-dim);
}

/* ── Products page head ── */
.cyborg-page-head {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.cyborg-page-head__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cyborg-page-head__sub {
  margin: 0 auto 1.25rem;
  max-width: 52ch;
  color: var(--cyborg-dim);
}

.cyborg-page-head__search {
  max-width: 360px;
  margin: 0 auto;
}

/* ── Game tiles ── */
.game-tile-grid {
  gap: 1rem;
  padding-top: 0.85rem;
}

.game-tile {
  border-radius: 14px;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.game-tile:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.22);
}

.game-tile__title {
  font-size: clamp(0.95rem, 0.8rem + 0.5vw, 1.2rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}

/* ── Product page ── */
.product-cyborg__hero {
  position: relative;
  min-height: 520px;
  padding: 1.5rem 0 2.5rem;
  background: #000 center/cover no-repeat;
  background-image: var(--product-hero, none);
  overflow: hidden;
}

.product-cyborg__hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.95) 100%);
  pointer-events: none;
}

.product-cyborg__hero-inner {
  position: relative;
  z-index: 1;
}

.product-cyborg__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: var(--cyborg-muted);
}

.product-cyborg__crumbs a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
}

.product-cyborg__crumbs a:hover {
  color: #fff !important;
}

.product-cyborg__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.product-cyborg__tag {
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--cyborg-border);
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
}

.product-cyborg__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2.2rem, 1.5rem + 3vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.product-cyborg__desc {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cyborg-checkout-panel {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--cyborg-panel);
  backdrop-filter: blur(14px);
  padding: 1.25rem 1.15rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.cyborg-checkout-form__label {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--cyborg-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
  margin-bottom: 0.65rem;
}

.cyborg-checkout-form__block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.cyborg-checkout-form__variants-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0 0 0.75rem;
}

.cyborg-checkout-form__variants-wrap .cyborg-durations {
  width: 100%;
  justify-items: stretch;
}

.cyborg-checkout-form .cyborg-duration {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cyborg-checkout-form__variants {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem !important;
}

.cyborg-checkout-form__variants .variant {
  position: relative;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 0.75rem 0.85rem !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(0, 0, 0, 0.55) !important;
  min-height: 72px;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.cyborg-checkout-form__variants .variant:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.32) !important;
  transform: translateY(-1px);
}

.cyborg-checkout-form__variants .variant:disabled {
  pointer-events: none;
  opacity: 0.45;
}

.product-cyborg__checkout,
.cyborg-checkout-panel {
  position: relative;
  z-index: 4;
}

.cyborg-checkout-form__variants .variant.active {
  border-color: rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.cyborg-checkout-form__variants .variant .name-stock .name {
  font-weight: 700;
  font-size: 0.88rem;
}

.cyborg-checkout-form__variants .variant .price {
  margin-top: auto;
  font-weight: 800;
  color: var(--cyborg-green) !important;
}

.cyborg-checkout-form__variants .variant .price s {
  color: var(--cyborg-muted) !important;
  font-size: 0.75rem;
}

.cyborg-checkout-form__variants .variant .description,
.cyborg-checkout-form__variants .variant .stock {
  display: none;
}

.cyborg-checkout-form__variants .active-indicator {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
}

.cyborg-checkout-form .btn-primary,
.cyborg-checkout-form .btn-outline-primary.w-100 {
  width: 100%;
  min-height: 48px;
  border-radius: 10px !important;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cyborg-checkout-form .btn-primary {
  background: #fafafa !important;
  border-color: transparent !important;
  color: #09090b !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.cyborg-checkout-panel__note {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-cyborg__body {
  padding: 2rem 0 3rem;
}

.product-cyborg__tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.product-cyborg__tab {
  min-height: 36px;
  padding: 0 0.85rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--cyborg-muted);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
}

.product-cyborg__tab.is-active,
.product-cyborg__tab:hover {
  color: #fff;
  border-color: var(--cyborg-border);
  background: rgba(255, 255, 255, 0.05);
}

.product-cyborg__editor .editor-tab {
  display: none;
}

.product-cyborg__editor .editor-tab.is-open {
  display: block;
}

.product-cyborg__sysreq {
  margin-top: 2.5rem;
}

.product-cyborg__sysreq-head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.product-cyborg__sysreq-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
  font-weight: 800;
}

.product-cyborg__sysreq-head p {
  margin: 0;
  color: var(--cyborg-dim);
}

.product-cyborg__sysreq-title {
  margin: 0 0 1rem;
  font-weight: 800;
  font-size: 0.95rem;
}

.product-cyborg__sysreq-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .product-cyborg__sysreq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-cyborg__sysreq-grid .k {
  display: block;
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
  margin-bottom: 0.35rem;
}

.product-cyborg__sysreq-grid .v {
  margin: 0 0 0.15rem;
  font-weight: 700;
}

.product-cyborg__sysreq-grid .v--warn {
  color: #fbbf24;
}

.product-cyborg__sysreq-grid .hint {
  display: block;
  font-size: 0.75rem;
  color: var(--cyborg-muted);
  margin-bottom: 0.65rem;
}

.product-cyborg__sysreq-grid .hint--warn {
  color: #fbbf24;
}

@media (max-width: 991px) {
  .cyborg-nav {
    flex-wrap: wrap;
    border-radius: 16px;
    justify-content: center;
  }

  .cyborg-nav__links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .loader-exe-scaler {
    max-width: 100%;
  }

  .product-cyborg__hero {
    min-height: auto;
  }

  .product-cyborg__checkout {
    margin-top: 0.5rem;
  }
}

/* ═══ Void theme — nav mark, loader polish, footer, status, accounts ═══ */

.cyborg-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.cyborg-nav__brand-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.65);
  animation: voidPulse 2.4s ease-in-out infinite;
}

.cyborg-nav__brand-text {
  font-weight: 800;
  letter-spacing: 0.04em;
}

@keyframes voidPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1); }
}

.loader-exe__login-card--enter {
  animation: loaderCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes loaderCardIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.loader-exe__login-card--enter::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.45),
    rgba(255, 255, 255, 0.05)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: loaderBorderShimmer 3.2s ease-in-out infinite;
}

@keyframes loaderBorderShimmer {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.9; }
}

.loader-exe__foot-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: rgba(130, 130, 135, 0.95);
  letter-spacing: 0.04em;
}

.loader-exe__session-dots {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.loader-exe__session-dots i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: loaderDotPulse 1.1s ease-in-out infinite;
}

.loader-exe__session-dots i:nth-child(2) { animation-delay: 0.18s; }
.loader-exe__session-dots i:nth-child(3) { animation-delay: 0.36s; }

@keyframes loaderDotPulse {
  0%, 100% { opacity: 0.2; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1.15); }
}

.loader-exe__secure .loader-exe__bolt {
  animation: voidPulse 1.8s ease-in-out infinite;
}

.void-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
}

.void-footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  padding-bottom: 1.75rem;
}

.void-footer__name {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff !important;
  text-decoration: none !important;
  margin-bottom: 0.45rem;
}

.void-footer__tag {
  margin: 0;
  max-width: 28rem;
  font-size: 0.82rem;
  color: var(--cyborg-muted);
  line-height: 1.5;
}

.void-footer__col h3 {
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.75rem;
}

.void-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.void-footer__col a {
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none !important;
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.void-footer__col a:hover {
  color: #fff !important;
  transform: translateX(3px);
}

.void-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.void-footer__meta {
  font-family: var(--cyborg-mono);
  letter-spacing: 0.06em;
}

.void-page .cyborg-page__title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.status-page__empty {
  margin: 2rem 0 0;
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--cyborg-muted);
  font-size: 0.9rem;
}

.status-v3-card-wrap {
  display: contents;
}

.status-v3-card-wrap .status-v3-card {
  height: 100%;
}

.product-cyborg__tab--sysreq.is-active,
.product-cyborg__tab--sysreq:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.void-accounts-page .accounts-market__hero {
  padding: 1.5rem 0 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}

.void-accounts-page .accounts-market__title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.void-accounts-page .accounts-market__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.void-accounts-page .accounts-featured__card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.void-accounts-page .accounts-featured__card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.void-accounts-page .accounts-market__grid {
  gap: 0.85rem;
}

@media (max-width: 900px) {
  .void-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .void-accounts-page .accounts-market__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .void-footer__top {
    grid-template-columns: 1fr;
  }
}

/* ── Accounts v2 ── */
.void-accounts-page {
  padding-top: 0.5rem;
}

.accounts-v2__hero {
  margin-bottom: 2rem;
}

.accounts-v2__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--cyborg-muted);
}

.accounts-v2__crumbs a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
}

.accounts-v2__crumbs a:hover {
  color: #fff !important;
}

.accounts-v2__hero-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .accounts-v2__hero-grid {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.accounts-v2__title {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.accounts-v2__lead {
  margin: 0 0 1rem;
  max-width: 56ch;
  color: var(--cyborg-dim);
  line-height: 1.65;
}

.accounts-v2__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.accounts-v2__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(88px, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accounts-v2__stats .k {
  display: block;
  font-family: var(--cyborg-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.accounts-v2__stats .v {
  font-weight: 800;
  font-size: 1.05rem;
}

.accounts-v2__search-wrap {
  position: relative;
  max-width: 420px;
}

.accounts-v2__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyborg-muted);
  font-size: 0.85rem;
  pointer-events: none;
}

.accounts-v2__search {
  width: 100%;
  padding-left: 2.5rem !important;
}

.accounts-v2__featured {
  margin-bottom: 2rem;
}

.accounts-v2__featured-card {
  display: grid;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.65);
  text-decoration: none !important;
  color: inherit !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.accounts-v2__featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
}

@media (min-width: 768px) {
  .accounts-v2__featured-card {
    grid-template-columns: 1.1fr 1fr;
  }
}

.accounts-v2__featured-media {
  position: relative;
  min-height: 220px;
  background: #0a0a0a;
}

.accounts-v2__featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.accounts-v2__featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.75);
  font-family: var(--cyborg-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.accounts-v2__featured-body {
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.accounts-v2__featured-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.accounts-v2__featured-body h2 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  font-weight: 800;
}

.accounts-v2__featured-desc {
  margin: 0 0 1rem;
  color: var(--cyborg-dim);
  font-size: 0.9rem;
  line-height: 1.55;
}

.accounts-v2__featured-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.accounts-v2__featured-price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--cyborg-green, #86efac);
}

.accounts-v2__list-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.accounts-v2__list-head h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.accounts-v2__list-head p {
  margin: 0;
  color: var(--cyborg-muted);
  font-size: 0.88rem;
}

.accounts-v2__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.accounts-v2__empty {
  margin-top: 1rem;
}

.accounts-v2__empty p {
  margin: 0;
  color: var(--cyborg-dim);
}

.product-cyborg__status-pill {
  margin-top: 0.25rem;
}

.cyborg-checkout-form .btn-primary {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.92) !important;
  color: #000 !important;
}

.cyborg-checkout-form .btn-primary:hover:not(:disabled) {
  background: #fff !important;
}

.cyborg-checkout-form .btn-outline-primary {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
}

.cyborg-checkout-form .btn-outline-primary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08) !important;
}

/* ═══ Advanced glow + polish ═══ */

.cyborg-panel--glow {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    var(--cyborg-shadow-glow),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 24px 64px rgba(0, 0, 0, 0.65);
}

.cyborg-panel--glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 55% at 50% -10%, rgba(255, 255, 255, 0.12), transparent 58%);
  opacity: 0.9;
}

.cyborg-btn--glow {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

.cyborg-btn--glow:hover:not(:disabled) {
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.22), 0 0 48px rgba(255, 255, 255, 0.08);
}

.cyborg-nav {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.cyborg-nav__brand-mark {
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.85), 0 0 32px rgba(255, 255, 255, 0.35);
}

.cyborg-nav__action {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.cyborg-nav__action:hover,
.cyborg-nav__action.is-active {
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

.cyborg-nav__action--discord {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
}

.cyborg-hero__title,
.product-cyborg__title,
.accounts-v2__title,
.cyborg-page__title {
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.12);
}

.cyborg-checkout-panel--glow,
.cyborg-checkout-panel {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 255, 255, 0.04);
}

.cyborg-btn--white {
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.35), 0 8px 28px rgba(0, 0, 0, 0.4);
}

.cyborg-btn--white:hover {
  box-shadow: 0 0 36px rgba(255, 255, 255, 0.5), 0 12px 32px rgba(0, 0, 0, 0.45);
}

.cyborg-perk,
.acct-card,
.accounts-v2__featured-card,
.status-v3-card,
.game-tile {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cyborg-perk:hover,
.acct-card:hover,
.accounts-v2__featured-card:hover,
.status-v3-card:hover,
.game-tile:hover {
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.08), 0 16px 40px rgba(0, 0, 0, 0.45);
}

.product-cyborg__tag--live,
.status .indicator {
  box-shadow: 0 0 12px currentColor;
}

.product-cyborg__sysreq-btn {
  margin-top: 0.85rem;
}

.product-cyborg__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 20% 40%, rgba(255, 255, 255, 0.06), transparent 65%);
}

.product-cyborg__editor {
  min-height: 120px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.product-cyborg__editor .editor-tab.is-open:empty::before {
  content: "No content added for this section yet.";
  color: var(--cyborg-muted);
  font-style: italic;
}

.product-cyborg__tab.is-active {
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
}

.loader-exe.loader-exe--desktop,
.loader-exe--glow {
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.7),
    0 0 48px rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.loader-exe--glow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.05) inset;
}

.cyborg-hero__float--shield .cyborg-hero__float-v {
  color: var(--cyborg-green);
  text-shadow: 0 0 14px var(--cyborg-glow-green);
}

.cyborg-modal__eyebrow {
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.cyborg-modal__lead {
  color: var(--cyborg-dim);
  margin-bottom: 1rem;
}

.cyborg-modal__actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-end;
}

.cyborg-modal__prose {
  color: rgba(255, 255, 255, 0.8);
}

.product-cyborg__sysreq-grid--modal {
  margin-top: 0.5rem;
}

.cyborg-login-modal .cyborg-btn--primary {
  background: linear-gradient(180deg, #fff 0%, #e8e8e8 100%) !important;
  color: #000 !important;
  border: none !important;
  font-weight: 800;
}

.cyborg-login-modal .cyborg-btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.cyborg-altcha {
  position: relative;
  z-index: 3;
}

.discord-fab {
  z-index: 90;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.35);
}

/* ── Status page v2 ── */
.status-page--v2 {
  padding-top: 0.5rem;
}

.status-page__hero {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1.5rem 1rem 1.75rem;
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.07), transparent 70%);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.04);
}

.status-page__title {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 1.4rem + 2.5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.status-page__lead {
  margin: 0;
  color: var(--cyborg-dim);
  line-height: 1.6;
}

.status-page__filters {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.status-v3__grid {
  gap: 1rem;
}

.status-v3-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.65);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.status-v3-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08), 0 16px 40px rgba(0, 0, 0, 0.5);
}

.status-page__empty {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.cyborg-overlay[x-cloak] {
  display: none !important;
}
