*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0D0E12;
  --ink-soft: #3A3C45;
  --fog: #8A8D99;
  --rule: #E4E5EA;
  --bg: #F7F8FC;
  --white: #FFFFFF;
  --accent: #1A47C6;
  --accent-lt: #E8EDFF;
  --gold: #C9973A;
  --gold-lt: #FDF4E3;
  --danger: #C62A1A;
  --danger-lt: #FDECEA;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(13, 14, 18, .07);
  --shadow-md: 0 6px 28px rgba(13, 14, 18, .11);
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html.age-verified #popup-overlay { display: none; }

#popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 11, 18, .82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
  text-align: center;
}

.popup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--danger-lt);
  border: 3px solid var(--danger);
  margin: 0 auto 1.25rem;
}

.popup-badge svg { width: 34px; height: 34px; }

#popup h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

#popup p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1rem; }

.popup-warning {
  background: var(--danger-lt);
  border-left: 4px solid var(--danger);
  border-radius: 8px;
  padding: .9rem 1rem;
  text-align: left;
  font-size: .875rem;
  color: #7a1a10;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.popup-warning strong { display: block; margin-bottom: .25rem; }

#popup-confirm {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: .9rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

#popup-deny {
  display: block;
  margin-top: .75rem;
  font-size: .85rem;
  color: var(--fog);
  background: none;
  border: none;
  cursor: pointer;
}

.site-disclaimer {
  max-width: 1180px;
  margin: 0 auto;
  padding: .85rem 1.5rem;
  background: var(--accent-lt);
  border-bottom: 1px solid rgba(26, 71, 198, .15);
  font-size: .82rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.site-disclaimer strong {
  color: var(--ink);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--ink);
  color: #e8e9ed;
  padding: 1rem 1.25rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .18);
  transition: opacity .3s, transform .3s;
}

.cookie-banner--hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__text-col {
  flex: 1;
  min-width: 240px;
}

.cookie-banner__title {
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: #fff;
}

.cookie-banner p {
  font-size: .78rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: #9eb4ff;
  text-decoration: underline;
}

.cookie-banner__prefs {
  margin-top: .65rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .76rem;
}

.cookie-banner__prefs label {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: .5rem 1rem;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-banner__btn:hover {
  background: #1439a8;
}

.cookie-banner__btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #e8e9ed;
}

.cookie-banner__btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 252, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.5px;
}

.logo span { color: var(--accent); }

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.site-operator {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fog);
  line-height: 1.3;
}

.footer-brand .site-operator {
  margin-top: .35rem;
  color: rgba(255, 255, 255, .42);
}

.nav-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--fog);
  border: 1px solid var(--rule);
  border-radius: 99px;
  padding: .3rem .8rem;
}

.nav-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .65rem 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
  font-family: var(--font-body);
}

.btn-visit:hover { background: #1439a8; }

.detail-page { padding-bottom: 4rem; }

.detail-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--fog);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color .15s;
}

.back-link:hover { color: var(--accent); }

.detail-hero-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.detail-banner {
  height: 160px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
}

.detail-banner img {
  max-width: 220px;
  max-height: 80px;
  object-fit: contain;
}

.detail-hero-body {
  padding: 2rem 2.25rem;
}

.detail-hero-body h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: .75rem;
}

.detail-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.75rem;
}

.meta-pill {
  font-size: .78rem;
  font-weight: 500;
  border-radius: 6px;
  padding: .3rem .75rem;
  background: var(--accent-lt);
  color: var(--accent);
}

.meta-pill.green {
  background: #dcfce7;
  color: #166534;
}

.detail-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.detail-main section {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.detail-main h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.detail-main p {
  font-size: .93rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: .85rem;
}

.detail-main p:last-child { margin-bottom: 0; }

.detail-list {
  list-style: none;
  margin-top: .5rem;
}

.detail-list li {
  font-size: .9rem;
  color: var(--ink-soft);
  padding: .45rem 0 .45rem 1.25rem;
  position: relative;
  line-height: 1.55;
  border-bottom: 1px solid var(--rule);
}

.detail-list li:last-child { border-bottom: none; }

.detail-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.detail-sidebar .sidebar-box {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.detail-sidebar h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .85rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .85rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--rule);
}

.spec-row:last-child { border-bottom: none; }

.spec-row span:first-child { color: var(--fog); }

.spec-row span:last-child {
  font-weight: 600;
  text-align: right;
}

.pros-cons { display: grid; gap: 1rem; }

.pros h4, .cons h4 {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .5rem;
}

.pros h4 { color: #166534; }
.cons h4 { color: var(--danger); }

.pros ul, .cons ul {
  list-style: none;
  font-size: .84rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.pros li, .cons li {
  padding: .3rem 0 .3rem 1rem;
  position: relative;
}

.pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #166534;
  font-weight: 700;
}

.cons li::before {
  content: "−";
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

.detail-faq details {
  border-bottom: 1px solid var(--rule);
}

.detail-faq summary {
  padding: .9rem 0;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  list-style: none;
}

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

.detail-faq details p {
  padding-bottom: .9rem;
  font-size: .88rem;
}

.verdict-box {
  background: var(--accent-lt);
  border: 1px solid rgba(26, 71, 198, .2);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: .5rem;
}

.verdict-box p {
  font-size: .9rem;
  color: var(--ink);
  margin: 0;
}

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .55);
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 2rem;
}

.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: .82rem; margin-top: .5rem; max-width: 260px; line-height: 1.6; }

.footer-links h4 {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.footer-links ul { list-style: none; }
.footer-links li + li { margin-top: .4rem; }

.footer-links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
}

.footer-links a:hover { color: #fff; }

.footer-warning {
  background: rgba(198, 42, 26, .15);
  border: 1px solid rgba(198, 42, 26, .4);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-warning strong {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #f87171;
  font-size: .85rem;
  margin-bottom: .4rem;
}

.footer-warning p {
  font-size: .82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .65);
}

.footer-warning a { color: #93c5fd; }

.footer-aid-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-aid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .55rem .9rem;
  background: rgba(0, 0, 0, .48);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  transition: background .15s, border-color .15s, transform .15s;
}

.footer-aid-item:hover {
  background: rgba(0, 0, 0, .64);
  border-color: rgba(255, 255, 255, .24);
  transform: translateY(-1px);
}

.footer-aid-item img {
  display: block;
  width: auto;
  height: auto;
  max-height: 2.5rem;
  max-width: 7.5rem;
  object-fit: contain;
  opacity: .9;
}

.footer-aid-item:hover img {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
}

.footer-bottom p { color: rgba(255, 255, 255, .35); }

.age-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 6px;
  padding: .3rem .7rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

.age-badge strong { color: #f87171; font-size: 1rem; }

@media (max-width: 900px) {
  .detail-content { grid-template-columns: 1fr; }
  .detail-hero-body { padding: 1.5rem; }
}

@media (max-width: 640px) {
  .footer-top { flex-direction: column; }
}

.legal-page {
  padding-bottom: 4rem;
}

.legal-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--rule);
}

.legal-hero-card {
  max-width: 760px;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-top: .5rem;
}

.legal-meta {
  margin-top: .75rem;
  font-size: .82rem;
  color: var(--fog);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.legal-content > p {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-content section {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--rule);
}

.legal-content section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--ink);
}

.legal-content h3 {
  font-size: .95rem;
  font-weight: 700;
  margin: 1.25rem 0 .5rem;
  color: var(--ink);
}

.legal-content ul,
.legal-content ol {
  margin: .5rem 0 1rem 1.25rem;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal-content li + li {
  margin-top: .35rem;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-content a:hover {
  color: #1439a8;
}

.legal-content code {
  font-size: .85em;
  background: var(--accent-lt);
  color: var(--accent);
  padding: .12rem .4rem;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
}

.legal-box {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin: 1rem 0;
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.legal-box strong {
  color: var(--ink);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--rule);
  padding: .65rem .75rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--accent-lt);
  color: var(--ink);
  font-weight: 600;
}

.legal-table td {
  color: var(--ink-soft);
}

.legal-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.legal-nav-links a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.legal-nav-links a:hover {
  text-decoration: underline;
}
