:root {
  color-scheme: dark;
  --bg: #111317;
  --panel: #191d24;
  --panel-2: #202631;
  --text: #f4f6fb;
  --muted: #aeb7c7;
  --line: #303847;
  --accent: #ffcc3d;
  --danger: #ff5c5c;
  --action: #23c483;
  --blue: #5bb7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 12px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 19, 23, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #7b5c15;
  border-radius: 8px;
  background: #2b2210;
  color: var(--accent);
  font-size: 13px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.main-nav a,
.platform-tabs a,
button,
.primary-action {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--panel-2);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

button,
.primary-action {
  border-color: #116544;
  background: var(--action);
  color: #06120d;
}

.secondary-button {
  border-color: var(--line);
  background: var(--panel-2);
  color: var(--text);
}

.danger-button {
  border-color: rgba(255, 92, 92, 0.55);
  background: rgba(255, 92, 92, 0.16);
  color: #ffd7d7;
}

.toolbar-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 6vw, 72px) clamp(16px, 4vw, 48px) 22px;
  border-bottom: 1px solid var(--line);
}

.toolbar-band.compact {
  padding-top: 28px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  font-size: 20px;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.platform-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.content-shell,
.admin-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 48px) 48px;
}

.section-heading,
.admin-topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-heading span {
  color: var(--muted);
  font-size: 14px;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

.compact-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.deal-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.cover-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b0d10;
}

.cover-link img,
.detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  background: #191d24 url("/static/img/placeholder.svg") center / cover no-repeat;
  object-fit: cover;
}

.score-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  border: 2px solid #fff7cf;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1200;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.score-badge.large {
  width: 72px;
  height: 72px;
  font-size: 24px;
}

.deal-body {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.deal-body h2 {
  min-height: 48px;
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.deal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-row,
.detail-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.discount {
  border-radius: 6px;
  padding: 4px 7px;
  background: var(--danger);
  color: #fff;
  font-weight: 900;
}

.original {
  color: var(--muted);
  text-decoration: line-through;
}

.meta-score {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.empty-state,
.flash {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel);
  color: var(--muted);
}

.flash.success {
  border-color: #1f7a55;
  color: #c8f9df;
}

.flash.error {
  border-color: #7a1f2e;
  color: #ffd5d9;
}

.country-switcher,
.auth-form,
.admin-actions form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select {
  min-height: 40px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: #0f1217;
  color: var(--text);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(20px, 4vw, 48px);
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 28px clamp(16px, 4vw, 48px);
}

.detail-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.detail-copy {
  align-self: center;
}

.detail-copy h1 {
  font-size: clamp(34px, 4vw, 56px);
}

.detail-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.facts div,
.stat-grid div,
.admin-actions form,
.auth-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.facts div {
  padding: 12px;
}

dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.auth-panel {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 128px);
  padding: 24px;
}

.auth-form {
  width: min(420px, 100%);
  padding: 20px;
}

.stat-grid,
.admin-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

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

.stat-grid div,
.admin-actions form {
  padding: 16px;
}

.stat-grid span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.stat-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 30px;
}

.admin-section {
  margin-top: 24px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

th,
td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer {
  padding: 20px clamp(16px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header,
  .toolbar-band,
  .section-heading,
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-layout,
  .stat-grid,
  .admin-actions {
    grid-template-columns: 1fr;
  }

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

  .main-nav {
    width: 100%;
  }
}

.admin-page {
  background: #080a0e;
}

.admin-page .site-header,
.admin-page .site-footer {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 14, 0.72);
}

.admin-shell {
  width: min(1480px, 100%);
  padding-top: 18px;
}

.admin-hero,
.ops-card,
.job-card,
.admin-drawer,
.admin-status-strip div,
.admin-page .table-wrap,
.manual-actions form {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 25, 34, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.admin-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  border-radius: 14px;
  padding: clamp(18px, 4vw, 30px);
}

.admin-hero h1 {
  font-size: clamp(34px, 7vw, 72px);
}

.admin-lead {
  max-width: 760px;
  margin: 0;
  color: #b8c2d6;
  line-height: 1.55;
}

.admin-status-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.admin-status-strip div {
  min-height: 94px;
  border-radius: 12px;
  padding: 14px;
}

.admin-status-strip span,
.job-progress span,
.step-copy p,
.step-copy small,
.worker-card p {
  color: #aeb8ca;
}

.admin-status-strip span,
.job-progress span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-status-strip strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1;
}

.ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 14px;
  margin-bottom: 22px;
}

.ops-card {
  display: grid;
  gap: 13px;
  border-radius: 14px;
  padding: 16px;
}

.card-heading,
.job-head,
.job-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.job-title-row {
  justify-content: flex-start;
}

.card-heading h2,
.job-title-row h3,
.step-copy h4 {
  margin: 0;
}

.pill,
.command-chip {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dfe7f7;
  font-size: 12px;
  font-weight: 800;
}

.pill {
  padding: 7px 10px;
}

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

.admin-page input,
.admin-page select {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 15, 0.78);
}

.check-row {
  grid-template-columns: 20px 1fr;
  align-items: center;
}

.check-row input {
  min-height: 18px;
}

.worker-card {
  align-content: start;
}

.command-chip {
  display: block;
  overflow-wrap: anywhere;
  border-radius: 8px;
  padding: 10px;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.job-card {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
  border-radius: 14px;
  padding: 14px;
}

.job-head {
  align-items: flex-start;
}

.job-head p {
  margin: 5px 0 0;
  color: #aeb8ca;
}

.job-progress {
  min-width: 84px;
  border-radius: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  text-align: right;
}

.job-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.job-actions form {
  display: flex;
}

.job-actions .danger-button {
  min-width: 76px;
}

.job-progress strong {
  display: block;
  font-size: 22px;
}

.step-chain {
  display: grid;
  gap: 8px;
}

.step-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px;
  background: rgba(4, 7, 11, 0.36);
}

.step-item.success {
  border-color: rgba(35, 196, 131, 0.45);
}

.step-item.partial {
  border-color: rgba(255, 204, 61, 0.52);
}

.step-item.failed {
  border-color: rgba(255, 92, 92, 0.54);
}

.step-item.cancelled {
  border-color: rgba(174, 184, 202, 0.42);
}

.step-item.running {
  border-color: rgba(91, 183, 255, 0.56);
}

.step-index {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 5px;
}

.step-copy {
  min-width: 0;
}

.step-copy h4 {
  font-size: 15px;
  line-height: 1.25;
}

.step-copy p,
.step-copy small {
  display: block;
  margin: 5px 0 0;
  overflow-wrap: anywhere;
}

.status-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #6c7483;
  box-shadow: 0 0 0 5px rgba(108, 116, 131, 0.12);
}

.status-dot.success {
  background: #23c483;
  box-shadow: 0 0 0 5px rgba(35, 196, 131, 0.14), 0 0 18px rgba(35, 196, 131, 0.45);
}

.status-dot.partial,
.status-dot.queued {
  background: #ffcc3d;
  box-shadow: 0 0 0 5px rgba(255, 204, 61, 0.14);
}

.status-dot.running {
  background: #5bb7ff;
  box-shadow: 0 0 0 5px rgba(91, 183, 255, 0.14), 0 0 20px rgba(91, 183, 255, 0.4);
}

.status-dot.failed {
  background: #ff5c5c;
  box-shadow: 0 0 0 5px rgba(255, 92, 92, 0.14);
}

.status-dot.cancelled {
  background: #8d98aa;
  box-shadow: 0 0 0 5px rgba(141, 152, 170, 0.14);
}

.admin-drawer {
  border-radius: 14px;
  margin-top: 20px;
  padding: 12px;
}

.admin-drawer summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}

.manual-actions {
  margin-top: 12px;
}

.drawer-copy {
  margin: 10px 0 0;
  color: #aeb8ca;
}

.url-settings-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.url-setting-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(260px, 1.35fr) minmax(180px, 0.8fr) minmax(120px, 0.4fr) auto;
  gap: 10px;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px;
  background: rgba(4, 7, 11, 0.36);
}

.url-setting-meta {
  display: grid;
  gap: 5px;
}

.url-setting-meta strong {
  overflow-wrap: anywhere;
}

.url-setting-meta span {
  color: #aeb8ca;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.taxonomy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 14px;
}

@media (max-width: 900px) {
  .admin-hero,
  .card-heading,
  .job-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-status-strip,
  .ops-grid,
  .compact-fields,
  .taxonomy-grid,
  .url-setting-row {
    grid-template-columns: 1fr;
  }

  .job-actions,
  .job-progress {
    width: 100%;
  }

  .job-actions {
    flex-wrap: wrap;
  }

  .job-progress {
    text-align: left;
  }
}

/* Premium admin skin. Scoped to body.admin-page so the public site keeps its own look. */
body.admin-page {
  --cosmic-bg: #070910;
  --glass: rgba(13, 18, 29, 0.72);
  --glass-strong: rgba(18, 26, 42, 0.82);
  --glass-line: rgba(228, 238, 255, 0.14);
  --glass-line-strong: rgba(228, 238, 255, 0.22);
  --admin-text: #f6f8ff;
  --admin-muted: #aeb9cf;
  --admin-teal: #29e0b2;
  --admin-gold: #ffd65c;
  --admin-blue: #78c8ff;
  --admin-rose: #ff6d91;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--cosmic-bg);
  color: var(--admin-text);
}

body.admin-page::before,
body.admin-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body.admin-page::before {
  z-index: 0;
  opacity: 0.82;
  background-image:
    linear-gradient(120deg, rgba(41, 224, 178, 0.12), transparent 34%, rgba(255, 214, 92, 0.08) 58%, transparent 76%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px),
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.4px);
  background-size: auto, 92px 92px, 92px 92px, 140px 140px;
  background-position: center, center, center, 12px 18px;
}

body.admin-page::after {
  z-index: 0;
  opacity: 0.72;
  background:
    linear-gradient(150deg, transparent 0 22%, rgba(120, 200, 255, 0.12) 38%, transparent 56%),
    linear-gradient(30deg, transparent 0 50%, rgba(255, 109, 145, 0.10) 68%, transparent 86%);
  mix-blend-mode: screen;
}

.admin-page .site-header,
.admin-page main,
.admin-page .site-footer {
  position: relative;
  z-index: 1;
}

.admin-page .site-header {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(7, 9, 16, 0.72);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.38);
}

.admin-page .brand-mark {
  border-color: rgba(255, 214, 92, 0.46);
  background: linear-gradient(145deg, rgba(255, 214, 92, 0.22), rgba(41, 224, 178, 0.10));
  color: #ffeaa4;
}

.admin-shell {
  width: min(1500px, 100%);
  padding: 18px clamp(14px, 3.2vw, 42px) 56px;
}

.admin-hero,
.ops-card,
.job-card,
.admin-drawer,
.admin-status-strip div,
.admin-page .table-wrap,
.manual-actions form {
  border-radius: 8px;
  border: 1px solid var(--glass-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--glass);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(22px) saturate(138%);
}

.admin-hero {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  align-items: stretch;
  padding: clamp(20px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(41, 224, 178, 0.16), transparent 36%),
    linear-gradient(35deg, transparent 42%, rgba(255, 214, 92, 0.12)),
    rgba(10, 16, 27, 0.82);
}

.admin-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
  transform: translateX(-38%) skewX(-18deg);
}

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

.admin-hero h1 {
  margin: 0 0 10px;
  max-width: 820px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.92;
  text-shadow: 0 0 28px rgba(120, 200, 255, 0.18);
}

.admin-lead {
  max-width: 760px;
  color: #c2cbe0;
  font-size: 16px;
}

.admin-status-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.admin-status-strip div {
  position: relative;
  min-height: 104px;
  overflow: hidden;
  padding: 15px;
}

.admin-status-strip div::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--admin-teal), var(--admin-gold));
  opacity: 0.78;
}

.admin-status-strip span,
.job-progress span,
.step-copy p,
.step-copy small,
.worker-card p,
.drawer-copy {
  color: var(--admin-muted);
}

.admin-status-strip strong {
  margin-top: 10px;
  color: #ffffff;
  font-size: clamp(30px, 5vw, 48px);
}

.ops-grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: 16px;
}

.ops-card {
  padding: clamp(16px, 2vw, 22px);
}

.launch-card {
  border-color: rgba(41, 224, 178, 0.24);
  background:
    linear-gradient(145deg, rgba(41, 224, 178, 0.10), rgba(120, 200, 255, 0.04)),
    var(--glass-strong);
}

.worker-card {
  align-content: space-between;
  border-color: rgba(255, 214, 92, 0.18);
}

.card-heading {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-heading h2,
.section-heading h2 {
  color: #ffffff;
  font-size: clamp(20px, 2.4vw, 28px);
}

.admin-page .eyebrow {
  color: var(--admin-gold);
}

.pill,
.command-chip {
  border-color: var(--glass-line);
  background: rgba(255, 255, 255, 0.07);
}

.pill {
  color: #fff3bd;
}

.admin-page label {
  color: #c6cee0;
}

.admin-page input,
.admin-page select {
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(5, 9, 16, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.admin-page input:focus,
.admin-page select:focus {
  outline: 2px solid rgba(41, 224, 178, 0.35);
  outline-offset: 2px;
  border-color: rgba(41, 224, 178, 0.56);
}

.admin-page button {
  min-height: 44px;
  border-color: rgba(41, 224, 178, 0.58);
  background: linear-gradient(135deg, #31e8b8, #ffd65c);
  color: #06110e;
  box-shadow: 0 12px 30px rgba(41, 224, 178, 0.16);
}

.admin-page .secondary-button {
  border-color: var(--glass-line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--admin-text);
  box-shadow: none;
}

.admin-page .danger-button {
  border-color: rgba(255, 92, 92, 0.55);
  background: rgba(255, 92, 92, 0.16);
  color: #ffd7d7;
  box-shadow: none;
}

.launch-button {
  margin-top: 4px;
  font-size: 15px;
}

.worker-command-list {
  display: grid;
  gap: 10px;
}

.worker-state {
  display: grid;
  gap: 5px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.worker-state span,
.worker-state small {
  color: var(--admin-muted);
}

.worker-state span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.worker-state strong {
  color: #ffffff;
  font-size: 18px;
}

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

.worker-actions form,
.worker-actions button {
  width: 100%;
}

.worker-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.command-chip {
  border-radius: 8px;
  color: #dbe8ff;
}

.admin-section {
  margin-top: 28px;
}

.section-heading {
  padding: 0 2px;
}

.section-heading span {
  color: var(--admin-muted);
}

.job-card {
  border-color: rgba(120, 200, 255, 0.18);
  padding: clamp(13px, 2vw, 18px);
}

.job-title-row h3 {
  font-size: 18px;
}

.job-progress {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.07);
}

.step-chain {
  position: relative;
}

.step-item {
  border-radius: 8px;
  background: rgba(6, 10, 18, 0.62);
}

.step-item.success {
  background: linear-gradient(90deg, rgba(35, 196, 131, 0.12), rgba(6, 10, 18, 0.62));
}

.step-item.running {
  background: linear-gradient(90deg, rgba(120, 200, 255, 0.14), rgba(6, 10, 18, 0.62));
}

.step-item.failed {
  background: linear-gradient(90deg, rgba(255, 109, 145, 0.14), rgba(6, 10, 18, 0.62));
}

.step-item.cancelled {
  background: linear-gradient(90deg, rgba(141, 152, 170, 0.14), rgba(6, 10, 18, 0.62));
}

.step-copy h4 {
  color: #f7faff;
}

.admin-drawer {
  padding: 14px;
}

.admin-drawer summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.url-setting-row {
  border-radius: 8px;
  background: rgba(6, 10, 18, 0.58);
}

.admin-page .table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: rgba(8, 12, 20, 0.76);
  overscroll-behavior-x: contain;
  contain: inline-size;
}

.admin-page table {
  min-width: 860px;
}

.admin-page th {
  background: rgba(255, 255, 255, 0.04);
  color: #c8d2e6;
}

.admin-page td {
  color: #eef3ff;
}

.admin-page tr:hover td {
  background: rgba(255, 255, 255, 0.035);
}

.admin-page .empty-state,
.admin-page .flash {
  border-color: var(--glass-line);
  background: rgba(13, 18, 29, 0.74);
}

@media (max-width: 1080px) {
  .admin-status-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  body.admin-page::before {
    background-size: auto, 72px 72px, 72px 72px, 120px 120px;
  }

  .admin-shell {
    padding: 12px 12px 44px;
  }

  .admin-hero {
    min-height: 0;
    padding: 18px;
  }

  .admin-hero h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .admin-status-strip,
  .compact-fields,
  .taxonomy-grid,
  .url-setting-row {
    grid-template-columns: 1fr;
  }

  .admin-status-strip div {
    min-height: 86px;
  }

  .card-heading,
  .job-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-progress {
    width: 100%;
    text-align: left;
  }

  .step-item {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 9px;
  }

  .admin-page .main-nav a {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* Public site redesign. Scoped away from admin so the operations console remains independent. */
body:not(.admin-page) {
  --site-bg: #080b10;
  --site-surface: rgba(18, 23, 31, 0.82);
  --site-surface-2: rgba(26, 32, 42, 0.88);
  --site-line: rgba(238, 244, 255, 0.13);
  --site-line-strong: rgba(238, 244, 255, 0.22);
  --site-text: #f8fafc;
  --site-muted: #aab4c3;
  --gvs-gold: #f5c84c;
  --gvs-green: #34d399;
  --platform-blue: #5bb7ff;
  --platform-red: #ff5e63;
  min-height: 100vh;
  background:
    linear-gradient(155deg, rgba(52, 211, 153, 0.08), transparent 32%),
    linear-gradient(25deg, transparent 54%, rgba(245, 200, 76, 0.07)),
    var(--site-bg);
  color: var(--site-text);
  overflow-x: clip;
}

body:not(.admin-page)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.54;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

body:not(.admin-page) .site-header {
  min-height: 68px;
  border-color: var(--site-line);
  background: rgba(8, 11, 16, 0.82);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.34);
}

body:not(.admin-page) .brand {
  letter-spacing: 0;
}

body:not(.admin-page) .brand-mark {
  border-color: rgba(245, 200, 76, 0.48);
  background: linear-gradient(145deg, rgba(245, 200, 76, 0.20), rgba(52, 211, 153, 0.16));
  color: #ffe8a3;
}

body:not(.admin-page) .main-nav a {
  border-color: var(--site-line);
  background: rgba(255, 255, 255, 0.055);
}

body:not(.admin-page) .page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  gap: clamp(18px, 4vw, 40px);
  align-items: stretch;
  overflow-x: clip;
  padding: clamp(28px, 6vw, 76px) clamp(16px, 4vw, 48px) 24px;
  border-bottom: 1px solid var(--site-line);
}

body:not(.admin-page) .page-hero.compact-page {
  grid-template-columns: 1fr;
  padding-bottom: 18px;
}

body:not(.admin-page) .page-hero.compact-page > div {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
}

body:not(.admin-page) .hero-copy,
body:not(.admin-page) .hero-score-panel,
body:not(.admin-page) .contact-panel {
  min-width: 0;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)), var(--site-surface);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

body:not(.admin-page) .hero-copy {
  padding: clamp(20px, 4vw, 34px);
}

body:not(.admin-page) .hero-score-panel {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  padding: 22px;
}

body:not(.admin-page) h1 {
  max-width: 980px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.92;
}

body:not(.admin-page) .lead {
  color: #c1cad7;
}

body:not(.admin-page) .store-switcher {
  position: sticky;
  top: 68px;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid var(--site-line);
  background: rgba(8, 11, 16, 0.84);
  backdrop-filter: blur(18px);
}

body:not(.admin-page) .store-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

body:not(.admin-page) .store-tabs a {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--site-text);
  text-decoration: none;
  font-weight: 900;
}

body:not(.admin-page) .store-tabs a.active {
  border-color: rgba(245, 200, 76, 0.58);
  background: linear-gradient(135deg, rgba(245, 200, 76, 0.22), rgba(52, 211, 153, 0.11));
}

body:not(.admin-page) .country-switcher {
  width: min(190px, 42vw);
}

body:not(.admin-page) .country-switcher label {
  color: var(--site-muted);
  font-size: 11px;
  text-transform: uppercase;
}

body:not(.admin-page) .country-switcher select,
body:not(.admin-page) input,
body:not(.admin-page) select {
  border-color: var(--site-line);
  background: rgba(4, 7, 12, 0.84);
}

body:not(.admin-page) .content-shell {
  padding-top: 28px;
}

body:not(.admin-page) .section-heading h2 {
  font-size: clamp(24px, 3vw, 34px);
}

body:not(.admin-page) .deal-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

body:not(.admin-page) .compact-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

body:not(.admin-page) .deal-card {
  border-color: var(--site-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)), var(--site-surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

body:not(.admin-page) .deal-card:hover {
  transform: translateY(-3px);
  border-color: var(--site-line-strong);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

body:not(.admin-page) .cover-link,
body:not(.admin-page) .detail-media {
  background: #05070b;
  contain: paint;
}

body:not(.admin-page) .cover-link {
  aspect-ratio: 16 / 10;
}

body:not(.admin-page) .cover-backdrop,
body:not(.admin-page) .detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(22px) saturate(1.25);
  opacity: 0.54;
  transform: none;
}

body:not(.admin-page) .cover-art,
body:not(.admin-page) .detail-art {
  position: relative;
  z-index: 1;
  object-fit: contain;
  padding: 10px;
}

body:not(.admin-page) .score-seal {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 247, 205, 0.82);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #fff1a7, #f5c84c 45%, #8a650d 100%);
  color: #111008;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42), 0 0 0 5px rgba(245, 200, 76, 0.14);
  font-weight: 1000;
}

body:not(.admin-page) .score-seal::before {
  content: "GVS";
  position: absolute;
  top: 9px;
  color: rgba(17, 16, 8, 0.68);
  font-size: 9px;
  font-weight: 1000;
}

body:not(.admin-page) .score-seal span {
  padding-top: 10px;
  font-size: 18px;
  line-height: 1;
}

body:not(.admin-page) .score-seal.large {
  top: 18px;
  right: 18px;
  width: 86px;
  height: 86px;
}

body:not(.admin-page) .score-seal.large span {
  font-size: 28px;
}

body:not(.admin-page) .hero-seal {
  position: relative;
  top: auto;
  right: auto;
  width: 92px;
  height: 92px;
}

body:not(.admin-page) .hero-seal span {
  padding-top: 0;
  font-size: 22px;
}

body:not(.admin-page) .hero-seal::before {
  content: "";
}

body:not(.admin-page) .deal-body {
  gap: 12px;
  padding: 14px;
}

body:not(.admin-page) .deal-body h2 {
  min-height: 0;
  color: #ffffff;
  font-size: 17px;
}

body:not(.admin-page) .deal-meta span {
  border: 1px solid var(--site-line);
  border-radius: 6px;
  padding: 4px 7px;
  background: rgba(255, 255, 255, 0.045);
}

body:not(.admin-page) .price-row strong {
  font-size: 18px;
}

body:not(.admin-page) .discount {
  background: linear-gradient(135deg, #ff5e63, #f5c84c);
  color: #190704;
}

body:not(.admin-page) .meta-score {
  color: var(--platform-blue);
}

body:not(.admin-page) .card-signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body:not(.admin-page) .card-signal-row a {
  color: #ffe8a3;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

body:not(.admin-page) .detail-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  padding-top: 32px;
}

body:not(.admin-page) .detail-media {
  min-height: 430px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

body:not(.admin-page) .detail-art {
  padding: clamp(16px, 3vw, 30px);
}

body:not(.admin-page) .detail-copy {
  border: 1px solid var(--site-line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--site-surface);
  backdrop-filter: blur(18px);
}

body:not(.admin-page) .detail-copy h1 {
  font-size: clamp(38px, 5vw, 64px);
}

body:not(.admin-page) .score-breakdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

body:not(.admin-page) .score-breakdown div,
body:not(.admin-page) .facts div {
  border-color: var(--site-line);
  background: rgba(255, 255, 255, 0.045);
}

body:not(.admin-page) .score-breakdown div {
  border: 1px solid var(--site-line);
  border-radius: 8px;
  padding: 12px;
}

body:not(.admin-page) .score-breakdown span {
  color: var(--site-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

body:not(.admin-page) .score-breakdown strong {
  display: block;
  margin-top: 5px;
  font-size: 22px;
}

body:not(.admin-page) .primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(52, 211, 153, 0.55);
  background: linear-gradient(135deg, #34d399, #f5c84c);
  color: #07100d;
}

body:not(.admin-page) .contact-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body:not(.admin-page) .policy-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body:not(.admin-page) .contact-panel {
  padding: 18px;
}

body:not(.admin-page) .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-color: var(--site-line);
  background: rgba(8, 11, 16, 0.82);
}

body:not(.admin-page) .site-footer div {
  display: grid;
  gap: 3px;
}

body:not(.admin-page) .site-footer nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

body:not(.admin-page) .site-footer a {
  color: var(--site-muted);
  text-decoration: none;
}

body:not(.admin-page) .cookie-notice {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(680px, calc(100vw - 28px));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 14px 16px;
  background: rgba(8, 12, 18, 0.94);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
}

body:not(.admin-page) .cookie-notice[hidden] {
  display: none;
}

body:not(.admin-page) .cookie-notice p {
  margin: 0;
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.45;
}

body:not(.admin-page) .cookie-notice div {
  display: flex;
  align-items: center;
  gap: 10px;
}

body:not(.admin-page) .cookie-notice a {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

body:not(.admin-page) .cookie-notice button {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--gvs-lime);
  color: #0b1002;
  font-weight: 900;
}

@media (max-width: 920px) {
  body:not(.admin-page) .page-hero,
  body:not(.admin-page) .detail-layout,
  body:not(.admin-page) .contact-layout,
  body:not(.admin-page) .policy-layout {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .detail-media {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  body:not(.admin-page) .cookie-notice {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    width: auto;
    padding: 12px;
  }

  body:not(.admin-page) .cookie-notice div {
    justify-content: space-between;
  }
}

@media (max-width: 680px) {
  body:not(.admin-page) .site-header {
    align-items: flex-start;
    min-height: 0;
  }

  body:not(.admin-page) .main-nav {
    width: auto;
  }

  body:not(.admin-page) .main-nav a {
    min-height: 34px;
    padding: 7px 9px;
  }

  body:not(.admin-page) .page-hero {
    padding: 18px 12px 12px;
  }

  body:not(.admin-page) .hero-copy,
  body:not(.admin-page) .hero-score-panel {
    padding: 16px;
  }

  body:not(.admin-page) h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  body:not(.admin-page) .store-switcher {
    top: 0;
    align-items: stretch;
    flex-direction: column;
    padding: 9px 12px;
  }

  body:not(.admin-page) .country-switcher {
    width: 100%;
  }

  body:not(.admin-page) .deal-grid,
  body:not(.admin-page) .compact-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .content-shell {
    padding: 18px 12px 36px;
  }

  body:not(.admin-page) .detail-layout {
    width: 100%;
    max-width: 100%;
    padding: 18px 12px;
    overflow-x: clip;
  }

  body:not(.admin-page) .detail-media {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  body:not(.admin-page) .score-breakdown {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Public site redesign v2: compact ranking UI, closer to a useful deals product. */
body:not(.admin-page) {
  --site-bg: #0b0d10;
  --site-surface: #12161d;
  --site-surface-2: #171c24;
  --site-surface-3: #1d2430;
  --site-line: rgba(219, 226, 238, 0.12);
  --site-line-strong: rgba(219, 226, 238, 0.22);
  --site-text: #f4f1e8;
  --site-muted: #9da7b6;
  --gvs-gold: #d8ad3d;
  --gvs-gold-soft: rgba(216, 173, 61, 0.14);
  --deal-blue: #59a7e8;
  --deal-green: #4ade80;
  --deal-red: #f97361;
  background: var(--site-bg);
  color: var(--site-text);
  overflow-x: clip;
}

body:not(.admin-page)::before {
  display: none;
}

body:not(.admin-page) .site-header {
  min-height: 58px;
  padding: 10px clamp(14px, 4vw, 34px);
  border-color: var(--site-line);
  background: rgba(11, 13, 16, 0.96);
  box-shadow: none;
}

body:not(.admin-page) .brand {
  gap: 9px;
  font-size: 15px;
}

body:not(.admin-page) .brand-mark {
  width: 32px;
  height: 32px;
  border-color: rgba(216, 173, 61, 0.62);
  background: #161a14;
  color: #f0cf72;
  font-size: 11px;
}

body:not(.admin-page) .main-nav {
  gap: 6px;
}

body:not(.admin-page) .main-nav a {
  min-height: 34px;
  border-color: var(--site-line);
  background: #11151b;
  color: #e8edf4;
  padding: 8px 10px;
  font-size: 13px;
}

body:not(.admin-page) .store-switcher {
  position: sticky;
  top: 58px;
  z-index: 18;
  padding: 8px clamp(12px, 4vw, 34px);
  border-bottom: 1px solid var(--site-line);
  background: rgba(11, 13, 16, 0.96);
  backdrop-filter: blur(14px);
}

body:not(.admin-page) .switcher-inner,
body:not(.admin-page) .page-summary,
body:not(.admin-page) .content-shell,
body:not(.admin-page) .detail-layout {
  width: min(1220px, 100%);
  margin-right: auto;
  margin-left: auto;
}

body:not(.admin-page) .switcher-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body:not(.admin-page) .store-tabs {
  display: inline-flex;
  gap: 2px;
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  padding: 3px;
  background: #0f1319;
  scrollbar-width: none;
}

body:not(.admin-page) .store-tabs a {
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  padding: 8px 12px;
  background: transparent;
  color: #c9d1dc;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

body:not(.admin-page) .store-tabs a.active {
  background: #f0cf72;
  color: #151006;
}

body:not(.admin-page) .country-switcher {
  display: grid;
  grid-template-columns: auto 82px;
  align-items: center;
  gap: 8px;
  width: auto;
}

body:not(.admin-page) .country-switcher label {
  color: var(--site-muted);
  font-size: 11px;
  text-transform: uppercase;
}

body:not(.admin-page) .country-switcher select,
body:not(.admin-page) input,
body:not(.admin-page) select {
  min-height: 34px;
  border-color: var(--site-line);
  background: #0f1319;
  color: var(--site-text);
}

body:not(.admin-page) .page-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  padding: 24px clamp(12px, 4vw, 34px) 18px;
  border-bottom: 1px solid var(--site-line);
}

body:not(.admin-page) .page-summary h1 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
}

body:not(.admin-page) .eyebrow {
  margin-bottom: 6px;
  color: #f0cf72;
  font-size: 11px;
}

body:not(.admin-page) .lead {
  max-width: 700px;
  margin-bottom: 0;
  color: #b5bfca;
  font-size: 15px;
  line-height: 1.55;
}

body:not(.admin-page) .summary-card {
  min-width: 132px;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #11151b;
}

body:not(.admin-page) .summary-card span {
  display: block;
  color: var(--site-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body:not(.admin-page) .summary-card strong {
  display: block;
  margin: 2px 0;
  color: #fff7d8;
  font-size: 30px;
  line-height: 1;
}

body:not(.admin-page) .content-shell {
  padding: 18px clamp(12px, 4vw, 34px) 46px;
}

body:not(.admin-page) .section-heading {
  align-items: center;
  margin-bottom: 12px;
}

body:not(.admin-page) .section-heading h2 {
  font-size: clamp(20px, 2.5vw, 28px);
}

body:not(.admin-page) .section-heading span {
  color: var(--site-muted);
}

body:not(.admin-page) .deal-grid,
body:not(.admin-page) .compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 10px;
}

body:not(.admin-page) .deal-card {
  position: relative;
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  min-height: 156px;
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-surface);
  box-shadow: none;
  transition: border-color 140ms ease, background 140ms ease;
}

body:not(.admin-page) .deal-card:hover {
  transform: none;
  border-color: var(--site-line-strong);
  background: #151a22;
  box-shadow: none;
}

body:not(.admin-page) .rank-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  min-width: 34px;
  border: 1px solid rgba(240, 207, 114, 0.52);
  border-radius: 6px;
  padding: 4px 7px;
  background: rgba(11, 13, 16, 0.86);
  color: #f4d77e;
  font-size: 12px;
  font-weight: 900;
}

body:not(.admin-page) .cover-link,
body:not(.admin-page) .detail-media {
  background: #0c1016;
  contain: paint;
}

body:not(.admin-page) .cover-link {
  height: 100%;
  min-height: 156px;
  border-right: 1px solid var(--site-line);
  aspect-ratio: auto;
}

body:not(.admin-page) .cover-backdrop,
body:not(.admin-page) .detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) saturate(1.04);
  opacity: 0.2;
  transform: none;
}

body:not(.admin-page) .cover-art,
body:not(.admin-page) .detail-art {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

body:not(.admin-page) .cover-art {
  padding: 6px;
  object-fit: contain;
}

body:not(.admin-page) .deal-body {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  gap: 8px;
  min-width: 0;
  padding: 13px 14px;
}

body:not(.admin-page) .deal-meta {
  gap: 5px;
}

body:not(.admin-page) .deal-meta span {
  border: 1px solid var(--site-line);
  border-radius: 5px;
  padding: 3px 6px;
  background: #1a202a;
  color: #aeb8c6;
  font-size: 10px;
}

body:not(.admin-page) .deal-body h2 {
  min-height: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.22;
}

body:not(.admin-page) .deal-title {
  color: #f8fafc;
  text-decoration: none;
}

body:not(.admin-page) .price-row {
  gap: 6px;
  min-width: 0;
}

body:not(.admin-page) .price-row strong,
body:not(.admin-page) .detail-price strong {
  color: #fff7d8;
  font-size: 17px;
}

body:not(.admin-page) .discount {
  border-radius: 5px;
  padding: 3px 6px;
  background: #f07855;
  color: #170804;
  font-size: 12px;
}

body:not(.admin-page) .original {
  color: #778191;
  font-size: 12px;
}

body:not(.admin-page) .card-signal-row {
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
}

body:not(.admin-page) .score-seal.compact {
  position: static;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  width: auto;
  height: auto;
  border: 1px solid rgba(216, 173, 61, 0.56);
  border-radius: 6px;
  padding: 4px 7px;
  background: #211a0c;
  color: #f5d77f;
  box-shadow: none;
  font-weight: 900;
}

body:not(.admin-page) .score-seal.compact::before {
  content: "GVS";
  position: static;
  color: #ba9652;
  font-size: 10px;
}

body:not(.admin-page) .score-seal.compact span {
  padding: 0;
  color: #ffe08a;
  font-size: 16px;
}

body:not(.admin-page) .meta-score {
  border: 1px solid rgba(89, 167, 232, 0.28);
  border-radius: 6px;
  padding: 4px 7px;
  background: rgba(89, 167, 232, 0.08);
  color: #71baf4;
  font-size: 12px;
}

body:not(.admin-page) .card-actions {
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: auto;
}

body:not(.admin-page) .store-action,
body:not(.admin-page) .details-action,
body:not(.admin-page) .primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

body:not(.admin-page) .store-action,
body:not(.admin-page) .primary-action {
  border: 1px solid rgba(74, 222, 128, 0.45);
  background: #65d98a;
  color: #06100a;
}

body:not(.admin-page) .details-action {
  border: 1px solid var(--site-line);
  background: #0f1319;
  color: #cdd6e2;
}

body:not(.admin-page) .detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 14px;
  padding: 20px clamp(12px, 4vw, 34px) 8px;
}

body:not(.admin-page) .detail-media {
  min-height: 0;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: #0c1016;
  box-shadow: none;
}

body:not(.admin-page) .detail-art {
  padding: clamp(12px, 2.5vw, 22px);
}

body:not(.admin-page) .detail-copy {
  align-self: stretch;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px);
  background: var(--site-surface);
  backdrop-filter: none;
}

body:not(.admin-page) .detail-copy h1 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
}

body:not(.admin-page) .detail-copy p {
  color: #c1cad5;
  line-height: 1.65;
}

body:not(.admin-page) .detail-buy-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  padding: 12px;
  background: #0f1319;
}

body:not(.admin-page) .detail-price {
  gap: 7px;
}

body:not(.admin-page) .score-breakdown {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

body:not(.admin-page) .score-breakdown div,
body:not(.admin-page) .facts div,
body:not(.admin-page) .contact-panel {
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: #0f1319;
}

body:not(.admin-page) .score-breakdown div {
  padding: 10px;
}

body:not(.admin-page) .score-breakdown .gvs-stat {
  border-color: rgba(216, 173, 61, 0.52);
  background: #211a0c;
}

body:not(.admin-page) .score-breakdown span {
  color: var(--site-muted);
  font-size: 10px;
}

body:not(.admin-page) .score-breakdown strong {
  margin-top: 3px;
  color: #f6f0df;
  font-size: 24px;
}

body:not(.admin-page) .score-breakdown .gvs-stat strong {
  color: #ffe08a;
}

body:not(.admin-page) .facts {
  gap: 8px;
  margin: 14px 0 0;
}

body:not(.admin-page) .facts div {
  padding: 10px;
}

body:not(.admin-page) .contact-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body:not(.admin-page) .contact-panel {
  box-shadow: none;
  backdrop-filter: none;
}

body:not(.admin-page) .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(14px, 4vw, 34px);
  border-color: var(--site-line);
  background: #0b0d10;
}

@media (max-width: 920px) {
  body:not(.admin-page) .page-summary,
  body:not(.admin-page) .detail-layout,
  body:not(.admin-page) .contact-layout {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .summary-card {
    width: 100%;
  }
}

@media (max-width: 680px) {
  body:not(.admin-page) .site-header {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
  }

  body:not(.admin-page) .brand {
    min-width: 0;
    font-size: 12px;
  }

  body:not(.admin-page) .brand-mark {
    width: 28px;
    height: 28px;
  }

  body:not(.admin-page) .main-nav {
    width: auto;
    flex: 0 0 auto;
  }

  body:not(.admin-page) .main-nav a {
    min-height: 30px;
    padding: 6px 8px;
    font-size: 12px;
  }

  body:not(.admin-page) .store-switcher {
    top: 45px;
    padding: 7px 10px;
  }

  body:not(.admin-page) .switcher-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
  }

  body:not(.admin-page) .store-tabs {
    width: 100%;
  }

  body:not(.admin-page) .store-tabs a {
    flex: 1 0 auto;
    text-align: center;
  }

  body:not(.admin-page) .country-switcher {
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
  }

  body:not(.admin-page) .page-summary {
    padding: 18px 10px 14px;
  }

  body:not(.admin-page) .page-summary h1 {
    font-size: clamp(28px, 10vw, 36px);
  }

  body:not(.admin-page) .content-shell {
    padding: 14px 10px 34px;
  }

  body:not(.admin-page) .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  body:not(.admin-page) .deal-grid,
  body:not(.admin-page) .compact-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .deal-card {
    grid-template-columns: 116px minmax(0, 1fr);
    min-height: 150px;
  }

  body:not(.admin-page) .cover-link {
    min-height: 150px;
  }

  body:not(.admin-page) .deal-body {
    gap: 6px;
    padding: 10px;
  }

  body:not(.admin-page) .deal-body h2 {
    font-size: 14px;
  }

  body:not(.admin-page) .price-row strong {
    font-size: 14px;
  }

  body:not(.admin-page) .card-signal-row,
  body:not(.admin-page) .card-actions {
    flex-wrap: wrap;
  }

  body:not(.admin-page) .store-action,
  body:not(.admin-page) .details-action {
    min-height: 30px;
    padding: 6px 8px;
  }

  body:not(.admin-page) .detail-layout {
    padding: 14px 10px 6px;
  }

  body:not(.admin-page) .detail-media {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }

  body:not(.admin-page) .detail-buy-box {
    align-items: stretch;
    flex-direction: column;
  }

  body:not(.admin-page) .score-breakdown,
  body:not(.admin-page) .facts {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 10px;
  }
}

/* Public reference redesign: Sito.png direction. */
body:not(.admin-page) {
  --gvs-bg: #05070b;
  --gvs-panel: rgba(9, 14, 21, 0.86);
  --gvs-panel-solid: #0b1119;
  --gvs-card: #0c131d;
  --gvs-line: rgba(255, 255, 255, 0.13);
  --gvs-line-strong: rgba(255, 255, 255, 0.22);
  --gvs-text: #f7f8fb;
  --gvs-muted: #c1c7d0;
  --gvs-dim: #8b95a4;
  --gvs-lime: #b9f20d;
  --gvs-lime-2: #d7ff26;
  --gvs-red: #ff3f46;
  --gvs-blue: #9bc7ff;
  background: radial-gradient(circle at 48% 7%, rgba(58, 91, 94, 0.26), transparent 31%), var(--gvs-bg);
  color: var(--gvs-text);
}

body:not(.admin-page) .site-header {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--gvs-line);
  background: rgba(5, 7, 11, 0.94);
}

body:not(.admin-page) .brand {
  gap: 22px;
  font-size: 17px;
  font-weight: 900;
}

body:not(.admin-page) .brand-mark {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: var(--gvs-lime);
  font-size: 38px;
  font-weight: 1000;
  letter-spacing: 0;
}

body:not(.admin-page) .main-nav {
  justify-self: center;
  gap: 48px;
  height: 100%;
}

body:not(.admin-page) .main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 72px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: rgba(247, 248, 251, 0.82);
  font-size: 16px;
  font-weight: 700;
}

body:not(.admin-page) .main-nav a:first-child {
  color: var(--gvs-lime);
}

body:not(.admin-page) .main-nav a:first-child::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 0;
  left: -7px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--gvs-lime);
}

body:not(.admin-page) .nav-badge {
  border: 1px solid rgba(185, 242, 13, 0.45);
  border-radius: 6px;
  padding: 3px 6px;
  color: var(--gvs-lime);
  font-size: 11px;
  font-weight: 900;
}

body:not(.admin-page) .header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}

body:not(.admin-page) .country-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  border: 1px solid var(--gvs-line);
  border-radius: 10px;
  padding: 0 13px;
  background: rgba(8, 11, 17, 0.78);
  color: #fff;
  font-weight: 800;
}

body:not(.admin-page) .country-flag {
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    linear-gradient(#244c9f 0 45%, transparent 45%),
    repeating-linear-gradient(to bottom, #c8383e 0 8%, #fff 8% 16%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

body:not(.admin-page) .search-button {
  position: relative;
  width: 50px;
  height: 50px;
  min-height: 50px;
  border: 1px solid var(--gvs-line);
  border-radius: 50%;
  padding: 0;
  background: rgba(8, 11, 17, 0.78);
}

body:not(.admin-page) .search-button::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
}

body:not(.admin-page) .search-button::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 30px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(45deg);
}

body:not(.admin-page) .deals-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 475px);
  gap: clamp(32px, 5vw, 70px);
  overflow: hidden;
  min-height: 414px;
  padding: 38px clamp(20px, 4.6vw, 70px) 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body:not(.admin-page) .hero-backdrop {
  position: absolute;
  inset: -10% -4%;
  width: 108%;
  height: 120%;
  object-fit: cover;
  filter: blur(16px) saturate(1.18);
  opacity: 0.32;
  transform: scale(1.04);
}

body:not(.admin-page) .deals-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96) 0%, rgba(5, 7, 11, 0.70) 45%, rgba(5, 7, 11, 0.88) 100%),
    radial-gradient(circle at 48% 45%, rgba(185, 242, 13, 0.18), transparent 34%);
}

body:not(.admin-page) .hero-copy,
body:not(.admin-page) .hero-score-card {
  position: relative;
  z-index: 1;
}

body:not(.admin-page) .hero-copy {
  align-self: center;
  max-width: 650px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body:not(.admin-page) .country-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 31px;
  margin-bottom: 18px;
  border: 1px solid var(--gvs-line);
  border-radius: 10px;
  padding: 0 11px;
  background: rgba(12, 19, 29, 0.78);
  color: var(--gvs-muted);
  font-size: 13px;
  font-weight: 800;
}

body:not(.admin-page) .deals-hero h1 {
  max-width: 720px;
  margin: 0 0 16px;
  font-size: clamp(56px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

body:not(.admin-page) .deals-hero h1 span {
  display: block;
  color: var(--gvs-lime);
}

body:not(.admin-page) .deals-hero p {
  max-width: 520px;
  margin: 0 0 26px;
  color: var(--gvs-muted);
  font-size: 17px;
  line-height: 1.55;
}

body:not(.admin-page) .deals-hero p strong {
  color: var(--gvs-lime);
}

body:not(.admin-page) .score-info-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 252px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  padding: 0 16px;
  background: rgba(10, 16, 23, 0.72);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

body:not(.admin-page) .score-info-link span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gvs-lime);
  border-radius: 50%;
  color: var(--gvs-lime);
  font-size: 12px;
}

body:not(.admin-page) .score-info-link::after {
  content: ">";
  margin-left: auto;
  color: #fff;
}

body:not(.admin-page) .hero-score-card {
  align-self: center;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px 26px;
  min-height: 300px;
  border: 1px solid var(--gvs-line);
  border-radius: 8px;
  padding: 30px;
  background: rgba(13, 18, 27, 0.80);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 90px rgba(0, 0, 0, 0.34);
}

body:not(.admin-page) .hero-score-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body:not(.admin-page) .hero-score-link:hover,
body:not(.admin-page) .hero-score-link:focus-visible {
  border-color: rgba(159, 206, 46, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 26px 95px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(159, 206, 46, 0.18);
  outline: 0;
  transform: translateY(-2px);
}

body:not(.admin-page) .score-ring {
  --score-progress: 0%;
  position: relative;
  display: grid;
  place-items: center;
  align-self: start;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(var(--gvs-lime) var(--score-progress), rgba(185, 242, 13, 0.12) 0);
}

body:not(.admin-page) .score-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #101722;
}

body:not(.admin-page) .score-ring span,
body:not(.admin-page) .score-ring strong,
body:not(.admin-page) .score-ring em {
  position: relative;
  z-index: 1;
}

body:not(.admin-page) .score-ring span {
  align-self: end;
  color: #d9dee7;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body:not(.admin-page) .score-ring strong {
  color: #fff;
  font-size: 45px;
  line-height: 0.95;
}

body:not(.admin-page) .score-ring em {
  align-self: start;
  color: var(--gvs-lime);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

body:not(.admin-page) .deal-count {
  align-self: center;
}

body:not(.admin-page) .deal-count span {
  display: block;
  color: #d4dae3;
  font-size: 14px;
  text-transform: uppercase;
}

body:not(.admin-page) .deal-count strong {
  display: block;
  margin: 6px 0 4px;
  color: #fff;
  font-size: 44px;
  line-height: 1;
}

body:not(.admin-page) .trend-line {
  grid-column: 1 / -1;
  position: relative;
  height: 72px;
  border-bottom: 1px solid rgba(185, 242, 13, 0.20);
  background: linear-gradient(180deg, rgba(185, 242, 13, 0.17), transparent);
  clip-path: polygon(0 70%, 12% 58%, 22% 62%, 31% 54%, 42% 60%, 52% 48%, 63% 38%, 73% 44%, 83% 36%, 91% 22%, 100% 28%, 100% 100%, 0 100%);
}

body:not(.admin-page) .trend-caption {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  color: var(--gvs-muted);
  font-size: 13px;
}

body:not(.admin-page) .deals-controls {
  display: grid;
  gap: 14px;
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 20px clamp(20px, 4.6vw, 70px) 0;
}

body:not(.admin-page) .controls-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body:not(.admin-page) .store-switcher {
  position: static;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

body:not(.admin-page) .store-tabs {
  display: inline-flex;
  gap: 8px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

body:not(.admin-page) .store-tabs a {
  min-height: 40px;
  border: 1px solid var(--gvs-line);
  border-radius: 8px;
  padding: 0 15px;
  background: rgba(12, 19, 29, 0.82);
  color: #d8dde5;
  font-weight: 900;
}

body:not(.admin-page) .store-tabs a.active {
  border-color: rgba(185, 242, 13, 0.7);
  background: var(--gvs-lime);
  color: #0b1002;
}

body:not(.admin-page) .country-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

body:not(.admin-page) .country-switcher label,
body:not(.admin-page) .sort-view-tools label,
body:not(.admin-page) .filter-bar label {
  color: var(--gvs-muted);
  font-size: 13px;
  font-weight: 700;
}

body:not(.admin-page) .sort-view-tools {
  display: flex;
  align-items: center;
  gap: 22px;
}

body:not(.admin-page) .sort-view-tools label {
  display: flex;
  align-items: center;
  gap: 10px;
}

body:not(.admin-page) .country-switcher select,
body:not(.admin-page) .sort-view-tools select,
body:not(.admin-page) .filter-bar select {
  min-height: 44px;
  border-color: var(--gvs-line);
  border-radius: 10px;
  padding: 0 42px 0 16px;
  background: rgba(12, 19, 29, 0.86);
  color: #fff;
  font-weight: 800;
}

body:not(.admin-page) .view-toggle {
  display: inline-flex;
  gap: 12px;
}

body:not(.admin-page) .view-toggle button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-height: 48px;
  border: 1px solid var(--gvs-line);
  border-radius: 10px;
  padding: 0;
  background: rgba(12, 19, 29, 0.86);
}

body:not(.admin-page) .view-toggle button.active {
  border-color: rgba(185, 242, 13, 0.62);
  background: rgba(185, 242, 13, 0.16);
}

body:not(.admin-page) .grid-icon,
body:not(.admin-page) .list-icon {
  display: block;
  width: 22px;
  height: 22px;
}

body:not(.admin-page) .grid-icon {
  background:
    linear-gradient(var(--gvs-lime) 0 0) 0 0 / 9px 9px,
    linear-gradient(var(--gvs-lime) 0 0) 13px 0 / 9px 9px,
    linear-gradient(var(--gvs-lime) 0 0) 0 13px / 9px 9px,
    linear-gradient(var(--gvs-lime) 0 0) 13px 13px / 9px 9px;
  background-repeat: no-repeat;
}

body:not(.admin-page) .list-icon {
  background:
    linear-gradient(#dfe5ed 0 0) 0 2px / 22px 3px,
    linear-gradient(#dfe5ed 0 0) 0 10px / 22px 3px,
    linear-gradient(#dfe5ed 0 0) 0 18px / 22px 3px;
  background-repeat: no-repeat;
}

body:not(.admin-page) .filter-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr)) auto;
  gap: 10px;
  border: 1px solid var(--gvs-line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(9, 14, 21, 0.70);
}

body:not(.admin-page) .filter-toggle {
  display: none;
}

body:not(.admin-page) .filter-bar label {
  display: grid;
  gap: 6px;
}

body:not(.admin-page) .reset-filters {
  align-self: end;
  min-height: 44px;
  border: 1px solid var(--gvs-line);
  border-radius: 10px;
  background: rgba(12, 19, 29, 0.86);
  color: #fff;
}

body:not(.admin-page) .deals-section {
  width: min(1500px, 100%);
  padding: 28px clamp(20px, 4.6vw, 70px) 48px;
}

body:not(.admin-page) .section-heading {
  margin-bottom: 16px;
}

body:not(.admin-page) .section-heading h2 {
  font-size: 24px;
}

body:not(.admin-page) .deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body:not(.admin-page) .deal-card {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--gvs-line-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 22, 33, 0.88), rgba(7, 12, 18, 0.95));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

body:not(.admin-page) .deal-card[hidden] {
  display: none;
}

body:not(.admin-page) .deal-card:hover {
  border-color: rgba(185, 242, 13, 0.42);
  background: linear-gradient(180deg, rgba(15, 26, 39, 0.92), rgba(8, 13, 20, 0.98));
}

body:not(.admin-page) .cover-link {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  height: auto;
  border-right: 0;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background: #0b1018;
}

body:not(.admin-page) .cover-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) saturate(1.1);
  opacity: 0.48;
  transform: scale(1.08);
}

body:not(.admin-page) .cover-art {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
}

body:not(.admin-page) .rank-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  min-width: 40px;
  border: 2px solid var(--gvs-lime);
  border-radius: 8px;
  padding: 6px 8px;
  background: rgba(8, 11, 17, 0.86);
  color: var(--gvs-lime);
  font-size: 18px;
  font-weight: 1000;
}

body:not(.admin-page) .watch-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  min-height: 32px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
}

body:not(.admin-page) .watch-button::before {
  content: "♡";
  font-size: 30px;
  line-height: 1;
}

body:not(.admin-page) .deal-body {
  display: grid;
  gap: 14px;
  padding: 16px;
}

body:not(.admin-page) .deal-body h2 {
  min-height: 48px;
  margin: 0;
  font-size: 18px;
  line-height: 1.22;
}

body:not(.admin-page) .deal-title {
  color: #fff;
  text-decoration: none;
}

body:not(.admin-page) .price-row {
  align-items: center;
  gap: 10px;
}

body:not(.admin-page) .discount {
  border-radius: 6px;
  padding: 8px 10px;
  background: linear-gradient(180deg, #ff555c, #e62731);
  color: #fff;
  font-size: 14px;
}

body:not(.admin-page) .original {
  color: #a6adba;
  font-size: 15px;
}

body:not(.admin-page) .price-row strong {
  color: #fff;
  font-size: 22px;
}

body:not(.admin-page) .card-stats {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 13px;
}

body:not(.admin-page) .card-stats div {
  min-width: 0;
}

body:not(.admin-page) .card-stats span {
  display: block;
  margin-bottom: 4px;
  color: var(--gvs-muted);
  font-size: 11px;
  font-weight: 800;
}

body:not(.admin-page) .card-gvs span,
body:not(.admin-page) .card-gvs em {
  color: var(--gvs-lime);
}

body:not(.admin-page) .card-stats strong {
  display: block;
  color: #fff;
  font-size: 21px;
  line-height: 1.08;
}

body:not(.admin-page) .card-gvs strong {
  color: var(--gvs-lime);
  font-size: 34px;
}

body:not(.admin-page) .card-gvs em {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

body:not(.admin-page) .deal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--gvs-lime-2), #97ca2d);
  color: #0d1302;
  text-decoration: none;
  font-size: 18px;
  font-weight: 1000;
}

body:not(.admin-page) .deal-cta span {
  width: 14px;
  height: 14px;
  border-top: 2px solid #0d1302;
  border-right: 2px solid #0d1302;
  transform: rotate(45deg);
}

body:not(.admin-page) .deal-grid[data-view="list"] {
  grid-template-columns: 1fr;
}

body:not(.admin-page) .deal-grid[data-view="list"] .deal-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

body:not(.admin-page) .deal-grid[data-view="list"] .cover-link {
  height: 100%;
  aspect-ratio: auto;
}

body:not(.admin-page) .deal-grid[data-view="list"] .deal-body h2 {
  min-height: 0;
}

body:not(.admin-page) .empty-editorial-page {
  width: min(1180px, 100%);
  min-height: 55vh;
  margin: 0 auto;
  padding: 70px clamp(20px, 4.6vw, 70px);
}

@media (max-width: 1180px) {
  body:not(.admin-page) .deal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body:not(.admin-page) .site-header {
    grid-template-columns: 1fr auto;
  }

  body:not(.admin-page) .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-self: stretch;
    justify-content: center;
    gap: 26px;
    height: 46px;
  }

  body:not(.admin-page) .main-nav a {
    min-height: 46px;
  }

  body:not(.admin-page) .deals-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body:not(.admin-page) .hero-score-card {
    grid-template-columns: 140px 1fr;
  }

  body:not(.admin-page) .controls-topline {
    align-items: stretch;
    flex-direction: column;
  }

  body:not(.admin-page) .store-switcher,
  body:not(.admin-page) .sort-view-tools {
    justify-content: space-between;
  }

  body:not(.admin-page) .filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-page) .deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body:not(.admin-page) .site-header {
    min-height: 58px;
    padding: 0 12px;
  }

  body:not(.admin-page) .brand {
    gap: 8px;
    font-size: 13px;
  }

  body:not(.admin-page) .brand-mark {
    font-size: 18px;
  }

  body:not(.admin-page) .header-tools {
    gap: 8px;
  }

  body:not(.admin-page) .country-chip {
    min-height: 32px;
    padding: 0 8px;
  }

  body:not(.admin-page) .search-button {
    width: 36px;
    height: 36px;
    min-height: 36px;
  }

  body:not(.admin-page) .search-button::before {
    top: 10px;
    left: 10px;
    width: 12px;
    height: 12px;
  }

  body:not(.admin-page) .search-button::after {
    top: 24px;
    left: 23px;
    width: 8px;
  }

  body:not(.admin-page) .main-nav {
    gap: 20px;
  }

  body:not(.admin-page) .main-nav a {
    font-size: 14px;
  }

  body:not(.admin-page) .deals-hero {
    padding: 24px 12px 28px;
  }

  body:not(.admin-page) .deals-hero h1 {
    font-size: clamp(46px, 15vw, 64px);
  }

  body:not(.admin-page) .score-info-link {
    width: 100%;
    min-width: 0;
  }

  body:not(.admin-page) .hero-score-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  body:not(.admin-page) .score-ring {
    justify-self: center;
  }

  body:not(.admin-page) .deals-controls {
    padding: 14px 12px 0;
  }

  body:not(.admin-page) .store-switcher {
    display: grid;
    gap: 10px;
  }

  body:not(.admin-page) .store-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body:not(.admin-page) .store-tabs a {
    justify-content: center;
    padding: 0 8px;
    font-size: 13px;
  }

  body:not(.admin-page) .country-switcher,
  body:not(.admin-page) .sort-view-tools,
  body:not(.admin-page) .sort-view-tools label {
    width: 100%;
  }

  body:not(.admin-page) .sort-view-tools {
    align-items: stretch;
    gap: 10px;
  }

  body:not(.admin-page) .sort-view-tools select {
    flex: 1;
  }

  body:not(.admin-page) .filter-bar {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .deals-section {
    padding: 20px 12px 36px;
  }

  body:not(.admin-page) .deal-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .deal-grid[data-view="list"] .deal-card {
    grid-template-columns: 122px minmax(0, 1fr);
  }

  body:not(.admin-page) .deal-grid[data-view="list"] .cover-link {
    aspect-ratio: auto;
  }

  body:not(.admin-page) .deal-grid[data-view="list"] .deal-body {
    gap: 8px;
    padding: 10px;
  }

  body:not(.admin-page) .deal-grid[data-view="list"] .deal-body h2 {
    font-size: 14px;
  }

  body:not(.admin-page) .deal-grid[data-view="list"] .price-row {
    gap: 5px;
  }

  body:not(.admin-page) .deal-grid[data-view="list"] .discount,
  body:not(.admin-page) .deal-grid[data-view="list"] .original {
    font-size: 11px;
  }

  body:not(.admin-page) .deal-grid[data-view="list"] .price-row strong {
    font-size: 14px;
  }

  body:not(.admin-page) .deal-grid[data-view="list"] .card-stats {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding-top: 8px;
  }

  body:not(.admin-page) .deal-grid[data-view="list"] .card-stats div:last-child {
    display: none;
  }

  body:not(.admin-page) .deal-grid[data-view="list"] .card-gvs strong,
  body:not(.admin-page) .deal-grid[data-view="list"] .card-stats strong {
    font-size: 15px;
  }

  body:not(.admin-page) .deal-grid[data-view="list"] .card-gvs em,
  body:not(.admin-page) .deal-grid[data-view="list"] .card-stats span {
    font-size: 9px;
  }

  body:not(.admin-page) .deal-grid[data-view="list"] .deal-cta {
    min-height: 30px;
    font-size: 12px;
  }
}

/* Final visual tune against Sito.png. */
body:not(.admin-page) .hero-backdrop {
  filter: blur(9px) saturate(1.22);
  opacity: 0.50;
  transform: scale(1.02);
}

body:not(.admin-page) .deals-hero::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.93) 0%, rgba(5, 7, 11, 0.56) 47%, rgba(5, 7, 11, 0.84) 100%),
    radial-gradient(circle at 48% 45%, rgba(185, 242, 13, 0.20), transparent 34%);
}

body:not(.admin-page) .card-stats div:last-child strong {
  overflow-wrap: normal;
  font-size: 20px;
  white-space: nowrap;
}

body:not(.admin-page) .card-stats div:last-child span {
  white-space: nowrap;
}

body:not(.admin-page) .value-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  border: 1px solid var(--gvs-line);
  border-radius: 8px;
  padding: 18px 28px;
  background: linear-gradient(90deg, rgba(10, 18, 26, 0.92), rgba(8, 13, 20, 0.86));
}

body:not(.admin-page) .value-strip[hidden] {
  display: none;
}

body:not(.admin-page) .value-strip div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 2px 14px;
  align-items: center;
}

body:not(.admin-page) .value-strip strong {
  color: #fff;
  font-size: 15px;
}

body:not(.admin-page) .value-strip div:first-child strong {
  color: var(--gvs-lime);
}

body:not(.admin-page) .value-strip p {
  grid-column: 2;
  margin: 0;
  color: var(--gvs-muted);
  font-size: 14px;
  line-height: 1.35;
}

body:not(.admin-page) .value-icon {
  position: relative;
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(185, 242, 13, 0.35);
  border-radius: 50%;
  background: rgba(185, 242, 13, 0.08);
}

body:not(.admin-page) .value-icon::before {
  color: var(--gvs-lime);
  font-size: 26px;
  font-weight: 900;
}

body:not(.admin-page) .star-icon::before {
  content: "☆";
}

body:not(.admin-page) .trend-icon::before {
  content: "↗";
}

body:not(.admin-page) .data-icon::before {
  content: "◔";
}

body:not(.admin-page) .tag-icon::before {
  content: "◇";
}

@media (max-width: 640px) {
  body:not(.admin-page) .card-stats div:last-child strong {
    font-size: 18px;
  }

  body:not(.admin-page) .value-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
}

/* Header and hero refinements requested after Sito.png pass. */
body:not(.admin-page) {
  --gvs-lime: #9fce2e;
  --gvs-lime-2: #bddf48;
}

body:not(.admin-page) .site-header {
  grid-template-columns: auto auto minmax(280px, 1fr) auto;
  gap: clamp(18px, 3vw, 42px);
}

body:not(.admin-page) .platform-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body:not(.admin-page) .platform-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--gvs-line);
  border-radius: 9px;
  padding: 0 14px;
  background: rgba(12, 19, 29, 0.80);
  color: #dce3ec;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

body:not(.admin-page) .platform-nav a.active {
  border-color: rgba(159, 206, 46, 0.72);
  background: linear-gradient(180deg, #c1df56, var(--gvs-lime));
  color: #0b1104;
}

body:not(.admin-page) .main-nav {
  justify-self: end;
  gap: clamp(28px, 4vw, 56px);
}

body:not(.admin-page) .header-country-form {
  display: grid;
  grid-template-columns: auto 86px;
  align-items: center;
  gap: 8px;
}

body:not(.admin-page) .header-country-form label {
  color: var(--gvs-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

body:not(.admin-page) .header-country-form select {
  min-height: 40px;
  border: 1px solid var(--gvs-line);
  border-radius: 10px;
  padding: 0 34px 0 13px;
  background: rgba(8, 11, 17, 0.78);
  color: #fff;
  font-weight: 900;
}

body:not(.admin-page) .country-chip,
body:not(.admin-page) .country-flag {
  display: none;
}

body:not(.admin-page) .controls-topline {
  justify-content: flex-end;
}

body:not(.admin-page) .deals-hero {
  isolation: isolate;
}

body:not(.admin-page) .hero-backdrop {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center right;
  filter: blur(2.5px) saturate(1.08) brightness(0.96);
  opacity: 0.88;
  transform: scale(1.015);
}

body:not(.admin-page) .deals-hero::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.98) 0%, rgba(5, 7, 11, 0.84) 31%, rgba(5, 7, 11, 0.30) 58%, rgba(5, 7, 11, 0.38) 76%, rgba(5, 7, 11, 0.60) 100%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.10), rgba(5, 7, 11, 0.66)),
    radial-gradient(circle at 58% 42%, rgba(159, 206, 46, 0.16), transparent 34%);
}

body:not(.admin-page) .hero-score-card {
  background: rgba(9, 14, 22, 0.74);
}

body:not(.admin-page) .country-label {
  gap: 0;
}

@media (max-width: 920px) {
  body:not(.admin-page) .site-header {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  body:not(.admin-page) .platform-nav {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  body:not(.admin-page) .main-nav {
    grid-column: 1 / -1;
    order: 4;
    justify-self: stretch;
    justify-content: center;
    height: 40px;
  }

  body:not(.admin-page) .main-nav a {
    min-height: 40px;
  }

  body:not(.admin-page) .header-country-form {
    grid-template-columns: 78px;
  }

  body:not(.admin-page) .header-country-form label {
    display: none;
  }
}

@media (max-width: 640px) {
  body:not(.admin-page) .platform-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body:not(.admin-page) .platform-nav a {
    justify-content: center;
    min-height: 34px;
    padding: 0 7px;
    font-size: 12px;
  }

  body:not(.admin-page) .main-nav {
    gap: 18px;
  }

  body:not(.admin-page) .header-tools {
    gap: 8px;
  }

  body:not(.admin-page) .deals-hero::after {
    background:
      linear-gradient(180deg, rgba(5, 7, 11, 0.84) 0%, rgba(5, 7, 11, 0.72) 36%, rgba(5, 7, 11, 0.94) 100%),
      radial-gradient(circle at 62% 18%, rgba(159, 206, 46, 0.16), transparent 38%);
  }

  body:not(.admin-page) .hero-score-card {
    display: none;
  }

  body:not(.admin-page) .deals-hero {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  body:not(.admin-page) .country-label {
    min-height: 25px;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 0 9px;
    font-size: 10px;
  }

  body:not(.admin-page) .deals-hero h1 {
    margin-bottom: 10px;
    font-size: clamp(36px, 11vw, 46px);
    line-height: 0.96;
  }

  body:not(.admin-page) .deals-hero p {
    margin-bottom: 13px;
    font-size: 13px;
    line-height: 1.35;
  }

  body:not(.admin-page) .score-info-link {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  body:not(.admin-page) .filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--gvs-line);
    border-radius: 10px;
    padding: 0 14px;
    background: rgba(12, 19, 29, 0.86);
    color: #fff;
    font-weight: 900;
  }

  body:not(.admin-page) .filter-toggle span[aria-hidden="true"] {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--gvs-lime);
    border-bottom: 2px solid var(--gvs-lime);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 160ms ease;
  }

  body:not(.admin-page) .filter-toggle[aria-expanded="true"] span[aria-hidden="true"] {
    transform: rotate(225deg) translateY(-2px);
  }

  body:not(.admin-page) .deals-controls:not(.filters-open) .filter-bar {
    display: none;
  }

  body:not(.admin-page) .deals-controls.filters-open .filter-bar {
    display: grid;
  }
}

body.contact-page:not(.admin-page) {
  font-family: Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.contact-page:not(.admin-page) .contact-summary {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  padding-top: clamp(34px, 6vw, 70px);
  padding-bottom: clamp(20px, 4vw, 34px);
}

body.contact-page:not(.admin-page) .contact-summary h1 {
  max-width: 820px;
  font-size: clamp(36px, 5.8vw, 70px);
  line-height: 0.98;
}

body.contact-page:not(.admin-page) .contact-summary .lead {
  max-width: 620px;
  color: #c7d0dc;
  font-size: clamp(16px, 2vw, 19px);
}

body.contact-page:not(.admin-page) .contact-layout-single {
  display: block;
  width: min(900px, 100%);
  padding-top: clamp(18px, 3vw, 30px);
}

body.contact-page:not(.admin-page) .contact-message {
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(159, 206, 46, 0.09), transparent 38%),
    linear-gradient(180deg, rgba(17, 24, 34, 0.94), rgba(10, 15, 22, 0.98));
}

body.contact-page:not(.admin-page) .contact-message p {
  max-width: 720px;
  margin-bottom: 15px;
  color: #d2d9e3;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.68;
}

body.contact-page:not(.admin-page) .contact-message .contact-greeting {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  line-height: 1.08;
}

body.contact-page:not(.admin-page) .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

body.contact-page:not(.admin-page) .contact-email,
body.contact-page:not(.admin-page) .x-contact-link {
  min-height: 44px;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 15px;
}

body.contact-page:not(.admin-page) .x-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gvs-line-strong);
  background: #0f151f;
  color: #f8fafc;
  font-weight: 900;
  text-decoration: none;
}

body.contact-page:not(.admin-page) .x-contact-link:hover {
  border-color: rgba(159, 206, 46, 0.55);
  background: #151d29;
}

body.contact-page:not(.admin-page) .x-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f8fafc;
  color: #05070b;
}

body.contact-page:not(.admin-page) .x-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

@media (max-width: 640px) {
  body.contact-page:not(.admin-page) .contact-actions {
    display: grid;
  }

  body.contact-page:not(.admin-page) .contact-email,
  body.contact-page:not(.admin-page) .x-contact-link {
    width: 100%;
    justify-content: center;
    overflow-wrap: anywhere;
    text-align: center;
  }
}
