:root {
  --bg: #090a0c;
  --bg-soft: #0d0e11;
  --panel: #111216;
  --panel-2: #15161b;
  --panel-3: #191a20;
  --text: #f4f2f7;
  --muted: #a19ca9;
  --muted-2: #74707c;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.15);
  --accent: #8b5cf6;
  --accent-soft: #b69cff;
  --accent-bg: rgba(139, 92, 246, 0.10);
  --danger: #ff94b8;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 70% -180px, rgba(139, 92, 246, 0.08), transparent 60%),
    linear-gradient(180deg, #0a0b0e 0%, #090a0c 100%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(9, 10, 12, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  width: min(1480px, calc(100% - 48px));
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 38px;
  height: 38px;
  filter: none;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand b {
  font-size: 15px;
  letter-spacing: 0.10em;
  font-weight: 850;
}

.brand em {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.26em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 10px 11px;
  color: #aaa6b0;
  font-size: 12px;
  font-weight: 640;
  transition: color 0.18s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 3px;
  height: 1px;
  background: var(--accent-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 780;
  font-size: 13px;
  box-shadow: none;
  cursor: pointer;
  transition: 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #9a70f8;
}

.btn-small {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 11px;
}

.btn-ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: #c9c5ce;
}

.btn-ghost:hover {
  border-color: rgba(182, 156, 255, 0.34);
  background: rgba(255, 255, 255, 0.035);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #111216;
  color: #fff;
}

/* Main application frame */
.app-shell {
  width: min(1536px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
}

.global-rail {
  min-height: calc(100vh - 76px);
  border-right: 1px solid var(--line);
  background: #0a0b0d;
}

.rail-inner {
  position: sticky;
  top: 76px;
  padding: 28px 18px 30px;
}

.rail-group + .rail-group {
  margin-top: 30px;
}

.rail-kicker {
  display: block;
  padding: 0 10px 9px;
  color: #625f68;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rail-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #96929d;
  font-size: 11px;
  transition: 0.16s ease;
}

.rail-link i {
  color: #55515c;
  font-style: normal;
  font-size: 10px;
}

.rail-link:hover,
.rail-link.active {
  background: #15161a;
  color: #f3f1f6;
}

.rail-link.active i {
  color: var(--accent-soft);
}

.rail-disclaimer {
  margin-top: 34px;
  padding: 15px 12px;
  border-top: 1px solid var(--line);
  color: #77727e;
}

.rail-disclaimer strong {
  display: inline-flex;
  padding: 2px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: #ddd9e2;
  font-size: 10px;
}

.rail-disclaimer p {
  margin: 10px 0 8px;
  font-size: 10px;
  line-height: 1.55;
}

.rail-disclaimer a {
  color: #a89dbc;
  font-size: 10px;
}

.app-canvas {
  min-width: 0;
  background: transparent;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 32px 0 0;
}

.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.82fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #101115;
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 58px 54px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 18, 22, 0.98) 0%, rgba(17, 18, 22, 0.90) 72%, rgba(17, 18, 22, 0.45) 100%),
    radial-gradient(540px 360px at 100% 40%, rgba(139, 92, 246, 0.09), transparent 66%);
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #696570;
  font-size: 10px;
}

.crumbs a:hover {
  color: #c7c2ce;
}

.eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 9px;
  font-weight: 850;
}

h1 {
  max-width: 820px;
  margin: 18px 0 20px;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 860;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: #aaa5af;
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  color: #736e79;
  font-size: 11px;
}

.editorial-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  width: fit-content;
  max-width: 100%;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #827d88;
  font-size: 10px;
}

.editorial-byline b {
  color: #aaa5af;
  font-weight: 700;
}

.editorial-byline a {
  color: #b6adc1;
}

.editorial-byline a:hover {
  color: #fff;
}

.hero-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: #0d0e12;
  box-shadow: none;
}

.cover-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: #aaa6b0;
}

.cover-label span {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.cover-label small {
  color: #5f5b65;
  font-size: 9px;
}

.logo-stage {
  position: relative;
  min-height: 225px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
    #111217;
}

.logo-stage::before {
  content: "M";
  position: absolute;
  right: -12px;
  bottom: -85px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 260px;
  font-weight: 900;
  line-height: 1;
}

.logo-stage img {
  position: relative;
  z-index: 2;
  width: 152px;
  height: 152px;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.44));
  animation: none;
}

.cover-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 16px 0 2px;
}

.cover-meta span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #716d76;
  font-size: 9px;
}

.cover-meta b {
  color: #aaa6af;
  font-weight: 700;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.mini-grid a {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 8px;
  min-height: 70px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #111216;
  transition: 0.16s ease;
}

.mini-grid a:hover {
  border-color: rgba(182, 156, 255, 0.30);
  background: #15161b;
}

.mini-grid span {
  grid-row: 1 / 3;
  color: #56525b;
  font-size: 9px;
}

.mini-grid b {
  font-size: 11px;
}

.mini-grid small {
  color: #6e6973;
  font-size: 9px;
}

.hero-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.16;
  filter: blur(20px);
}

.orb-a {
  width: 360px;
  height: 360px;
  right: 4%;
  top: -170px;
  background: rgba(139, 92, 246, 0.22);
}

.orb-b {
  display: none;
}

/* Home trust */
.trust-strip {
  padding-top: 12px;
  border: 0;
  background: transparent;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #0f1013;
}

.trust-grid > div {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid b {
  display: block;
  color: #d8d4dc;
  font-size: 11px;
}

.trust-grid span {
  display: block;
  margin-top: 3px;
  color: #6f6a74;
  font-size: 9px;
}

/* Content */
.content-shell {
  padding: 68px 0 78px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 52px;
}

.article {
  min-width: 0;
}

.article-section {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.article-section:first-child {
  padding-top: 0;
}

.section-index {
  padding-top: 7px;
  color: #56525d;
  font-size: 9px;
  font-weight: 740;
  letter-spacing: 0.15em;
}

.article-section h2,
.section-head h2 {
  margin: 0 0 19px;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.08;
  letter-spacing: -0.038em;
  font-weight: 820;
}

.article-section p {
  max-width: 850px;
  margin: 0 0 17px;
  color: #aaa5af;
  font-size: 15px;
}

.article-section strong {
  color: #e7e4e9;
}

.article-section ul {
  display: grid;
  gap: 8px;
  margin: 19px 0;
  padding: 0;
  list-style: none;
}

.article-section li {
  position: relative;
  padding: 11px 14px 11px 36px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #0f1013;
  color: #aaa5af;
}

.article-section li::before {
  content: "—";
  position: absolute;
  left: 14px;
  color: var(--accent-soft);
  font-weight: 800;
}

.table-wrap {
  margin: 23px 0 12px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.info-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #0e0f12;
}

.info-table th,
.info-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  background: #121318;
  color: #827d87;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.info-table td {
  color: #b5b0b9;
  font-size: 12px;
}

.info-table tr:last-child td {
  border-bottom: 0;
}

.source-links {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.source-links a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 42px 14px 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #0f1013;
}

.source-links a:hover {
  border-color: rgba(182, 156, 255, 0.28);
  background: #121318;
}

.source-links b {
  font-size: 12px;
}

.source-links span {
  color: #78737d;
  font-size: 10px;
}

.source-links i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-soft);
  font-style: normal;
}

/* Sidebar */
.sticky {
  position: sticky;
  top: 98px;
}

.side-card {
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #0f1013;
}

.side-title {
  padding: 10px 9px 8px;
  color: #625e68;
  font-size: 8px;
  font-weight: 830;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.related-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 9px;
  border-top: 1px solid var(--line);
  color: #9e99a4;
  font-size: 10px;
}

.related-link b {
  color: #766c88;
}

.related-link:hover span {
  color: #fff;
}

.trust-note {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #121318;
}

.trust-note b {
  color: #a39daa;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-note p {
  margin: 7px 0 0;
  color: #77727c;
  font-size: 9px;
  line-height: 1.55;
}

.source-mini {
  display: block;
  margin: 11px 5px 3px;
  color: #a89db9;
  font-size: 9px;
}

/* FAQ */
.faq-block {
  padding-top: 62px;
}

.section-head span {
  color: var(--accent-soft);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-head h2 {
  margin-top: 9px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  list-style: none;
  cursor: pointer;
  font-weight: 720;
  font-size: 14px;
}

summary::-webkit-details-marker {
  display: none;
}

summary i {
  color: #756b86;
  font-style: normal;
}

details p {
  max-width: 850px;
  margin: -2px 0 19px;
  color: #99949e;
  font-size: 14px;
}

/* Hub / collections */
.hub-children {
  padding-top: 64px;
}

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

.hub-grid a {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0f1013;
  transition: 0.18s ease;
}

.hub-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(182, 156, 255, 0.26);
  background: #121318;
}

.hub-grid small {
  color: #6c6772;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hub-grid b {
  margin: 10px 0 8px;
  font-size: 17px;
  line-height: 1.2;
}

.hub-grid span {
  color: #88838d;
  font-size: 11px;
  line-height: 1.55;
}

.hub-grid i {
  margin-top: auto;
  padding-top: 15px;
  color: #aaa0bd;
  font-size: 10px;
  font-style: normal;
}

.editor-contact {
  margin-top: 62px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #101115;
}

.editor-contact > span {
  color: var(--accent-soft);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editor-contact h2 {
  margin: 7px 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.editor-contact p {
  margin: 0;
  color: #99949e;
}

.editor-contact a,
.footer-email {
  color: #b7adc6;
}

/* Home section index */
.cluster-section {
  padding: 68px 0 88px;
  border-top: 1px solid var(--line);
  background: #0a0b0d;
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.cluster-grid a {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0f1013;
  transition: 0.18s ease;
}

.cluster-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(182, 156, 255, 0.27);
  background: #121318;
}

.cluster-grid small {
  color: #68636d;
  font-size: 8px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.cluster-grid b {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.25;
}

.cluster-grid span {
  margin-top: auto;
  color: #a69bb7;
  font-size: 9px;
}

/* Footer */
.site-footer {
  padding: 54px 0 24px;
  border-top: 1px solid var(--line);
  background: #08090b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-grid p {
  max-width: 330px;
  color: #6c6871;
  font-size: 11px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid > div > b {
  margin-bottom: 5px;
  color: #74707a;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div > a {
  color: #99949e;
  font-size: 11px;
}

.footer-grid > div > a:hover {
  color: #fff;
}

.footer-email {
  display: inline-block;
  margin-top: 7px;
  font-size: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #5e5a63;
  font-size: 9px;
}

.footer-bottom strong {
  padding: 2px 6px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: #d6d2db;
}

/* 18+ gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 6, 8, 0.91);
  backdrop-filter: blur(16px);
}

.age-card {
  width: min(470px, 100%);
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: #111216;
  text-align: center;
  box-shadow: var(--shadow);
}

.age-card img {
  width: 68px;
  height: 68px;
}

.age-badge {
  display: block;
  margin-top: 10px;
  color: var(--danger);
  font-size: 10px;
  font-weight: 900;
}

.age-card h2 {
  margin: 9px 0;
  font-size: 28px;
  line-height: 1.06;
}

.age-card p {
  color: #99949e;
  font-size: 12px;
}

.age-card > div {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.age-gate[hidden] {
  display: none !important;
}

/* Responsive */
@media (max-width: 1280px) {
  .app-shell {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .global-rail {
    font-size: 10px;
  }

  .hero-copy {
    padding: 48px 42px;
  }
}

@media (max-width: 1120px) {
  .app-shell {
    display: block;
  }

  .global-rail {
    display: none;
  }

  .main-nav,
  .header-inner > .btn-small {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .main-nav.open {
    position: absolute;
    top: 76px;
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #111216;
    box-shadow: var(--shadow);
  }

  .main-nav.open a {
    padding: 11px 12px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

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

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

@media (max-width: 760px) {
  .wrap,
  .site-header .wrap {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    height: 68px;
  }

  .main-nav.open {
    top: 68px;
    left: 14px;
    right: 14px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-grid {
    min-height: 0;
    border-radius: 15px;
  }

  .hero-copy {
    padding: 38px 28px 34px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .lead {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card {
    padding: 22px;
  }

  .logo-stage {
    min-height: 190px;
  }

  .logo-stage img {
    width: 125px;
    height: 125px;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .content-shell {
    padding: 54px 0 62px;
  }

  .article-section {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 28px 0;
  }

  .section-index {
    padding-top: 0;
  }

  .article-section h2,
  .section-head h2 {
    font-size: 28px;
  }

  .article-section p {
    font-size: 14px;
  }

  .hub-grid,
  .cluster-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .brand b {
    font-size: 13px;
  }

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

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

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

  .trust-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .editorial-byline {
    display: grid;
    width: 100%;
  }

  .age-card > div {
    flex-direction: column;
  }

  .age-card .btn {
    width: 100%;
  }
}

/* =========================================================
   Responsive integrity + premium motion pass — 27.08.2026
   Keeps the editorial system stable from 320px to wide desktop.
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body,
.app-shell,
.app-canvas,
main,
.site-footer,
.wrap,
.hero-grid,
.content-layout,
.footer-grid,
.article,
.sidebar {
  min-width: 0;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  max-width: 100%;
}

.site-header .wrap {
  width: min(1480px, calc(100% - 40px));
}

.header-inner {
  position: relative;
  min-width: 0;
}

.app-shell {
  width: min(1536px, 100%);
  max-width: 100%;
  grid-template-columns: minmax(190px, 208px) minmax(0, 1fr);
}

.app-canvas {
  overflow: visible;
}

.gradient-text {
  color: #b78cff;
  background: linear-gradient(112deg, #f0e7ff 0%, #c59cff 28%, #915eff 62%, #6b35ee 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientDrift 8s ease-in-out infinite alternate;
}

@keyframes gradientDrift {
  to { background-position: 100% 50%; }
}

.mobile-header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(182, 156, 255, 0.25);
  border-radius: 10px;
  background: linear-gradient(135deg, #7c3aed, #945cff);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

/* Entity imagery */
.entity-visual {
  min-height: 238px;
  display: grid;
  place-items: center;
  margin: 18px 0 16px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 18%, rgba(139, 92, 246, 0.14), transparent 58%),
    #0c0d10;
}

.entity-visual img {
  display: block;
  object-fit: contain;
}

.entity-visual.is-game img {
  width: auto;
  max-height: 278px;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.entity-visual.is-provider img {
  width: min(280px, 84%);
  max-height: 150px;
}

/* Visual catalogue on the homepage */
.home-showcase,
.home-evidence,
.home-compare {
  padding: 66px 0 0;
}

.home-showcase + .home-showcase {
  padding-top: 44px;
}

.home-compare {
  padding-bottom: 6px;
}

.split-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.split-head > div {
  min-width: 0;
}

.text-link {
  flex: 0 0 auto;
  padding-bottom: 4px;
  color: #b9afca;
  font-size: 11px;
  font-weight: 750;
}

.game-media-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.game-media-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0f1013;
  transition: transform .28s cubic-bezier(.2,.75,.25,1), border-color .28s ease, background .28s ease;
}

.game-media-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 140, 255, 0.34);
  background: #121319;
}

.game-media-card figure {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #0b0c0f;
}

.game-media-card figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(8, 9, 11, .7));
}

.game-media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}

.game-media-card:hover img {
  transform: scale(1.035);
}

.game-media-card > div {
  display: flex;
  min-height: 122px;
  flex-direction: column;
  padding: 13px;
}

.game-media-card small {
  overflow: hidden;
  color: #736e7a;
  font-size: 8px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-media-card b {
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.25;
}

.game-media-card span {
  margin-top: auto;
  padding-top: 10px;
  color: #9f93b4;
  font-size: 9px;
  line-height: 1.45;
}

.provider-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.provider-logo-card {
  min-width: 0;
  min-height: 134px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #0f1013;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.provider-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 140, 255, .32);
  background: #121319;
}

.provider-logo-card img {
  width: 100%;
  height: 72px;
  object-fit: contain;
}

.provider-logo-card > span {
  max-width: 100%;
  overflow: hidden;
  color: #aaa4af;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.evidence-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(500px 240px at 100% 0, rgba(139, 92, 246, .08), transparent 68%),
    #0f1013;
}

.section-head.compact h2 {
  margin-bottom: 0;
}

.evidence-card > p {
  max-width: 700px;
  margin: 14px 0 20px;
  color: #918c97;
  font-size: 12px;
}

.payment-route,
.trust-checks {
  display: grid;
  gap: 8px;
}

.payment-route a,
.trust-checks a {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(100px, .48fr) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0c0d10;
  transition: border-color .2s ease, transform .2s ease;
}

.payment-route a:hover,
.trust-checks a:hover {
  transform: translateX(2px);
  border-color: rgba(183, 140, 255, .28);
}

.payment-route i {
  color: #8f72c2;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.payment-route b,
.trust-checks b {
  font-size: 11px;
}

.payment-route span,
.trust-checks span {
  min-width: 0;
  color: #77727d;
  font-size: 10px;
  line-height: 1.4;
}

.trust-checks a {
  grid-template-columns: minmax(125px, .55fr) minmax(0, 1fr);
}

.compare-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.compare-cards a {
  min-width: 0;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #0f1013;
  transition: transform .24s ease, border-color .24s ease;
}

.compare-cards a:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 140, 255, .3);
}

.compare-cards small {
  color: #8e74bb;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.compare-cards b {
  margin: 10px 0 8px;
  font-size: 17px;
  line-height: 1.22;
}

.compare-cards span {
  color: #88838d;
  font-size: 11px;
  line-height: 1.55;
}

/* Media inside collection cards */
.hub-grid a.has-media {
  padding: 0;
  overflow: hidden;
}

.hub-media {
  width: 100%;
  height: 190px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0b0c0e;
}

.hub-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 12px;
}

.hub-grid a.has-media .hub-media + small,
.hub-grid a.has-media small,
.hub-grid a.has-media b,
.hub-grid a.has-media > span,
.hub-grid a.has-media > i {
  margin-left: 18px;
  margin-right: 18px;
}

.hub-grid a.has-media small {
  margin-top: 14px;
}

.hub-grid a.has-media > i {
  margin-bottom: 18px;
}

/* Tables and long content must never widen the page */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.info-table {
  min-width: 620px;
}

.source-links a,
.related-link,
.footer-grid > div,
.footer-bottom > * {
  min-width: 0;
}

/* Footer: explicit safe grid, no clipping or min-content overflow */
.site-footer {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  padding-bottom: max(28px, env(safe-area-inset-bottom));
}

.footer-grid {
  width: 100%;
  grid-template-columns: minmax(250px, 1.45fr) repeat(3, minmax(140px, 1fr));
  gap: clamp(24px, 3vw, 44px);
}

.footer-grid > div {
  overflow-wrap: anywhere;
}

.footer-bottom {
  width: 100%;
  justify-content: flex-start;
  overflow-wrap: anywhere;
}

/* Smooth reveal, only enabled when JS has loaded. */
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.btn,
.rail-link,
.main-nav a,
.cluster-grid a,
.hub-grid a,
.related-link,
.source-links a,
.provider-logo-card,
.game-media-card,
.compare-cards a {
  transition-duration: .24s;
}

/* Keep the premium desktop rail only where there is room for it. */
@media (max-width: 1260px) {
  .app-shell {
    display: block;
  }

  .global-rail {
    display: none;
  }

  .main-nav,
  .desktop-cta {
    display: none;
  }

  .mobile-header-cta {
    display: inline-flex;
    margin-left: auto;
  }

  .menu-btn {
    display: grid;
    place-items: center;
    margin-left: 0;
    flex: 0 0 42px;
  }

  .main-nav.open {
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    max-height: min(70vh, 520px);
    overflow-y: auto;
  }

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

@media (max-width: 980px) {
  .wrap,
  .site-header .wrap {
    width: min(100% - 32px, 1160px);
  }

  .hero-grid,
  .content-layout,
  .home-dual-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .sidebar {
    display: none;
  }

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

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .wrap,
  .site-header .wrap {
    width: min(100% - 24px, 1160px);
  }

  .header-inner {
    height: 64px;
    gap: 9px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand b {
    font-size: 12px;
    letter-spacing: .07em;
  }

  .brand em {
    display: none;
  }

  .mobile-header-cta {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 10px;
  }

  .menu-btn {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .main-nav.open {
    top: 64px;
    left: -4px;
    right: -4px;
    border-radius: 0 0 14px 14px;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-grid {
    border-radius: 14px;
  }

  .hero-copy {
    padding: 34px 24px 30px;
  }

  h1 {
    font-size: clamp(34px, 10.5vw, 48px);
    overflow-wrap: anywhere;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card {
    padding: 20px;
  }

  .entity-visual {
    min-height: 210px;
  }

  .entity-visual.is-game img {
    max-height: 245px;
  }

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

  .home-showcase,
  .home-evidence,
  .home-compare {
    padding-top: 48px;
  }

  .split-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

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

  .evidence-card {
    padding: 20px;
  }

  .payment-route a,
  .trust-checks a {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .payment-route a span,
  .trust-checks a span {
    grid-column: 2;
  }

  .trust-checks a {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-checks a span {
    grid-column: 1;
  }

  .compare-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-section h2,
  .section-head h2 {
    font-size: clamp(24px, 7vw, 31px);
    overflow-wrap: anywhere;
  }

  .hub-grid,
  .cluster-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hub-media {
    height: 240px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 460px) {
  .wrap,
  .site-header .wrap {
    width: min(100% - 20px, 1160px);
  }

  .brand span {
    max-width: 88px;
  }

  .mobile-header-cta {
    padding-inline: 9px;
  }

  .hero-copy {
    padding: 28px 18px 26px;
  }

  h1 {
    font-size: clamp(31px, 10.4vw, 42px);
  }

  .game-media-card > div {
    min-height: 108px;
    padding: 11px;
  }

  .game-media-card b {
    font-size: 12px;
  }

  .provider-logo-card {
    min-height: 112px;
    padding: 12px;
  }

  .provider-logo-card img {
    height: 58px;
  }

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

  .trust-grid > div {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .info-table {
    min-width: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .motion-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1260px) and (min-width: 1121px) {
  .main-nav.open {
    position: absolute;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #111216;
    box-shadow: var(--shadow);
  }

  .main-nav.open a {
    padding: 11px 12px;
  }
}


/* SEO-friendly entity image captions */
.entity-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.visual-caption {
  display: block;
  max-width: 92%;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}
