:root {
  --color-primary: #e879f9;
  --color-secondary: #8b5cf6;
  --color-accent: #67e8f9;
  --bg-start: #09090b;
  --bg-end: #111827;
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --surface-strong: rgba(15, 23, 42, 0.78);
  --surface-soft: rgba(15, 23, 42, 0.54);
  --glass-tint: rgba(255,255,255,0.06);
  --border-glow: rgba(255,255,255,0.12);
  --border-soft: rgba(255,255,255,0.08);
  --glass-blur: 22px;
  --glass-opacity: 0.14;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow-intensity: 0.42;
  --max-width: 1220px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top, rgba(139,92,246,0.18), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(232,121,249,0.12), transparent 20%),
    radial-gradient(circle at 10% 90%, rgba(103,232,249,0.08), transparent 18%),
    linear-gradient(180deg, var(--bg-start), var(--bg-end));
  min-height: 100%;
}
body { min-height: 100vh; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.is-disabled {
  opacity: .55;
}

.gallery-admin-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-admin-preview-card {
  padding: 14px;
  display: grid;
  gap: 12px;
}

.gallery-admin-preview-card img,
.gallery-admin-card-v2 img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-meta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0;
}

.view-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.view-switcher .ghost-button {
  position: relative;
  z-index: 2;
}

.view-switcher .ghost-button.is-active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.gallery-admin-list {
  display: grid;
  gap: 14px;
}

.gallery-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-admin-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  position: relative;
  overflow: visible;
}

.gallery-admin-thumb-wrap {
  position: relative;
}

.gallery-admin-thumb {
  width: 112px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  cursor: zoom-in;
}

.gallery-admin-hover-preview {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) scale(.96);
  width: 220px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(9, 10, 16, 0.94);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 58px rgba(0,0,0,0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 30;
}

.gallery-admin-hover-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-admin-list .gallery-admin-thumb-wrap:hover .gallery-admin-hover-preview,
.gallery-admin-list .gallery-admin-thumb-wrap:focus-within .gallery-admin-hover-preview {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.gallery-admin-main {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.gallery-admin-title {
  font-size: 22px;
  color: #fffaf0;
  line-height: 1.08;
}

.gallery-admin-description {
  margin: 0;
  color: rgba(255,255,255,0.94);
  line-height: 1.5;
}

.gallery-admin-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-admin-side {
  display: grid;
  gap: 10px;
  justify-items: end;
  align-content: center;
  min-width: 120px;
}

.gallery-inline-note {
  background: rgba(0,0,0,0.62);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.98);
  text-transform: none;
  letter-spacing: .02em;
  font-size: 12px;
}

.gallery-admin-grid-card {
  padding: 12px;
  display: grid;
  gap: 12px;
}

.gallery-admin-grid-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.gallery-admin-grid-copy {
  display: grid;
  gap: 10px;
}

.gallery-admin-actions-grid {
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-list-head {
  margin-top: 24px;
}

@media (max-width: 920px) {
  .gallery-admin-row {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .gallery-admin-side {
    grid-column: 1 / -1;
    justify-items: start;
    grid-auto-flow: column;
    flex-wrap: wrap;
  }

  .gallery-admin-hover-preview {
    display: none;
  }
}

.page-shell,
.admin-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
  min-width: 0;
}

.glass-card,
.topbar,
.hero,
.dashboard-header,
.sidebar,
.stat-card,
.analytics-card,
.preset-strip,
.preview-mini-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    color-mix(in srgb, var(--glass-tint) calc(var(--glass-opacity) * 100%), transparent);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow:
    0 20px 50px rgba(0,0,0,var(--shadow-intensity)),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  margin-bottom: 24px;
  gap: 16px;
}
.site-nav,
.topbar nav,
.hero-actions,
.preview-actions,
.age-gate-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.eyebrow,
.badge,
.chip,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0,0,0,0.54);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.98);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .78fr);
  gap: 30px;
  padding: 44px;
  margin-bottom: 30px;
  align-items: stretch;
  min-height: 420px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -18% auto auto -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232,121,249,0.18), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -50px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(103,232,249,0.12), transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding-right: 12px;
}
.hero .badge { width: fit-content; }
.hero h1 {
  font-size: clamp(52px, 8vw, 92px);
  line-height: .92;
  letter-spacing: -0.055em;
  margin: 16px 0 18px;
  max-width: 7ch;
}
.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0;
}
.hero-panel {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 14px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}
.metric {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  min-height: 104px;
}
.metric strong {
  font-size: 30px;
  line-height: 1;
}
.metric span {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
}

.primary-button,
.secondary-button,
.ghost-button,
.text-link,
.mobile-nav-toggle,
button {
  border: 0;
  cursor: pointer;
  font: inherit;
}
.primary-button,
.secondary-button,
.ghost-button,
.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.primary-button {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  box-shadow: 0 12px 30px rgba(139,92,246,0.28);
}
.secondary-button,
.ghost-button,
.mobile-nav-toggle {
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  border: 1px solid rgba(255,255,255,0.08);
}
.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.mobile-nav-toggle:hover {
  transform: translateY(-1px);
}
.text-link {
  color: color-mix(in srgb, var(--color-accent) 88%, white);
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0,0,0,0.42);
}
.danger-link { color: #ffd1d8; }

.alert-error {
  background: rgba(127, 29, 29, 0.45);
  border: 1px solid rgba(252, 165, 165, 0.35);
  color: #fee2e2;
  padding: 12px 14px;
  border-radius: 16px;
  max-width: 720px;
}
.mobile-nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-toggle-bars span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}
.mobile-nav-toggle-label {
  font-size: 14px;
  letter-spacing: .02em;
}
.mobile-nav-toggle { display: none; }
.site-nav { display: flex; gap: 12px; align-items: center; }
.mobile-nav-socials { display: none; }
.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  margin-bottom: 22px;
}
.social-pill,
.social-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-main);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.social-pill:hover,
.social-card-link:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--color-accent) 42%, rgba(255,255,255,.18));
  background: rgba(255,255,255,0.08);
}
.social-pill-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--color-accent) 72%, white);
}
.social-pill-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.social-card {
  padding: 22px 20px;
  display: grid;
  gap: 14px;
}
.faq-grid > article,
.legal-card,
.social-card {
  align-content: start;
}
.faq-grid > article > .eyebrow,
.legal-card > .eyebrow,
.social-card > .eyebrow {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 8px 14px;
  margin-bottom: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-card h3,
.legal-card h3,
.faq-grid > article h2 {
  margin: 6px 0 0;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.social-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pill-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.pill-switcher a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  transition: all .2s ease;
}
.pill-switcher a.is-active,
.pill-switcher a:hover {
  color: var(--text-main);
  border-color: color-mix(in srgb, var(--color-accent) 45%, rgba(255,255,255,0.18));
  background: rgba(255,255,255,0.08);
}

.trust-grid,
.affiliate-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.trust-grid > article,
.faq-grid > article,
.affiliate-card,
.preset-card,
.stat-card,
.analytics-card {
  border-radius: var(--radius);
}
.trust-grid > article {
  padding: 22px 20px;
  min-height: 160px;
  display: grid;
  align-content: start;
  gap: 12px;
}
.trust-grid > article strong {
  font-size: 18px;
  line-height: 1.2;
}
.trust-grid > article p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 15px;
}

.content-section { margin-bottom: 32px; }
.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.section-heading h2,
.faq-grid h2,
.legal-card h3,
.legal-page-card h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}
.faq-grid > article > h2,
.faq-grid > article > h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.section-heading p,
.legal-card p,
.faq-item p,
.legal-copy,
.muted-copy {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.68;
}

.gallery-section-box,
.affiliate-section-box,
.linkhub-section-box {
  padding: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,12,.98), rgba(7,7,12,.74) 42%, rgba(7,7,12,.18) 72%, transparent 88%);
}
.gallery-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
}
.gallery-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.gallery-card.is-featured {
  border-color: rgba(255, 215, 102, 0.55);
  box-shadow:
    0 24px 60px rgba(0,0,0,var(--shadow-intensity)),
    0 0 0 1px rgba(255, 215, 102, 0.18),
    0 0 38px rgba(255, 215, 102, 0.22);
}
.gallery-card.is-featured::before {
  content: '';
  position: absolute;
  inset: -10% -10% auto auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 215, 102, 0.3), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.featured-chip {
  background: rgba(255, 215, 102, 0.28);
  border-color: rgba(255, 215, 102, 0.44);
  color: #fff4c7;
  text-shadow: 0 1px 12px rgba(0,0,0,0.42);
}
.gallery-copy strong {
  font-size: 20px;
  line-height: 1.1;
}
.gallery-copy p {
  margin: 0;
  color: rgba(248,250,252,.82);
  line-height: 1.56;
}

.affiliate-card {
  padding: 16px;
  display: grid;
  gap: 14px;
  overflow: hidden;
  min-height: 100%;
  align-content: start;
}
.affiliate-card img {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}
.affiliate-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.faq-grid > article {
  padding: 24px;
  min-height: 100%;
}
.faq-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.faq-item strong {
  display: inline-block;
  margin-bottom: 8px;
}
.legal-card {
  display: grid;
  align-content: start;
  gap: 14px;
}
.legal-link-stack {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}
.legal-link-stack a,
.lang-switcher a {
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
}
.lang-switcher {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.footer {
  padding: 10px 8px 0;
  color: var(--text-muted);
  text-align: center;
}

.reveal-card,
.reveal-group {
  opacity: 0;
  transform: translateY(18px) scale(.988);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal-card.is-visible,
.reveal-group.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.gallery-card:hover,
.affiliate-card:hover,
.hero-panel:hover,
.trust-grid > article:hover,
.faq-grid > article:hover,
.stat-card:hover,
.analytics-card:hover,
.preset-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(0,0,0,.28);
}

.admin-body { min-height: 100vh; }
.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.login-card {
  width: min(440px, 100%);
  padding: 28px;
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}
.subsection-grid-brand {
  align-items: start;
}
.subsection-grid-brand label {
  min-height: 0;
}
.subsection-grid-brand label:nth-child(2),
.subsection-grid-brand label:nth-child(8) {
  align-self: stretch;
}
input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(12, 16, 26, 0.92);
  color: var(--text-main);
  outline: none;
}

select option,
select optgroup {
  background: #0b0f18;
  color: #f8fafc;
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(103,232,249,.38);
  box-shadow: 0 0 0 3px rgba(103,232,249,.08);
}
textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.admin-shell {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 20px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: 24px;
  padding: 20px;
  display: grid;
  gap: 20px;
  min-height: calc(100vh - 48px);
}
.sidebar-nav {
  display: grid;
  gap: 10px;
}
.sidebar-footer-meta {
  margin-top: auto;
  display: grid;
  gap: 10px;
}
.sidebar-version {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  text-align: left;
  padding-left: 2px;
}
.tab-button {
  background: rgba(255,255,255,.03);
  color: var(--text-main);
  padding: 12px 14px;
  border-radius: 14px;
  text-align: left;
  border: 1px solid transparent;
}
.tab-button.active {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.dashboard-main {
  display: grid;
  gap: 18px;
}
.dashboard-header,
.tab-panel {
  padding: 22px;
}
.dashboard-slogan {
  margin: 8px 0 0;
  max-width: 560px;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.admin-form-grid {
  display: grid;
  gap: 14px;
}
.locale-block {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
}

.admin-settings-top-grid {
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
  align-items: end;
}
.theme-grid {
  grid-template-columns: repeat(2, 1fr);
}
.color-input-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.color-input-row.is-rgba-row {
  grid-template-columns: 56px 110px minmax(0, 1fr);
}
.color-input-row input[type="range"] {
  width: 100%;
}
.color-input-row input[type="color"] {
  width: 56px;
  min-width: 56px;
  height: 44px;
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.theme-preview {
  margin-top: 18px;
  padding: 20px;
}
.preview-showcase {
  display: grid;
  gap: 16px;
}
.preview-mini-card {
  padding: 18px;
  display: grid;
  gap: 8px;
}
.preset-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding: 18px;
  margin-bottom: 18px;
}
.preset-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
  min-width: 0;
}
.theme-grid,
.theme-preview,
.tab-panel#theme,
.tab-panel#theme > * {
  min-width: 0;
}
.preset-scroll-shell {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 18px;
}
.preset-scroll-row {
  display: inline-flex;
  gap: 14px;
  width: max-content;
  min-width: 100%;
  padding: 2px 0 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--color-accent) 62%, rgba(255,255,255,.4)) rgba(255,255,255,.08);
}
.preset-scroll-shell::-webkit-scrollbar,
.preset-scroll-row::-webkit-scrollbar {
  height: 12px;
}
.preset-scroll-shell::-webkit-scrollbar-track,
.preset-scroll-row::-webkit-scrollbar-track {
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.preset-scroll-shell::-webkit-scrollbar-thumb,
.preset-scroll-row::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, color-mix(in srgb, var(--color-primary) 76%, white), color-mix(in srgb, var(--color-accent) 82%, white));
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 4px 14px rgba(0,0,0,.18);
}
.preset-scroll-shell::-webkit-scrollbar-thumb:hover,
.preset-scroll-row::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, color-mix(in srgb, var(--color-primary) 86%, white), color-mix(in srgb, var(--color-accent) 92%, white));
}
.preset-scroll-row .preset-card {
  min-width: 220px;
  max-width: 220px;
  flex: 0 0 220px;
  scroll-snap-align: start;
}
.preset-card {
  position: relative;
  padding: 0;
  display: grid;
  gap: 10px;
  overflow: hidden;
}
.preset-card.is-active {
  border-color: color-mix(in srgb, var(--color-accent) 42%, rgba(255,255,255,.18));
  box-shadow: 0 20px 50px rgba(0,0,0,var(--shadow-intensity)), 0 0 0 1px rgba(255,255,255,.08), 0 0 0 2px color-mix(in srgb, var(--color-accent) 28%, transparent);
}
.preset-card-button {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  padding: 16px;
  display: grid;
  gap: 10px;
  cursor: pointer;
}
.preset-card-button:hover {
  background: rgba(255,255,255,.025);
}
.preset-delete-form {
  position: absolute;
  top: 10px;
  right: 10px;
}
.preset-delete-button {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,16,.66);
  color: #fda4af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.preset-delete-button:hover {
  background: rgba(127,29,29,.28);
  border-color: rgba(248,113,113,.35);
}
.preset-swatches {
  display: flex;
  gap: 10px;
}
.preset-swatches span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.04);
}
.section-inline-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.table-list,
.compact {
  margin-top: 20px;
}
.spaced-list {
  display: grid;
  gap: 12px;
}
.list-row {
  display: grid;
  grid-template-columns: 1fr 140px 80px;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.list-row-rich {
  grid-template-columns: 1fr 110px 220px;
  gap: 16px;
  padding: 14px 0;
}
.list-subline {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 6px;
}
.row-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.row-actions-inline {
  margin-top: 12px;
  justify-content: flex-start;
}
.compact {
  grid-template-columns: repeat(2, 1fr);
}
.compact-card {
  min-height: 240px;
}
.compact-card .gallery-copy {
  display: grid;
  gap: 8px;
}
.compact-card .chip {
  width: fit-content;
}
.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
}
.toggle-settings-form {
  margin-top: 14px;
}
.tab-panel#conversion > .toggle-settings-form {
  margin-bottom: 22px;
}
.tab-panel#conversion > .conversion-form-grid {
  margin-top: 0;
}
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}
.toggle-row + .toggle-row {
  border-top: 1px solid rgba(255,255,255,.06);
}
.toggle-row strong {
  display: block;
  color: var(--text-main);
  font-size: 16px;
}
.toggle-row small {
  display: block;
  color: var(--text-muted);
  margin-top: 6px;
  font-size: 13px;
}
.toggle-switch {
  position: relative;
  display: inline-flex;
  width: 62px;
  height: 34px;
  flex: 0 0 auto;
}
.toggle-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.toggle-slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 8px 24px rgba(0,0,0,.18);
  transition: all .22s ease;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,245,255,.88));
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
  transition: transform .22s ease, box-shadow .22s ease;
}
.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 82%, white), color-mix(in srgb, var(--color-secondary) 88%, white));
  border-color: color-mix(in srgb, var(--color-accent) 48%, rgba(255,255,255,.16));
  box-shadow: 0 12px 28px rgba(139,92,246,.24), inset 0 1px 0 rgba(255,255,255,.16);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(28px);
  box-shadow: 0 10px 22px rgba(0,0,0,.22), 0 0 0 5px rgba(255,255,255,.05);
}
.toggle-switch input:focus-visible + .toggle-slider {
  outline: 2px solid color-mix(in srgb, var(--color-accent) 68%, white);
  outline-offset: 3px;
}
.toggle-save-state {
  min-height: 18px;
  color: var(--text-muted);
  font-size: 13px;
}
.toggle-save-state.is-success {
  color: color-mix(in srgb, var(--color-accent) 74%, white);
}
.toggle-save-state.is-error {
  color: #fda4af;
}
.subsection-card {
  gap: 14px;
  margin-top: 22px;
}

.translation-locale-card {
  gap: 18px;
}

.translation-group-card {
  background: rgba(255,255,255,.025);
}

.translation-group-card h5 {
  margin: 0;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--text-main);
}

.translation-key-label {
  font-size: 12px;
  letter-spacing: .03em;
  color: var(--text-muted);
}
.subsection-card:first-of-type {
  margin-top: 0;
}
.subsection-grid {
  display: grid;
  gap: 14px;
}
.subsection-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.subsection-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.subsection-grid .span-2 {
  grid-column: span 2;
}
.conversion-form-grid {
  gap: 18px;
}
.tab-panel#conversion .accordion-card:first-child {
  margin-top: 0;
}
.accordion-card {
  overflow: hidden;
}
.accordion-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 52px;
}
.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 0;
  background: transparent;
  border: 0;
  color: var(--text-main);
  text-align: left;
}

.accordion-toggle::after {
  content: '▾';
  margin-left: auto;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1;
  transition: transform .18s ease, color .18s ease;
}

.accordion-card.is-open .accordion-toggle::after {
  transform: rotate(180deg);
  color: var(--text-main);
}
.accordion-toggle > span:first-child {
  display: grid;
  gap: 6px;
  align-content: center;
}
.accordion-toggle strong {
  font-size: 18px;
}
.accordion-toggle small {
  color: var(--text-muted);
  font-size: 13px;
}
.accordion-panel {
  display: grid;
  gap: 16px;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: max-height .28s ease, opacity .22s ease, transform .22s ease, margin-top .22s ease;
}
.accordion-card.is-open .accordion-panel {
  margin-top: 18px;
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
}
.accordion-meta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-muted);
  white-space: nowrap;
}
.compact-switch {
  width: 56px;
  height: 30px;
}
.compact-switch .toggle-slider::before {
  width: 22px;
  height: 22px;
  top: 3px;
  left: 3px;
}
.compact-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
}
.boxed-row {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
}
.compact-check-grid {
  gap: 12px;
}
.affiliate-form-grid {
  gap: 18px;
}
.affiliate-preview-card {
  margin-top: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
}
.affiliate-preview-card img,
.affiliate-admin-card img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 14px;
}
.emoji-picker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.emoji-chip {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.emoji-chip:hover {
  background: rgba(255,255,255,.09);
  border-color: color-mix(in srgb, var(--color-accent) 36%, rgba(255,255,255,.16));
}
.affiliate-card-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.affiliate-admin-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px;
  align-items: center;
}
.affiliate-admin-copy {
  display: grid;
  gap: 10px;
}
.affiliate-admin-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}
.status-pill-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.section-order-list {
  display: grid;
  gap: 12px;
}
.section-order-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
  cursor: grab;
}
.section-order-item.dragging {
  opacity: .55;
  border-color: color-mix(in srgb, var(--color-accent) 42%, rgba(255,255,255,.16));
}
.drag-handle {
  color: var(--text-muted);
  font-size: 18px;
  letter-spacing: -2px;
  user-select: none;
}
.section-order-copy {
  display: grid;
  gap: 4px;
}
.section-order-copy strong {
  font-size: 15px;
}
.section-order-copy small {
  color: var(--text-muted);
  font-size: 13px;
}
.subsection-grid-brand label {
  align-content: start;
}
.subsection-grid-brand input,
.subsection-grid-brand select {
  min-height: 46px;
}
.subsection-grid-brand textarea {
  min-height: 120px;
  resize: vertical;
}
.subsection-grid-brand label:nth-child(1),
.subsection-grid-brand label:nth-child(7) {
  margin-top: 14px;
}
.compact-head {
  margin-bottom: 10px;
}
.inline-toggle-form {
  min-width: 180px;
  display: grid;
  gap: 8px;
}
.toggle-row.slim {
  padding: 0;
  border: 0;
}
.subsection-card.is-disabled {
  opacity: .72;
  border-color: rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.015));
}
.subsection-card.is-disabled .subsection-grid {
  pointer-events: none;
}
.subsection-card.is-disabled select,
.subsection-card.is-disabled input,
.subsection-card.is-disabled textarea {
  filter: grayscale(.12);
}
.reset-card {
  margin-top: 14px;
  padding: 18px;
  display: grid;
  gap: 14px;
}
.danger-zone-card {
  border: 1px solid rgba(248,113,113,.20);
  background: linear-gradient(180deg, rgba(248,113,113,.08), rgba(255,255,255,.03));
}
.danger-zone-head {
  margin-bottom: 0;
}
.danger-zone-head h4 {
  margin: 0 0 8px;
  color: #fecdd3;
}
.danger-zone-card .muted-copy {
  margin: 0;
  color: #fbcfe8;
}
.alert-error,
.alert-success {
  padding: 12px 14px;
  border-radius: 14px;
}
.alert-error {
  background: rgba(248,113,113,0.14);
  border: 1px solid rgba(248,113,113,.24);
}
.alert-success {
  background: rgba(103,232,249,0.12);
  border: 1px solid rgba(103,232,249,.24);
}
.soft-glow { position: relative; }
.soft-glow::after {
  content: '';
  position: absolute;
  inset: auto 12% -22px 12%;
  height: 24px;
  background: radial-gradient(circle, var(--border-glow), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.theme-preview {
  border-color: color-mix(in srgb, var(--border-glow) 75%, rgba(255,255,255,.12));
  box-shadow:
    0 20px 50px rgba(0,0,0,var(--shadow-intensity)),
    0 0 0 1px color-mix(in srgb, var(--border-glow) 45%, transparent),
    0 0 36px color-mix(in srgb, var(--border-glow) 40%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.preview-mini-card {
  border: 1px solid color-mix(in srgb, var(--border-glow) 65%, rgba(255,255,255,.08));
  box-shadow:
    0 10px 24px rgba(0,0,0,.18),
    0 0 24px color-mix(in srgb, var(--border-glow) 28%, transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}
.stat-card {
  padding: 20px;
  display: grid;
  gap: 10px;
}
.stat-card strong {
  font-size: 34px;
  line-height: 1;
}
.analytics-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
.analytics-card { padding: 20px; }
.analytics-card h4 {
  margin-top: 0;
  margin-bottom: 14px;
}

.legal-shell { max-width: 920px; }
.legal-page-card {
  padding: 28px;
  display: grid;
  gap: 16px;
}
.legal-copy {
  white-space: normal;
}

.age-gate-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 10, 0.84);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 999;
}
.age-gate-modal {
  width: min(560px, 100%);
  padding: 28px;
  display: grid;
  gap: 16px;
  text-align: center;
}
.age-gate-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}
.age-gate-language-picker {
  min-width: 220px;
  display: grid;
  gap: 8px;
  text-align: left;
}
.age-gate-language-picker label {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.locale-select-wrap {
  position: relative;
}
.locale-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  background: rgba(9, 12, 20, 0.92);
  color: rgba(255,255,255,0.96);
  border: 1px solid rgba(103,232,249,.32);
}

.locale-select-wrap select option,
.locale-select-wrap select optgroup {
  background: #0b0f18;
  color: #f8fafc;
}
.locale-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero h1 { max-width: none; }
}

@media (max-width: 900px) {
  .hero,
  .trust-grid,
  .affiliate-grid,
  .faq-grid,
  .gallery-grid,
  .admin-shell,
  .theme-grid,
  .compact,
  .preset-cards,
  .stats-grid,
  .analytics-columns {
    grid-template-columns: 1fr;
  }

  .hero { padding: 30px 22px; }
  .hero h1 { font-size: clamp(42px, 16vw, 68px); }
  .trust-grid > article { min-height: unset; }
  .social-strip,
  .social-card-grid {
    justify-content: flex-start;
  }
  .subsection-grid.two-col,
  .subsection-grid.three-col {
    grid-template-columns: 1fr;
  }
  .inline-toggle-form {
    min-width: 0;
    width: 100%;
  }
  .age-gate-head {
    flex-direction: column;
    align-items: stretch;
  }
  .age-gate-language-picker {
    min-width: 0;
  }

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

  .topbar .site-nav {
    display: none !important;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    margin-top: 10px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 14px 32px rgba(0,0,0,.16);
  }
  .topbar .site-nav.is-open { display: flex !important; }
  .mobile-nav-toggle {
    display: inline-flex;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 14px;
  }
  .topbar nav a,
  .topbar nav .ghost-button,
  .site-nav a,
  .site-nav .ghost-button {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.04);
  }
  .site-nav a:hover,
  .site-nav a:active {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.08);
  }
  .mobile-nav-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .mobile-nav-socials a {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    justify-content: center !important;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .sidebar { position: static; }
  .list-row-rich,
  .list-row { grid-template-columns: 1fr; }
  .row-actions { justify-content: flex-start; }
  .section-inline-head,
  .preset-strip { flex-direction: column; align-items: stretch; }
  .preset-scroll-row .preset-card {
    min-width: min(78vw, 240px);
    flex-basis: min(78vw, 240px);
  }
}


.announcement-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 18px 22px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(232,121,249,0.18), rgba(139,92,246,0.10) 36%, rgba(103,232,249,0.10) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  box-shadow: 0 18px 42px rgba(0,0,0,.2), 0 0 34px rgba(232,121,249,.12);
  animation: announcement-soft-pulse 4.8s ease-in-out infinite;
}
.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at left center, rgba(232,121,249,0.28), transparent 28%),
    radial-gradient(circle at right center, rgba(103,232,249,0.22), transparent 26%),
    linear-gradient(90deg, rgba(255,255,255,0.06), transparent 40%);
  pointer-events: none;
}
.announcement-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 1px 0 0 rgba(232,121,249,0.24),
    inset -1px 0 0 rgba(103,232,249,0.18);
  pointer-events: none;
}
.announcement-bar > * {
  position: relative;
  z-index: 1;
}
.announcement-copy {
  display: grid;
  gap: 10px;
}
.announcement-copy strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.98);
}
.announcement-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8,10,16,0.48);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(232,121,249,0.12);
}
.announcement-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.announcement-button {
  min-height: 46px;
  padding-inline: 20px;
  white-space: nowrap;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(232,121,249,0.30), rgba(103,232,249,0.22));
  border-color: rgba(255,255,255,0.24);
  color: rgba(255,255,255,0.98);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 28px rgba(0,0,0,.18), 0 0 18px rgba(232,121,249,.12);
}
.announcement-button:hover {
  background: linear-gradient(135deg, rgba(232,121,249,0.38), rgba(103,232,249,0.28));
  border-color: rgba(255,255,255,0.3);
}

@keyframes announcement-soft-pulse {
  0%, 100% {
    box-shadow: 0 16px 36px rgba(0,0,0,.18), 0 0 0 rgba(232,121,249,0.0);
    border-color: rgba(255,255,255,0.10);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 18px 42px rgba(0,0,0,.2), 0 0 26px rgba(232,121,249,0.12);
    border-color: rgba(255,255,255,0.16);
    transform: scale(1.008);
  }
}
.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  grid-template-areas:
    'badge badge'
    'copy action';
  gap: 18px;
  align-items: stretch;
  padding: 24px;
  margin-bottom: 28px;
}
.offer-badge-row {
  grid-area: badge;
}
.offer-badge {
  width: 100%;
  justify-content: center;
  padding: 9px 16px;
}
.offer-copy {
  grid-area: copy;
  display: grid;
  align-content: start;
  gap: 12px;
}
.offer-action {
  grid-area: action;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
}
.offer-copy h2 { margin: 0; font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.04em; }
.offer-copy p { margin: 0; color: var(--text-muted); line-height: 1.65; }
.linkhub-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.linkhub-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.linkhub-card::before {
  content: '';
  position: absolute;
  inset: -30% auto auto -10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(103,232,249,0.20), transparent 68%);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}
.linkhub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(103,232,249,.28);
  box-shadow:
    0 26px 58px rgba(0,0,0,.34),
    0 0 34px rgba(103,232,249,.16);
  background: rgba(255,255,255,.06);
}
.linkhub-card:hover::before {
  opacity: 1;
}
.linkhub-card:hover .linkhub-icon {
  border-color: rgba(103,232,249,.34);
  background: rgba(103,232,249,.12);
  box-shadow: 0 0 22px rgba(103,232,249,.22);
}
.linkhub-card strong { display: block; font-size: 18px; margin-bottom: 6px; }
.linkhub-card p { margin: 0; color: var(--text-muted); line-height: 1.55; }
.linkhub-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); font-size: 22px; transition: border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease; }
.linkhub-card:hover .linkhub-icon { transform: scale(1.04); }
.sticky-mobile-cta { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80; display: none; }
.sticky-mobile-cta .primary-button { width: 100%; }

@media (max-width: 900px) {
  .announcement-bar, .offer-section, .linkhub-grid { grid-template-columns: 1fr; display: grid; }
  .offer-section {
    grid-template-areas:
      'badge'
      'copy'
      'action';
  }
  .announcement-bar { justify-content: stretch; }
  .offer-section { padding: 20px; }
  .sticky-mobile-cta { display: block; }
}


.spotlight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 28px; }
.spotlight-card { padding: 20px; display: grid; gap: 10px; }
.spotlight-card h3 { margin: 0; font-size: 22px; }
.spotlight-card p { margin: 0; color: var(--text-muted); }
.gallery-filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
@media (max-width: 900px) { .spotlight-grid { grid-template-columns: 1fr; } }


.affiliate-card > div { display: grid; gap: 8px; min-width: 0; }
.affiliate-card .chip { width: fit-content; }
.affiliate-card h3 { overflow-wrap: anywhere; }
.affiliate-card-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.featured-chip {
  background: color-mix(in srgb, var(--color-primary) 16%, rgba(255,255,255,.06));
  border: 1px solid color-mix(in srgb, var(--color-accent) 28%, rgba(255,255,255,.12));
}
.readonly-stat-field {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(12, 16, 26, 0.92);
  color: var(--text-main);
}


.workflow-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.workflow-card { padding: 20px; display: grid; gap: 14px; }
.workflow-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.workflow-head h4 { margin: 8px 0 0; font-size: 22px; }
.workflow-meta { display: grid; gap: 8px; color: var(--text-muted); font-size: 14px; }
@media (max-width: 900px) { .workflow-grid { grid-template-columns: 1fr; } }
