/* argtopguia.site — La guía definitiva de casinos físicos en Argentina
   Design system: Azul Noche Ébano (#0B1325 / #070B14) + Cian Ciber / Turquesa (#38BDF8 / #0EA5E9) + Dorado Ámbar (#F59E0B / #D97706).
   Tipografía: Syne (Display/Headings) + Plus Jakarta Sans (Texto/Cuerpo). */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&family=Syne:wght@500;700;800&display=swap');

:root {
  --ink: #070B14;
  --night: #0B1325;
  --night-2: #121E36;
  --night-3: #1A2B4C;
  --accent-cyan: #38BDF8;
  --accent-cyan-dark: #0EA5E9;
  --accent-gold: #F59E0B;
  --accent-gold-dark: #D97706;
  --bg-light: #F8FAFC;
  --bg-light-card: #FFFFFF;
  --card-border: #E2E8F0;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light-muted: #94A3B8;
  --line-dark: rgba(56, 189, 248, 0.22);
  --line-gold: rgba(245, 158, 11, 0.3);
  --line-light: rgba(226, 232, 240, 0.8);
  --shadow-lg: 0 20px 40px -15px rgba(7, 11, 20, 0.35);
  --shadow-card: 0 10px 30px -10px rgba(11, 19, 37, 0.08);
  --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.25);
  --r: 16px;
  --r-lg: 24px;
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --f-display: 'Syne', system-ui, -apple-system, sans-serif;
  --f-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: clamp(16px, 1.05vw, 17.5px);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0 0 1em;
}

strong {
  font-weight: 700;
  color: var(--text-dark);
}

/* ---------- Container & Wrappers ---------- */
.container, .wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.container-narrow {
  max-width: 860px;
}

.section, .content-block {
  padding-block: clamp(56px, 8vw, 110px);
}

.dark-bg, .on-dark {
  background: var(--night);
  color: #F8FAFC;
}

.dark-bg h1, .dark-bg h2, .dark-bg h3,
.on-dark h1, .on-dark h2, .on-dark h3 {
  color: #FFFFFF;
}

.dark-bg p, .on-dark p {
  color: var(--text-light-muted);
}

.dark-bg strong, .on-dark strong {
  color: #FFFFFF;
}

/* ---------- Typography Accents ---------- */
.section-label, .eyebrow {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  margin: 0 0 1rem;
}

.section-label::before, .eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--accent-cyan);
  display: inline-block;
  border-radius: 99px;
}

.section-sub, .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 62ch;
}

.dark-bg .section-sub, .on-dark .lede {
  color: var(--text-light-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85em 1.7em;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.2, 0, 0, 1);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-accent, .btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
  color: #070B14;
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
}

.btn-accent:hover, .btn-primary:hover {
  background: #FFFFFF;
  color: var(--night);
  border-color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(56, 189, 248, 0.4);
}

.btn-outline, .btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #F8FAFC;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover, .btn-ghost:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.08);
  transform: translateY(-3px);
}

/* ---------- Header ---------- */
.top-header, .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-dark);
  color: #FFFFFF;
}

.header-content, .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand-logo, .brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-icon, .brand .mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.4));
}

.brand-logo em, .brand em {
  font-style: normal;
  color: var(--accent-gold);
}

.main-nav, .nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
}

.main-nav a, .nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light-muted);
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.main-nav a:hover, .main-nav a[aria-current="page"],
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--accent-cyan);
}

.badge-18, .pill18 {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #070B14;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  border-radius: 99px;
  padding: 0.35em 0.8em;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.menu-toggle, .nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line-dark);
  color: #FFFFFF;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.menu-toggle:hover, .nav-toggle:hover {
  background: rgba(56, 189, 248, 0.1);
}

.menu-toggle svg, .nav-toggle svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 920px) {
  .main-nav, .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
    padding: 0.8rem var(--pad) 1.8rem;
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1);
    margin-left: 0;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open, .nav.open {
    transform: translateY(0);
  }
  .main-nav a, .nav a {
    padding: 0.9rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.05rem;
  }
  .main-nav .badge-18, .nav .pill18 {
    align-self: flex-start;
    margin-top: 1rem;
  }
  .menu-toggle, .nav-toggle {
    display: inline-flex;
  }
}

/* ---------- Hero Section ---------- */
.hero-section, .hero {
  position: relative;
  background: var(--night);
  color: #FFFFFF;
  overflow: hidden;
  padding-block: clamp(68px, 9vw, 130px);
}

.hero-section::after, .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(80% 60% at 85% -10%, rgba(56, 189, 248, 0.18), transparent 70%),
    radial-gradient(90% 70% at 0% 110%, rgba(245, 158, 11, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-grid, .hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-text h1, .hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

.hero-text h1 em, .hero h1 em {
  font-style: normal;
  color: var(--accent-cyan);
  background: linear-gradient(135deg, #FFFFFF, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tag-pill {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 1.2rem;
}

.hero-lead, .lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-light-muted);
  margin-top: 1.2rem;
}

.feature-chips, .hero-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.8rem 0 2.2rem;
}

.feature-chips span, .hero-tag span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-light-muted);
  border: 1px solid var(--line-dark);
  background: rgba(56, 189, 248, 0.05);
  border-radius: 99px;
  padding: 0.45em 1.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}

.hero-buttons, .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.disclaimer-note, .hero-note {
  margin-top: 1.8rem;
  font-size: 0.82rem;
  color: #64748B;
  max-width: 48ch;
  line-height: 1.55;
}

.hero-visual, .hero-art {
  position: relative;
}

.art-frame, .hero-art {
  filter: drop-shadow(0 25px 40px rgba(7, 11, 20, 0.7));
}

@media (max-width: 880px) {
  .hero-grid, .hero .wrap {
    grid-template-columns: 1fr;
  }
  .hero-visual, .hero-art {
    order: -1;
    max-width: 360px;
    margin-inline: auto;
  }
}

/* ---------- Stat Strip ---------- */
.stats-bar, .strip {
  background: var(--ink);
  color: #FFFFFF;
  border-block: 1px solid var(--line-dark);
}

.stats-flex, .strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-block: clamp(32px, 4vw, 48px);
}

.stat-num, .stat .n {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: var(--accent-gold);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.stat-desc, .stat .l {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-light-muted);
  margin-top: 0.6rem;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .stats-flex, .strip .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.2rem;
  }
}

/* ---------- Section Header ---------- */
.block-header, .sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}

.block-header h2, .sec-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.link-more, .sec-head a.more {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-cyan);
  white-space: nowrap;
  border-bottom: 2px solid var(--accent-cyan);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

.link-more:hover, .sec-head a.more:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

@media (max-width: 640px) {
  .block-header, .sec-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Cards Grid ---------- */
.cards-grid, .grid {
  display: grid;
  gap: clamp(20px, 2.5vw, 30px);
}

.cards-grid.cols-3, .grid.c3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.grid.c4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 960px) {
  .cards-grid.cols-3, .grid.c3, .grid.c4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .cards-grid.cols-3, .grid.c2, .grid.c3, .grid.c4 {
    grid-template-columns: 1fr;
  }
}

.casino-card, .card {
  background: var(--bg-light-card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.32s ease, border-color 0.32s ease;
  box-shadow: var(--shadow-card);
}

.casino-card:hover, .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-cyan);
}

.card-media, .card .thumb {
  aspect-ratio: 16 / 10;
  background: var(--night);
  position: relative;
  overflow: hidden;
}

.media-art, .card .thumb svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.casino-card:hover .media-art, .card:hover .thumb svg {
  transform: scale(1.05);
}

.location-badge, .card .thumb .place {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  font-weight: 800;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.35em 0.85em;
  border-radius: 8px;
  border: 1px solid var(--line-dark);
}

.card-details, .card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.card-category, .card .meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.casino-card h3, .card h3 {
  font-size: 1.35rem;
  color: var(--night);
}

.casino-card p, .card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0.2rem 0 0;
}

.card-tags, .card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.card-tags span, .card .tags span {
  font-size: 0.75rem;
  color: var(--accent-gold-dark);
  border: 1px solid var(--line-gold);
  background: rgba(245, 158, 11, 0.08);
  border-radius: 99px;
  padding: 0.3em 0.8em;
  font-weight: 700;
}

.card-action, .card .row {
  margin-top: auto;
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-link, .card .row .link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent-cyan-dark);
  display: inline-flex;
  gap: 0.45em;
  align-items: center;
}

.btn-link svg, .card .row .link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.casino-card:hover .btn-link svg, .card:hover .row .link svg {
  transform: translateX(6px);
}

/* ---------- Region / Province Tiles ---------- */
.region-tiles, .tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .region-tiles, .tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.region-card, .tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(145deg, var(--night-2), var(--night));
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  padding: 24px;
  min-height: 160px;
  color: #FFFFFF;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.region-card:hover, .tile:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5);
}

.region-num, .tile .idx {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--accent-cyan);
  font-weight: 800;
}

.region-title, .tile .nm {
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: #FFFFFF;
  line-height: 1.15;
}

.region-count, .tile .ct {
  font-size: 0.82rem;
  color: var(--text-light-muted);
}

/* ---------- Games Grid ---------- */
.games-grid, .games-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 860px) {
  .games-grid, .games-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .games-grid, .games-row {
    grid-template-columns: 1fr;
  }
}

.game-box, .game-chip {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--bg-light-card);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
}

.game-box:hover, .game-chip:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-lg);
}

.game-icon, .game-chip .ic {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  color: var(--accent-cyan-dark);
  background: rgba(56, 189, 248, 0.1);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-text h3, .game-chip h3 {
  font-size: 1.18rem;
  color: var(--night);
  margin-bottom: 0.2rem;
}

.game-text span, .game-chip span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Info Panels & Callouts ---------- */
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}

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

.info-panel, .callout {
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.light-panel, .callout.light {
  background: #FFFFFF;
  border-left: 5px solid var(--accent-cyan-dark);
}

.light-panel h4, .callout.light h4 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--night);
  margin-bottom: 0.8rem;
}

.light-panel p, .callout.light p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.highlight-panel, .callout {
  background: linear-gradient(135deg, var(--night-2), var(--night));
  border: 1px solid var(--line-dark);
  border-left: 5px solid var(--accent-gold);
  color: #FFFFFF;
}

.highlight-panel h4, .callout h4 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
}

.highlight-panel p, .callout p {
  color: var(--text-light-muted);
  font-size: 0.98rem;
}

.panel-action {
  margin-top: auto;
  padding-top: 1.5rem;
}

/* ---------- FAQ Section ---------- */
.faq-title {
  margin-bottom: 2rem;
}

.faq-accordion, .faq {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item, .faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 0;
}

.faq-item summary, .faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 2.5rem 1.2rem 0;
  position: relative;
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: #FFFFFF;
  transition: color 0.2s ease;
}

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

.faq-item summary::after, .faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  transition: transform 0.25s ease, color 0.2s;
}

.faq-item[open] summary::after, .faq details[open] summary::after {
  content: "–";
  color: var(--accent-gold);
}

.faq-item p, .faq details p {
  padding: 0 0 1.4rem;
  color: var(--text-light-muted);
  max-width: 72ch;
  line-height: 1.7;
}

/* ---------- Article & Prose Styling ---------- */
.prose {
  max-width: 72ch;
}

.prose h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin: 2.4rem 0 0.9rem;
  color: var(--night);
}

.prose h3 {
  font-size: 1.3rem;
  margin: 1.8rem 0 0.6rem;
  color: var(--night);
}

.prose p {
  color: var(--text-dark);
  margin-bottom: 1.2em;
}

.prose ul, .prose ol {
  color: var(--text-dark);
  padding-left: 1.3em;
  margin: 0 0 1.3em;
}

.prose li {
  margin-bottom: 0.5em;
}

.prose a {
  color: var(--accent-cyan-dark);
  border-bottom: 2px solid var(--accent-cyan);
  transition: all 0.2s;
}

.prose a:hover {
  color: var(--accent-gold-dark);
  border-color: var(--accent-gold);
}

/* Page Header Interior */
.phead {
  background: var(--night);
  color: #FFFFFF;
  padding-block: clamp(52px, 6vw, 90px);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}

.phead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 100% -20%, rgba(56, 189, 248, 0.15), transparent 60%);
  pointer-events: none;
}

.phead .wrap {
  position: relative;
  z-index: 2;
}

.phead h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  color: #FFFFFF;
  max-width: 22ch;
}

/* Breadcrumbs */
.crumbs {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  margin-bottom: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45em;
  align-items: center;
}

.crumbs a {
  color: var(--text-light-muted);
  transition: color 0.2s;
}

.crumbs a:hover {
  color: var(--accent-cyan);
}

.crumbs .sep {
  color: var(--accent-gold);
}

/* Sidebar Layout */
.layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

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

.aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 920px) {
  .aside {
    position: static;
  }
}

.panel {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.panel h4 {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan-dark);
  margin-bottom: 1rem;
}

.panel.dark {
  background: var(--night);
  border-color: var(--line-dark);
  color: #FFFFFF;
}

.panel.dark h4 {
  color: var(--accent-cyan);
}

.dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  font-size: 0.92rem;
}

.dl dt {
  color: var(--text-muted);
  font-weight: 500;
}

.dl dd {
  margin: 0;
  color: var(--text-dark);
  text-align: right;
  font-weight: 700;
}

.panel.dark .dl dt {
  color: var(--text-light-muted);
}

.panel.dark .dl dd {
  color: #FFFFFF;
}

/* Modals & Age Gate */
.agegate-modal, .agegate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 11, 20, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(12px);
}

.agegate-modal[hidden], .agegate[hidden] {
  display: none;
}

.modal-card, .agegate .box {
  background: linear-gradient(145deg, var(--night-2), var(--night));
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  max-width: 460px;
  width: 100%;
  padding: 44px 36px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
}

.modal-shield, .agegate .mark {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.4));
}

.modal-card h2, .agegate h2 {
  font-size: 1.85rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.modal-card p, .agegate p {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  margin-bottom: 2rem;
}

.modal-buttons, .agegate .acts {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-legal, .agegate .fine {
  margin-top: 1.6rem;
  font-size: 0.78rem;
  color: var(--text-light-muted);
}

.modal-legal a, .agegate .fine a {
  color: var(--accent-cyan);
  border-bottom: 1px solid var(--accent-cyan);
}

/* Cookie Banner */
.cookie-banner, .cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  max-width: 620px;
  margin-inline: auto;
  background: linear-gradient(135deg, var(--night-2), var(--night));
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  padding: 22px 24px;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner[hidden], .cookie[hidden] {
  display: none;
}

.cookie-banner p, .cookie p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-light-muted);
  flex: 1 1 260px;
  line-height: 1.5;
}

.cookie-banner p a, .cookie p a {
  color: var(--accent-cyan);
  border-bottom: 1px solid var(--accent-cyan);
}

.cookie-buttons, .cookie .acts {
  display: flex;
  gap: 0.6rem;
}

/* Footer Styling */
.main-footer, .site-footer {
  background: var(--ink);
  color: var(--text-light-muted);
  border-top: 1px solid var(--line-dark);
}

.footer-grid, .footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 3vw, 48px);
  padding-block: clamp(56px, 6.5vw, 84px);
}

@media (max-width: 860px) {
  .footer-grid, .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid, .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-about .brand-logo, .footer-brand .brand {
  margin-bottom: 1.2rem;
}

.footer-about p, .footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  max-width: 38ch;
  line-height: 1.6;
}

.footer-links h5, .fcol h5 {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin: 0 0 1.2rem;
}

.footer-links a, .fcol a {
  display: block;
  font-size: 0.92rem;
  color: var(--text-light-muted);
  padding: 0.35rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover, .fcol a:hover {
  color: var(--accent-cyan);
  transform: translateX(3px);
}

.footer-subbar, .footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-light-muted);
}

.age-warning, .footer-bottom .rg {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.legal-nav a {
  color: var(--text-light-muted);
  transition: color 0.2s;
}

.legal-nav a:hover {
  color: var(--accent-cyan);
}

.footer-disclaimer, .disclaimer {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.6;
  padding-bottom: 30px;
}

/* Animations & Utilities */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.2, 0, 0, 1), transform 0.7s cubic-bezier(0.2, 0, 0, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link, .skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent-cyan);
  color: #070B14;
  padding: 0.6em 1.2em;
  z-index: 300;
  border-radius: 0 0 8px 0;
  font-weight: 800;
}

.skip-link:focus, .skip:focus {
  left: 0;
}