:root {
  color-scheme: dark;
  --obsidian: #120020;
  --void: #050009;
  --graphite: #21102f;
  --glass: rgba(35, 6, 54, 0.82);
  --glass-strong: rgba(48, 12, 73, 0.92);
  --electric: #bb55ff;
  --electric-2: #7a20ff;
  --hot: #f066ff;
  --silver: #fff8ff;
  --muted: #d7c2e5;
  --line: rgba(187, 85, 255, 0.42);
  --line-strong: rgba(224, 98, 255, 0.76);
  --green: #74e7a6;
  --red: #ff7272;
  --shadow-purple: 0 0 22px rgba(224, 98, 255, 0.4), 0 0 54px rgba(122, 32, 255, 0.22);
  --shadow-deep: 0 22px 76px rgba(0, 0, 0, 0.58);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--silver);
  background-color: var(--void);
  background:
    radial-gradient(ellipse at 18% 20%, rgba(136, 33, 191, 0.34), transparent 36rem),
    radial-gradient(ellipse at 82% 28%, rgba(108, 22, 154, 0.24), transparent 34rem),
    radial-gradient(ellipse at 50% 100%, rgba(73, 9, 112, 0.28), transparent 42rem),
    linear-gradient(180deg, #160420 0%, #0c0314 46%, var(--void) 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(240, 102, 255, 0.58) 0 1px, transparent 1.5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 124px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.016) 0 1px, transparent 1px 124px);
  background-position: 20px 34px, 96px 112px, 0 0, 0 0;
  background-size: 220px 220px, 180px 180px, 124px 124px, 124px 124px;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(224, 98, 255, 0.44);
  background: rgba(15, 0, 27, 0.92);
  box-shadow: 0 12px 42px rgba(170, 54, 255, 0.26);
  backdrop-filter: blur(20px);
}

.header-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav-pill,
.header-cta,
.hero-actions,
.showcase-grid,
.section-head,
.stats-row,
.footer-bottom {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(224, 98, 255, 0.7);
  border-radius: 8px;
  background: linear-gradient(145deg, #321449, #12001f);
  box-shadow: var(--shadow-purple);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand strong {
  display: block;
  color: var(--silver);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(224, 98, 255, 0.68), 0 0 28px rgba(122, 32, 255, 0.26);
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-pill {
  gap: 2px;
  border: 1px solid rgba(224, 98, 255, 0.36);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(40, 8, 62, 0.88), rgba(12, 0, 21, 0.78));
  padding: 4px;
  box-shadow: inset 0 0 20px rgba(224, 98, 255, 0.08), 0 0 28px rgba(122, 32, 255, 0.16);
}

.nav-pill a,
.mobile-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition: 160ms ease;
}

.nav-pill a {
  padding: 10px 20px;
}

.nav-pill a:hover,
.mobile-nav a:hover {
  color: var(--silver);
  background: rgba(163, 94, 212, 0.14);
  box-shadow: 0 0 18px rgba(163, 94, 212, 0.24);
}

.header-cta,
.button {
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  gap: 9px;
  padding: 0 18px;
  color: var(--silver);
  background: linear-gradient(135deg, rgba(122, 32, 255, 0.38), rgba(224, 98, 255, 0.2));
  box-shadow: inset 0 0 20px rgba(240, 102, 255, 0.08);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple);
}

.icon,
.mini-icon,
.feature-icon {
  color: var(--hot);
}

.mobile-nav {
  display: none;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 14px;
  scrollbar-width: none;
}

.mobile-nav::-webkit-scrollbar {
  display: none;
}

.mobile-nav a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: rgba(21, 16, 29, 0.68);
  padding: 9px 16px;
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding-block: clamp(58px, 9vw, 118px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-brand {
  margin-bottom: 20px;
}

.signal-pill {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 36px;
  border: 1px solid rgba(224, 98, 255, 0.62);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(38, 5, 60, 0.96), rgba(12, 0, 20, 0.86));
  box-shadow: var(--shadow-purple);
  padding: 9px 18px;
  color: var(--silver);
  font-size: 14px;
  font-weight: 900;
}

.spark {
  color: var(--hot);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  color: var(--silver);
  font-weight: 950;
}

h1 {
  max-width: 12ch;
  font-size: clamp(54px, 8vw, 82px);
  line-height: 0.98;
  text-shadow: 0 0 16px rgba(255, 248, 255, 0.16), 0 0 34px rgba(224, 98, 255, 0.22);
}

h2 {
  font-size: clamp(34px, 4.6vw, 46px);
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 20px;
}

.lead {
  margin: 26px 0 0;
  color: #f1e4f8;
  font-size: clamp(19px, 2.4vw, 23px);
  font-weight: 800;
  line-height: 1.5;
}

.body-copy,
.feature-card p,
.feedback-card p,
.site-footer p,
.faq-card p,
.terms-section p {
  color: var(--muted);
  line-height: 1.75;
}

.body-copy {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 17px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  padding: 0 20px;
  color: var(--silver);
}

.button.primary {
  border-color: rgba(255, 162, 255, 0.92);
  background: linear-gradient(135deg, #8326ff 0%, #c640ff 52%, #ff68f7 100%);
  color: #fff;
  box-shadow: 0 0 24px rgba(224, 98, 255, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button.secondary {
  background: linear-gradient(180deg, rgba(37, 7, 57, 0.74), rgba(7, 0, 11, 0.34));
  border-color: rgba(224, 98, 255, 0.42);
}

.button.danger {
  border-color: rgba(255, 114, 114, 0.72);
  background: linear-gradient(135deg, rgba(132, 12, 35, 0.88), rgba(54, 2, 15, 0.82));
  color: #ffe8e8;
}

.button.compact {
  min-height: 48px;
  white-space: nowrap;
}

.showcase-card,
.glass-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(64, 14, 94, 0.8), rgba(14, 0, 24, 0.78)),
    var(--glass);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(14px);
  outline: 1px solid rgba(255, 255, 255, 0.035);
}

.showcase-card {
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(155, 42, 255, 0.24), 0 26px 76px rgba(0, 0, 0, 0.58);
}

.showcase-banner {
  width: 100%;
  aspect-ratio: 2.5 / 1;
  object-fit: cover;
  background: #08010f;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border-top: 1px solid rgba(224, 98, 255, 0.34);
  background: linear-gradient(180deg, rgba(25, 2, 41, 0.94), rgba(8, 0, 14, 0.84));
  padding: 16px;
}

.showcase-grid div {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(47, 11, 72, 0.9), rgba(12, 0, 20, 0.82));
  padding: 12px;
}

.showcase-grid strong {
  font-size: 14px;
  line-height: 1.25;
}

.section {
  padding-block: 66px;
}

.section-head {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--hot);
  text-shadow: 0 0 18px rgba(224, 98, 255, 0.66);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  min-height: 455px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 102, 255, 0.82);
  box-shadow: 0 22px 76px rgba(224, 98, 255, 0.3), 0 18px 56px rgba(0, 0, 0, 0.58);
}

.product-art {
  position: relative;
  min-height: 230px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(224, 98, 255, 0.42), rgba(122, 32, 255, 0.16) 45%, transparent 78%),
    linear-gradient(135deg, #210033, #09000f);
}

.product-art::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(224, 98, 255, 0.28));
}

.product-art img {
  position: relative;
  z-index: 1;
  width: min(76%, 270px);
  max-height: 218px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(224, 98, 255, 0.42));
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  border: 1px solid rgba(240, 102, 255, 0.7);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(73, 20, 103, 0.94), rgba(23, 0, 36, 0.88));
  padding: 8px 13px;
  color: var(--silver);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: var(--shadow-purple);
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #f68cff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-price {
  color: var(--silver);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-body .button {
  width: fit-content;
  min-width: 132px;
  align-self: end;
  margin-top: 10px;
}

.product-page-hero {
  min-height: 460px;
}

.product-status-card {
  align-self: center;
  display: grid;
  gap: 10px;
  padding: 24px;
}

.product-status-card span {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-status-card strong {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.product-status-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.product-detail-media,
.product-info-card,
.product-purchase-card {
  padding: 22px;
}

.product-detail-media {
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(224, 98, 255, 0.34), rgba(122, 32, 255, 0.1)),
    linear-gradient(135deg, #210033, #09000f);
}

.product-detail-media img {
  width: min(88%, 360px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(224, 98, 255, 0.42));
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  border: 1px solid rgba(224, 98, 255, 0.22);
  border-radius: 8px;
  background: rgba(11, 0, 20, 0.48);
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 800;
}

.plan-options {
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
}

.plan-option {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  border: 1px solid rgba(224, 98, 255, 0.26);
  border-radius: 8px;
  background: rgba(11, 0, 20, 0.54);
  padding: 13px 14px;
  color: var(--silver);
  cursor: pointer;
  text-align: left;
  transition: 160ms ease;
}

.plan-option:hover,
.plan-option.active {
  border-color: var(--line-strong);
  background: linear-gradient(135deg, rgba(122, 32, 255, 0.32), rgba(224, 98, 255, 0.18));
  box-shadow: var(--shadow-purple);
}

.plan-option span {
  color: var(--hot);
  font-weight: 950;
}

.plan-option small {
  grid-column: 1 / -1;
}

.why-section,
.support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(340px, 1.16fr);
  gap: 34px;
  align-items: start;
}

.feature-grid,
.feedback-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.feedback-card,
.faq-card,
.order-form {
  padding: 22px;
}

.feature-icon {
  display: block;
  margin-bottom: 18px;
  font-size: 25px;
}

.feature-card p,
.feedback-card p {
  margin: 10px 0 0;
}

.stats-row {
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.stats-row span,
.api-status {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(45, 9, 68, 0.86), rgba(10, 0, 18, 0.78));
  padding: 10px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.stats-row strong {
  color: var(--silver);
}

.feedback-card {
  min-height: 180px;
}

.stars {
  color: var(--hot);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-shadow: 0 0 16px rgba(224, 98, 255, 0.62);
}

.feedback-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  color: #d8cfe0;
  font-size: 13px;
  font-weight: 800;
}

.faq-grid {
  align-items: start;
}

.faq-card {
  min-height: 66px;
}

.faq-card summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--silver);
  font-weight: 900;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  color: var(--hot);
  font-weight: 950;
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-card p {
  margin: 16px 0 0;
}

.support-section {
  border-top: 1px solid rgba(224, 98, 255, 0.3);
}

.api-status {
  width: fit-content;
  margin-top: 24px;
}

.api-status.online {
  color: var(--green);
  border-color: rgba(116, 231, 166, 0.42);
}

.api-status.offline {
  color: var(--red);
  border-color: rgba(255, 114, 114, 0.42);
}

.order-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #ded4e6;
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 0, 20, 0.72);
  color: var(--silver);
  padding: 13px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(224, 98, 255, 0.22), 0 0 22px rgba(224, 98, 255, 0.18);
}

textarea {
  resize: vertical;
}

input[type="color"] {
  min-height: 48px;
  padding: 5px;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.terms-section {
  max-width: 1180px;
}

.page-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 96px);
}

.page-hero h1 {
  max-width: 13ch;
}

.reseller-panel {
  overflow: hidden;
}

.reseller-panel img {
  width: 100%;
  aspect-ratio: 2.5 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.reseller-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
}

.reseller-metrics span,
.stat-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(47, 11, 72, 0.9), rgba(12, 0, 20, 0.82));
  padding: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.reseller-metrics strong,
.stat-card strong {
  display: block;
  color: var(--silver);
  font-size: 22px;
}

.admin-hero {
  min-height: 420px;
}

.admin-login {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.admin-tabs-section {
  padding-block: 10px 26px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 0, 20, 0.56);
  padding: 10px;
}

.admin-tabs button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  padding: 0 14px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.admin-tabs button:hover,
.admin-tabs button.active {
  border-color: var(--line-strong);
  background: linear-gradient(135deg, rgba(122, 32, 255, 0.32), rgba(224, 98, 255, 0.18));
  color: var(--silver);
}

[data-admin-panel][hidden] {
  display: none;
}

.stat-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-card strong {
  font-size: clamp(24px, 3vw, 34px);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-panel {
  min-height: 320px;
  padding: 22px;
}

.admin-key-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  margin-bottom: 16px;
}

.settings-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.settings-form label:has(textarea),
.settings-form .form-status,
.settings-form button {
  grid-column: 1 / -1;
}

.admin-check {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 0, 20, 0.48);
  padding: 12px 14px;
}

.color-field {
  align-self: stretch;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-head h2 {
  font-size: 26px;
}

.panel-head span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 0, 20, 0.72);
  padding: 8px 12px;
  color: var(--hot);
  font-size: 13px;
  font-weight: 950;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  border-bottom: 1px solid rgba(224, 98, 255, 0.18);
  padding: 13px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--hot);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  font-size: 14px;
}

td strong {
  color: var(--silver);
}

small {
  color: rgba(215, 194, 229, 0.72);
}

.admin-list,
.customer-list {
  display: grid;
  gap: 12px;
}

.mini-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(224, 98, 255, 0.24);
  border-radius: 8px;
  background: rgba(11, 0, 20, 0.48);
  padding: 14px;
}

.mini-card strong {
  color: var(--silver);
}

.mini-card p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.mini-card > span {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 900;
}

.mini-card code {
  width: 100%;
  overflow-wrap: anywhere;
  border: 1px solid rgba(224, 98, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 0, 8, 0.55);
  padding: 8px 10px;
  color: var(--silver);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.action-row .button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.auth-shell {
  width: min(560px, 100%);
}

.auth-brand {
  justify-content: center;
  margin-bottom: 20px;
}

.auth-card {
  padding: 28px;
}

.auth-card h1 {
  max-width: none;
  font-size: clamp(38px, 7vw, 62px);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 0, 20, 0.62);
  padding: 6px;
}

.auth-tabs button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  min-height: 42px;
  cursor: pointer;
  font-weight: 900;
}

.auth-tabs button.active {
  background: linear-gradient(135deg, #8326ff, #ff68f7);
  color: white;
  box-shadow: var(--shadow-purple);
}

.auth-panel {
  display: none;
  gap: 18px;
}

.auth-panel.active {
  display: grid;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form h2 {
  font-size: 22px;
  text-shadow: none;
}

.auth-register {
  border-top: 1px solid rgba(224, 98, 255, 0.28);
  padding-top: 18px;
}

.auth-form .body-copy {
  margin: 0;
  font-size: 14px;
}

.one-column {
  grid-template-columns: 1fr;
}

.seller-body {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  background:
    radial-gradient(circle, rgba(255,255,255,0.22) 0 2px, transparent 2.5px),
    radial-gradient(circle, rgba(255,255,255,0.14) 0 1px, transparent 1.5px),
    #050505;
  background-size: 360px 360px, 220px 220px, auto;
  background-position: 80px 40px, 140px 120px, 0 0;
  color: #f2f2f2;
}

.seller-body::before {
  display: none;
}

.seller-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 18px 0 48px rgba(0, 0, 0, 0.42);
  padding: 18px 12px;
}

.seller-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.seller-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.seller-logo strong,
.seller-user strong {
  display: block;
  color: #f4f4f4;
  font-weight: 950;
}

.seller-logo small,
.seller-user small,
.side-label {
  color: #8d8d8d;
  font-size: 12px;
}

.side-label {
  margin: 0 0 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.seller-nav {
  display: grid;
  gap: 4px;
}

.seller-nav button,
.seller-link,
.seller-balance button,
.seller-small-button,
.seller-add-funds {
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #a4a4a4;
  cursor: pointer;
  font-weight: 800;
}

.seller-nav button {
  min-height: 38px;
  padding: 0 12px;
  text-align: left;
}

.seller-nav button.active,
.seller-nav button:hover,
.seller-link:hover {
  background: #242424;
  color: #ffffff;
}

.seller-bottom {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}

.seller-link {
  width: 100%;
  min-height: 36px;
  text-align: left;
  padding: 0 10px;
}

.seller-balance {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin: 18px -12px;
  padding: 16px 12px;
  text-align: center;
}

.seller-balance span {
  color: #777;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.seller-balance strong {
  font-size: 22px;
}

.seller-balance button,
.seller-add-funds {
  min-height: 40px;
  background: #242424;
  color: #fff;
}

.seller-user {
  text-align: center;
}

.seller-main {
  min-width: 0;
  padding: 26px 24px 64px;
}

.seller-content {
  display: grid;
  gap: 24px;
}

.seller-title p {
  margin: 0 0 6px;
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seller-title h1 {
  max-width: none;
  color: #f5f5f5;
  font-size: 28px;
  line-height: 1.15;
  text-shadow: none;
}

.seller-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.seller-stat-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seller-stat-grid article,
.seller-card,
.seller-table {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(30,30,30,0.86), rgba(10,10,10,0.88));
  box-shadow: 0 16px 54px rgba(0,0,0,0.42);
}

.seller-stat-grid article {
  padding: 18px;
}

.seller-stat-grid span,
.seller-card p,
.seller-muted {
  color: #969696;
}

.seller-stat-grid span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.seller-stat-grid strong {
  font-size: 22px;
}

.seller-stat-grid .green,
.green {
  color: #00e581;
}

.seller-stat-grid .cyan,
.cyan {
  color: #00d8ff;
}

.seller-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.seller-card {
  padding: 22px;
}

.seller-card h2 {
  color: #f4f4f4;
  font-size: 20px;
  text-shadow: none;
}

.seller-card label {
  margin-top: 18px;
  color: #a5a5a5;
  text-transform: uppercase;
}

.seller-card input,
.seller-card select,
.seller-search,
.seller-form-row select {
  border-color: rgba(255, 255, 255, 0.12);
  background: #1b1b1b;
  color: #f3f3f3;
}

.seller-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 24px;
}

.seller-table {
  overflow-x: auto;
}

.seller-table table {
  min-width: 980px;
}

.seller-table th {
  color: #9b9b9b;
}

.seller-table td {
  color: #eeeeee;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seller-pill,
.available-pill,
.category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-radius: 4px;
  padding: 3px 8px;
  background: #202020;
  color: #eeeeee;
  font-size: 12px;
  font-weight: 850;
}

.seller-pill strong,
.available-pill {
  color: #00e581;
}

.available-pill {
  background: rgba(0, 229, 129, 0.12);
}

.category-pill.cheat {
  background: rgba(0, 132, 255, 0.18);
  color: #4dabff;
}

.category-pill.nfa {
  background: rgba(170, 80, 255, 0.22);
  color: #d78cff;
}

.seller-search {
  width: 100%;
  min-height: 38px;
  border-radius: 7px;
  padding: 0 14px;
}

.empty-row {
  height: 84px;
  text-align: center;
  color: #8d8d8d;
}

.seller-small-button {
  min-height: 28px;
  padding: 0 10px;
  background: #242424;
  color: #fff;
}

.stock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.topup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stock-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: #999;
}

.stock-row strong {
  color: #00e581;
}

.stock-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #151515;
  margin-top: 7px;
}

.stock-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: #04ca5f;
}

.inline-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: none;
}

.inline-check input {
  width: 20px;
}

.loader-preview {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--preview-primary, #4d0000);
  margin-top: 18px;
  padding: 24px;
}

.loader-preview > div {
  width: min(385px, 100%);
  display: grid;
  gap: 12px;
  border-radius: 10px;
  background: var(--preview-accent, #121212);
  padding: 26px;
  text-align: center;
}

.loader-preview img {
  width: 38px;
  margin: 0 auto;
}

.loader-preview span {
  color: #8f8f8f;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.loader-preview button {
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  background: #2a2a2a;
  color: #fff;
  font-weight: 900;
}

.endpoint-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.endpoint-list span {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  color: #d5d5d5;
}

.cookie-card {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: 26px;
  z-index: 60;
  width: min(380px, calc(100vw - 32px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(45, 34, 52, 0.98), rgba(21, 17, 24, 0.98));
  box-shadow: 0 22px 76px rgba(0, 0, 0, 0.62), 0 0 34px rgba(224, 98, 255, 0.18);
  padding: 20px;
}

.cookie-card[hidden] {
  display: none;
}

.cookie-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.cookie-card p {
  margin: 0 0 16px;
  color: #e0dce3;
  line-height: 1.5;
}

.cookie-card .button {
  width: 100%;
  min-height: 42px;
}

.site-footer {
  margin-top: 54px;
  border-top: 1px solid rgba(224, 98, 255, 0.38);
  background: linear-gradient(180deg, rgba(17, 0, 29, 0.92), rgba(6, 0, 10, 0.96));
  box-shadow: 0 -18px 50px rgba(170, 54, 255, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
  gap: 40px;
  padding-block: 42px;
}

.site-footer h3 {
  color: var(--hot);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--silver);
}

.footer-bottom {
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(163, 94, 212, 0.16);
  padding-block: 18px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 980px) {
  .header-row {
    min-height: 72px;
  }

  .nav-pill,
  .header-cta {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .hero,
  .why-section,
  .support-section,
  .page-hero,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .showcase-card {
    max-width: 680px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .seller-body {
    grid-template-columns: 1fr;
  }

  .seller-sidebar {
    position: static;
    height: auto;
  }

  .seller-bottom {
    display: none;
  }

  .seller-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-stat-grid,
  .seller-stat-grid.three,
  .seller-two-col,
  .stock-grid,
  .topup-grid,
  .admin-key-form,
  .settings-form {
    grid-template-columns: 1fr;
  }

  .seller-form-row {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  .brand small {
    white-space: normal;
  }

  .hero {
    padding-block: 46px 58px;
  }

  h1 {
    font-size: 52px;
  }

  .showcase-grid,
  .product-grid,
  .feature-grid,
  .feedback-grid,
  .faq-grid,
  .footer-grid,
  .reseller-metrics,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats-row {
    justify-content: flex-start;
  }

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

  .admin-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .admin-tabs button {
    flex: 0 0 auto;
  }
}

@media (max-width: 460px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 44px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 16px;
  }

  .signal-pill {
    align-items: flex-start;
    border-radius: 8px;
  }

  .cookie-card {
    bottom: 14px;
  }
}
