/* Dragon Money Casino  responsive slate / amber (mobile-first) */

:root {
  --gutter: clamp(16px, 4vw, 36px);
  --max: 1080px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Literata", Georgia, serif;
  --bg: #0a0f1a;
  --bg-elev: #111827;
  --surface: #1e293b;
  --stroke: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #f59e0b;
  --accent-dim: #b45309;
  --link: #7dd3fc;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(15px, 0.35vw + 14px, 17px);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--link);
  text-underline-offset: 2px;
}
a:hover {
  color: #bae6fd;
}

.container {
  width: min(100% - 2 * var(--gutter), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 16px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}
.skip-link--main {
  top: 52px;
}
.skip-link--main:focus {
  left: 12px;
}

/* Background */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(120% 80% at 50% -10%, rgba(30, 58, 138, 0.35), transparent 55%),
    radial-gradient(80% 50% at 100% 50%, rgba(245, 158, 11, 0.08), transparent 50%), var(--bg);
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.35;
  background-image: linear-gradient(var(--stroke) 1px, transparent 1px),
    linear-gradient(90deg, var(--stroke) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 0%, transparent 70%);
  pointer-events: none;
}
.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--stroke);
  background: rgba(10, 15, 26, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 14px 0;
}
@media (min-width: 768px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
a.brand {
  text-decoration: none;
  color: inherit;
}
a.brand:hover .brand-text strong {
  color: var(--accent);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #f59e0b, #ea580c);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.brand-mark__icon {
  display: block;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-text strong {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-text small {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand--footer {
  margin-bottom: 10px;
}

.nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .nav-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
    gap: 16px;
  }
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  padding: 4px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
}
@media (min-width: 768px) {
  .nav-links {
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
  }
}

.nav-link {
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
@media (min-width: 768px) {
  .nav-cta {
    flex-shrink: 0;
    justify-content: flex-end;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s, background 0.2s;
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn:active {
  transform: scale(0.98);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--stroke);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--gold {
  background: linear-gradient(180deg, #fbbf24, var(--accent));
  color: #1c1917;
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}
.btn--gold:hover {
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.35);
}

.btn--block {
  width: 100%;
}

/* Section TOC  wraps cleanly on phones */
.outline-nav {
  border-bottom: 1px solid var(--stroke);
  background: rgba(17, 24, 39, 0.65);
}
.outline-nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  padding: 12px 0;
}
.outline-nav__label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.outline-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.outline-nav__list a {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
}
.outline-nav__list a:hover {
  color: var(--text);
  border-color: var(--stroke);
}
.outline-nav__list a.is-active {
  color: #111;
  background: linear-gradient(180deg, #fde68a, var(--accent));
  border-color: rgba(251, 191, 36, 0.4);
}

.main-area {
  overflow-x: hidden;
}

/* Hero */
.hero {
  padding: clamp(1.75rem, 5vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2.5rem);
}
.hero-grid {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.25rem);
  align-items: center;
}
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 1.1rem + 3.5vw, 3.1rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.hero-copy h1 span {
  color: var(--accent);
}

.lede {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 0.4vw + 0.9rem, 1.1rem);
  max-width: 38rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.25rem;
}
.pill {
  font-size: 11px;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  color: var(--muted);
}
.pill b {
  color: var(--accent);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 420px) {
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.hero-stage {
  width: 100%;
  min-width: 0;
}
.stage-frame {
  display: none;
}
.stage-card {
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 1.35rem);
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid var(--stroke);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.stage-cover {
  margin: calc(-1 * clamp(1rem, 3vw, 1.35rem)) calc(-1 * clamp(1rem, 3vw, 1.35rem)) 14px;
  border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--stroke);
  aspect-ratio: 16 / 9;
  background: rgba(15, 23, 42, 0.9);
}
.stage-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chip-stack {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.chip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.chip:nth-child(1) {
  background: linear-gradient(135deg, #f472b6, #be185d);
}
.chip:nth-child(2) {
  background: linear-gradient(135deg, #38bdf8, #0369a1);
}
.chip:nth-child(3) {
  background: linear-gradient(135deg, #fbbf24, #b45309);
}

.stage-title {
  margin: 0 0 6px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.stage-sub {
  margin: 0 0 12px;
  font-size: 14px;
  color: #cbd5e1;
}

.meter {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.meter > span {
  display: block;
  height: 100%;
  width: 65%;
  border-radius: inherit;
  background: linear-gradient(90deg, #38bdf8, var(--accent));
}

.spark-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.spark-row strong {
  color: var(--accent);
}

.stage-cta {
  margin-top: 14px;
}

/* Slot vitrina */
.slot-vitrina {
  padding: clamp(1.75rem, 5vw, 3rem) 0 clamp(2rem, 5vw, 3.25rem);
  border-top: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.35), transparent 42%);
}
.slot-vitrina__head {
  margin-bottom: clamp(1.1rem, 3vw, 1.5rem);
  max-width: 36rem;
}
.slot-vitrina__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 0.55rem + 2.4vw, 1.9rem);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.slot-vitrina__lead {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}
.slot-grid {
  display: grid;
  gap: clamp(10px, 2vw, 16px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 520px) {
  .slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .slot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .slot-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.slot-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid var(--stroke);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.25s;
}
.slot-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.slot-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.slot-card__media {
  display: block;
  aspect-ratio: 3 / 4;
  background: rgba(0, 0, 0, 0.35);
}
.slot-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slot-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px 12px;
}
.slot-card__badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.slot-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
}

/* Ribbon */
.ribbon {
  margin: clamp(0.75rem, 2vw, 1.25rem) 0;
}
.ribbon-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  padding: 14px 0;
  border-radius: var(--radius-lg);
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--stroke);
}
@media (min-width: 640px) {
  .ribbon-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 18px;
  }
}
.ribbon__main {
  flex: 1;
  min-width: 0;
}
.ribbon__label {
  margin: 0 0 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 640px) {
  .ribbon__label {
    margin-bottom: 6px;
  }
}
.ribbon__cta {
  flex-shrink: 0;
  align-self: center;
}

.media-rail {
  overflow: hidden;
  border-radius: var(--radius-md);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.media-rail__track {
  display: flex;
  width: max-content;
  animation: media-rail-scroll 48s linear infinite;
}
.media-rail__group {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 4px 0;
}
.media-rail__group img {
  width: clamp(72px, 18vw, 112px);
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
@keyframes media-rail-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .media-rail__track {
    animation: none;
  }
}

.marquee {
  overflow: hidden;
  min-height: 1.5em;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 26s linear infinite;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee span {
    animation: none;
    padding-left: 0;
  }
}

/* Sections */
.section {
  padding: clamp(2.25rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--stroke);
}

.section-head {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 40rem;
}
.section-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 0.6rem + 2.8vw, 2.15rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Horizontal preview strip (e.g. before article) */
.preview-strip {
  margin: 0 calc(-1 * var(--gutter)) clamp(1.25rem, 3vw, 1.75rem);
  padding: 12px var(--gutter);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.preview-strip__track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding-inline: 2px;
}
.preview-strip img {
  width: clamp(100px, 28vw, 150px);
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

/* Tiles */
.feature-mosaic {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  grid-template-columns: 1fr;
}
@media (min-width: 520px) {
  .feature-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .feature-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .tile--wide {
    grid-column: 1 / -1;
  }
  .tile--tall {
    grid-row: span 2;
    min-height: 260px;
  }
}

.tile-thumb {
  margin: calc(-1 * clamp(1rem, 2.5vw, 1.25rem)) calc(-1 * clamp(1rem, 2.5vw, 1.25rem)) 12px;
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  max-height: 140px;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--stroke);
}
.tile-thumb--tall {
  aspect-ratio: 4 / 5;
  max-height: 220px;
}
.tile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tile--wide .tile-thumb {
  aspect-ratio: 21 / 6;
  max-height: 120px;
}

.tile {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.5vw, 1.25rem);
  min-height: 140px;
  background: rgba(30, 41, 59, 0.45);
  border: 1px solid var(--stroke);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.25s;
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px circle at var(--mx, 30%) var(--my, 20%),
    rgba(245, 158, 11, 0.12),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.tile:hover {
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.tile:hover::after {
  opacity: 1;
}

.tile-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
}
.tile h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
}
.tile p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Steps */
.step-ladder {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
@media (min-width: 800px) {
  .step-ladder {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.step-ladder > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: clamp(1rem, 2.5vw, 1.2rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.step-ladder strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-ladder p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 10px;
}
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(15, 23, 42, 0.5);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-weight: 800;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "?";
}
.faq-item__body {
  padding: 0 16px 14px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  border-top: 1px solid var(--stroke);
  margin: 0;
  padding-top: 10px;
}

/* Trust */
.trust-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.trust-card {
  padding: 14px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.trust-card b {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.trust-card span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* Article */
.article-wrap {
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.35), rgba(56, 189, 248, 0.2));
}
.article-inner {
  border-radius: calc(var(--radius-lg) - 1px);
  background: rgba(15, 23, 42, 0.75);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border: 1px solid transparent;
}
.seo-article {
  max-width: 65ch;
  margin: 0 auto;
}
.seo-article h3.seo-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.5rem + 1.8vw, 1.35rem);
  font-weight: 800;
  margin: 1.85em 0 0.55em;
  line-height: 1.2;
  color: var(--text);
}
.seo-article h3.seo-h2:first-child {
  margin-top: 0;
}
.seo-article h4.seo-h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 1.35em 0 0.45em;
  color: #7dd3fc;
}
.seo-article p {
  margin: 0 0 1rem;
  color: #cbd5e1;
  font-size: clamp(15px, 0.3vw + 14px, 17px);
}
.seo-article blockquote {
  margin: 1.2em 0;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--muted);
  font-style: italic;
}

/* CTA */
.cta-band {
  padding: 0 0 clamp(3rem, 8vw, 5rem);
}
.cta-card {
  display: grid;
  gap: 16px;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
  border: 1px solid var(--stroke);
}
@media (min-width: 640px) {
  .cta-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 0.5rem + 2vw, 1.65rem);
  font-weight: 800;
  margin: 0 0 8px;
}
.cta-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 640px) {
  .cta-actions {
    justify-content: flex-end;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--stroke);
  padding: clamp(2rem, 5vw, 2.75rem) 0 clamp(5rem, 12vw, 7rem);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25));
}
.footer-sitemap {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--stroke);
}
@media (min-width: 600px) {
  .footer-sitemap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.footer-col-title {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-sitemap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.footer-sitemap a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}
.footer-sitemap a:hover {
  color: var(--text);
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}
.footer-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.site-footer .brand-text strong {
  color: var(--text);
}
.site-footer .brand-mark {
  box-shadow: none;
}
.footer-age {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.footer-meta {
  margin-top: 0;
}
.footer-disclaimer {
  margin-top: 10px;
}

/* Sticky mobile bar */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(10, 15, 26, 0.92) 35%);
  display: none;
}
@media (max-width: 640px) {
  .sticky-cta {
    display: block;
  }
}
.sticky-cta .bar {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-lg);
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}
.sticky-cta small {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.3;
  max-width: 58%;
}
.sticky-cta .btn {
  min-height: 42px;
  padding: 0 14px;
  font-size: 12px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}

/* Anchors */
#nachalo,
#slot-vitrina,
#igrovoy-zal,
#kak-eto-rabotaet,
#faq,
#otvetstvennost,
#obzor,
#vhod,
#soderzhanie,
#main-content {
  scroll-margin-top: clamp(72px, 14vh, 120px);
}
