/* SlotDirectoryApp */

:root {
  --ink: #0a1612;
  --ink-soft: #1a2e28;
  --parchment: #e8e0d0;
  --ivory: #f5f0e6;
  --copper: #b5651d;
  --copper-light: #d4894a;
  --sage: #7d9688;
  --coral: #d4847a;
  --gold: #c9a227;
  --text: #2c3530;
  --text-muted: #5a6560;
  --border: rgba(10, 22, 18, 0.12);
  --shadow: 0 8px 32px rgba(10, 22, 18, 0.14);
  --radius: 4px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
  --header-h: 72px;
  --disclosure-h: 40px;
  --rg-bar-h: 34px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--parchment);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--copper); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--copper-light); }

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.disclosure-bar {
  background: var(--ink);
  color: var(--parchment);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.55rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  letter-spacing: 0.02em;
}

.disclosure-bar a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rg-strip {
  position: fixed;
  top: calc(var(--disclosure-h) + var(--header-h));
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--ink-soft);
  color: rgba(245, 240, 230, 0.88);
  font-size: 0.72rem;
  height: var(--rg-bar-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(245, 240, 230, 0.08);
}

.rg-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  width: 100%;
}

.rg-strip a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rg-strip a:hover { color: var(--ivory); }

.rg-sep { opacity: 0.35; }

.site-header {
  position: fixed;
  top: var(--disclosure-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(245, 240, 230, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.logo-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  font-weight: 600;
}

.nav-main {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-main a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav-main a:hover { color: var(--copper); }

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

.hero {
  margin-top: calc(var(--disclosure-h) + var(--header-h) + var(--rg-bar-h));
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(181, 101, 29, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(125, 150, 136, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 580px;
  position: relative;
}

.hero-editorial {
  padding: 4rem 0 4rem 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sage);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(245, 240, 230, 0.82);
  max-width: 440px;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.8rem;
  color: var(--sage);
}

.hero-meta strong { color: var(--ivory); display: block; font-size: 1.1rem; }

.hero-featured {
  background: linear-gradient(145deg, var(--ink-soft) 0%, #0f221c 100%);
  border-left: 3px solid var(--copper);
  padding: 3rem 3rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-featured::after {
  content: '01';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.32);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.featured-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--copper);
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.featured-logo-wrap {
  background: var(--ink);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.featured-logo-wrap img { width: 200px; }

.hero-featured h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-featured p {
  color: rgba(245, 240, 230, 0.78);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 380px;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.rating-pill .stars { color: var(--gold); letter-spacing: 2px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-copper {
  background: var(--copper);
  color: var(--ivory);
  box-shadow: 0 4px 16px rgba(181, 101, 29, 0.35);
}

.btn-copper:hover { color: var(--ivory); background: var(--copper-light); }

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245, 240, 230, 0.35);
}

.btn-outline:hover { background: rgba(245, 240, 230, 0.08); color: var(--ivory); }

.btn-sage {
  background: var(--sage);
  color: var(--ivory);
}

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.75rem; }

.terms-note {
  font-size: 0.68rem;
  color: rgba(245, 240, 230, 0.5);
  margin-top: 0.75rem;
}

section { padding: 5rem 0; }

.section-header {
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.section-header p {
  margin-top: 0.75rem;
  color: var(--text-muted);
  max-width: 600px;
}

.updated-badge {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--sage);
  background: rgba(125, 150, 136, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  margin-top: 0.75rem;
  font-weight: 500;
}

.updated-badge--on-dark {
  color: var(--sage);
  background: rgba(125, 150, 136, 0.2);
}

.methodology-note a {
  color: var(--gold);
}

.methodology-note a:hover {
  color: var(--ivory);
}

.why-888 {
  background: var(--ivory);
  position: relative;
}

.why-888::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--sage), var(--coral));
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.why-intro p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.why-point {
  background: var(--parchment);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
  position: relative;
}

.why-point-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--copper);
  opacity: 0.35;
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  line-height: 1;
}

.why-point h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.why-point p { font-size: 0.88rem; color: var(--text-muted); }

.why-cta-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--ink);
  color: var(--ivory);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.why-cta-box p { font-size: 0.9rem; }

.casinos { background: var(--parchment); }

.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.casino-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px;
  transition: box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.casino-card:hover { box-shadow: var(--shadow); }

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage);
}

.casino-card.featured {
  grid-column: 1 / -1;
  min-height: auto;
  border: 2px solid var(--copper);
  background: linear-gradient(135deg, var(--ivory) 0%, #faf6ee 100%);
}

.casino-card.featured::before {
  height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--gold));
}

.casino-card.featured .card-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

.casino-card.featured .card-body,
.casino-card.featured .card-footer {
  padding: 0;
}

.card-rank {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--copper);
  opacity: 0.25;
  line-height: 1;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--copper);
  color: var(--ivory);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}

.card-logo {
  padding: 1.5rem 1.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.card-logo img { width: 140px; height: 48px; object-fit: contain; }

.casino-card.featured .card-logo img { width: 180px; height: 56px; }

.card-body {
  padding: 0 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.card-rating .stars { color: var(--gold); }

.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
}

.card-features {
  list-style: none;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.card-features li {
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
  color: var(--text);
}

.card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
}

.card-footer {
  padding: 1rem 1.5rem 1.5rem;
  margin-top: auto;
}

.card-footer .terms-note { color: var(--text-muted); }

.comparison {
  background: var(--ivory);
  padding: 3rem 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--ink);
  color: var(--ivory);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison-table tr:nth-child(even) td { background: rgba(232, 224, 208, 0.35); }

.comparison-table tr.highlight td {
  background: rgba(181, 101, 29, 0.08);
  font-weight: 500;
}

.comparison-table .stars { color: var(--gold); }

.offers { background: var(--ink); color: var(--ivory); }

.offers .section-eyebrow { color: var(--sage); }
.offers .section-header h2 { color: var(--ivory); }
.offers .section-header p { color: rgba(245, 240, 230, 0.7); }

.offers-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.25rem;
}

.offer-card {
  background: var(--ink-soft);
  border: 1px solid rgba(245, 240, 230, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.offer-card.primary {
  border-color: var(--copper);
  background: linear-gradient(160deg, #152820 0%, var(--ink-soft) 100%);
  position: relative;
}

.offer-card.primary::before {
  content: 'Top Pick';
  position: absolute;
  top: -0.6rem;
  left: 1.5rem;
  background: var(--copper);
  color: var(--ivory);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

.offer-logo { margin-bottom: 1rem; }
.offer-logo img { width: 120px; height: 40px; object-fit: contain; }

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.offer-bonus {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.offer-card p {
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.7);
  flex: 1;
  margin-bottom: 1.25rem;
}

.offer-card .terms-note { color: rgba(245, 240, 230, 0.45); }

.guides { background: var(--parchment); }

.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.guide-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.guide-meta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.guide-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.guide-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.guide-link {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--copper);
}

.guide-link:hover {
  color: var(--copper-light);
}

.categories { background: var(--ivory); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.category-card {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}

.category-card:hover { border-color: var(--copper); }

.category-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border: 2px solid var(--copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--copper);
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.category-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.regulators { background: var(--parchment); }

.regulator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.regulator-item {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
}

.regulator-item:hover { box-shadow: var(--shadow); }

.regulator-item img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
}

.regulator-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.faq { background: var(--ivory); }

.faq-list { max-width: 800px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--copper);
  transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.responsible {
  background: var(--ink);
  color: var(--ivory);
}

.responsible .section-eyebrow { color: var(--coral); }
.responsible .section-header h2 { color: var(--ivory); }

.responsible-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.responsible-content p {
  color: rgba(245, 240, 230, 0.78);
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.responsible-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.responsible-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 240, 230, 0.08);
  border: 1px solid rgba(245, 240, 230, 0.15);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  color: var(--ivory);
  font-size: 0.82rem;
  font-weight: 500;
}

.responsible-links a:hover {
  background: rgba(245, 240, 230, 0.14);
  color: var(--ivory);
}

.affiliate-disclosure-box {
  background: rgba(245, 240, 230, 0.06);
  border: 1px solid rgba(245, 240, 230, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.affiliate-disclosure-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.affiliate-disclosure-box p {
  font-size: 0.88rem;
  color: rgba(245, 240, 230, 0.72);
  margin-bottom: 0.75rem;
}

.site-footer {
  background: #060e0b;
  color: rgba(245, 240, 230, 0.65);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-mark {
  color: var(--ivory);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  font-size: 0.82rem;
  color: rgba(245, 240, 230, 0.6);
  text-decoration: none;
}

.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
}

.footer-bottom--compact {
  border-top: none;
  padding-top: 0;
}

.footer-inline-link {
  color: var(--ivory);
}

.footer-inline-link:hover {
  color: var(--parchment);
}

.badge-18--sm {
  width: 32px;
  height: 32px;
  font-size: 0.65rem;
  border-color: rgba(245, 240, 230, 0.4);
  color: var(--ivory);
}

.legal-list {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.error-page .container {
  text-align: center;
}

.error-page .btn {
  margin-top: 1.5rem;
}

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

.footer-rg img { width: 80px; height: 40px; object-fit: contain; opacity: 0.8; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 18, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.overlay.hidden { display: none; }

.modal {
  background: var(--ivory);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.modal-icon {
  width: 64px;
  height: 64px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1.5rem;
  color: var(--ink);
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.modal p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-actions .btn { min-width: 140px; }

.btn-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--ivory);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

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

.cookie-banner p {
  font-size: 0.82rem;
  max-width: 640px;
  color: rgba(245, 240, 230, 0.85);
}

.cookie-banner a { color: var(--gold); }

.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-featured { border-left: none; border-top: 3px solid var(--copper); }
  .why-grid { grid-template-columns: 1fr; }
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
  .casino-card.featured .card-inner { grid-template-columns: 1fr; text-align: center; }
  .offers-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .regulator-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .methodology-grid { grid-template-columns: repeat(3, 1fr); }
}

.legal-page {
  margin-top: calc(var(--disclosure-h) + var(--header-h) + var(--rg-bar-h));
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  max-width: 720px;
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--sage);
  margin-bottom: 1.5rem !important;
}

.licensing-note {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.site-notice {
  background: rgba(125, 150, 136, 0.12);
  border: 1px solid rgba(125, 150, 136, 0.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 2rem;
}

.hero .site-notice {
  background: rgba(245, 240, 230, 0.1);
  border: 1px solid rgba(245, 240, 230, 0.22);
  color: rgba(245, 240, 230, 0.92);
  max-width: 440px;
  margin-bottom: 1.5rem;
}

.hero .site-notice strong {
  color: var(--ivory);
}

.hero .site-notice a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero .site-notice a:hover {
  color: var(--ivory);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10001;
  background: var(--copper);
  color: var(--ivory);
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 0.5rem;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.pros-cons-box {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.pros-cons-box h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.pros-cons-box.pros { border-top: 3px solid var(--sage); }
.pros-cons-box.cons { border-top: 3px solid var(--coral); }

.pros-cons-box ul {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pros-cons-box li {
  padding: 0.3rem 0 0.3rem 1.1rem;
  position: relative;
}

.pros-cons-box.pros li::before { content: '+'; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.pros-cons-box.cons li::before { content: '−'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }

.methodology { background: var(--ink); color: var(--ivory); }

.methodology .section-eyebrow { color: var(--sage); }
.methodology .section-header h2 { color: var(--ivory); }
.methodology .section-header p { color: rgba(245, 240, 230, 0.72); }

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.methodology-card {
  background: var(--ink-soft);
  border: 1px solid rgba(245, 240, 230, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.methodology-weight {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.methodology-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--ivory);
}

.methodology-card p {
  font-size: 0.78rem;
  color: rgba(245, 240, 230, 0.62);
  line-height: 1.5;
}

.methodology-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(181, 101, 29, 0.12);
  border: 1px solid rgba(181, 101, 29, 0.25);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: rgba(245, 240, 230, 0.8);
}

.safer-tips { background: var(--ivory); }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tip-card {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

.tip-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--copper);
  opacity: 0.4;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.tip-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.tip-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--copper);
  color: var(--ivory);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--copper-light); }

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
    --disclosure-h: 56px;
    --rg-bar-h: 52px;
  }

  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0;
  }

  .nav-main.open { display: flex; }
  .nav-main li { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
  .menu-toggle { display: block; }

  .hero-editorial { padding: 2.5rem 4vw; }
  .hero-featured { padding: 2rem 4vw; }
  .casino-grid { grid-template-columns: 1fr; }
  .casino-card { min-height: 380px; }
  .why-points { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .responsible-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 0.75rem; }
  .rg-sep { display: none; }
  .rg-strip-inner { font-size: 0.68rem; text-align: center; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .methodology-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 480px) {
  .disclosure-bar { font-size: 0.68rem; padding: 0.45rem 0.75rem; }
  .modal { padding: 1.75rem; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .back-to-top { bottom: 6.5rem; right: 1rem; }
}
