/* CasinoReviewer.io — Shared Styles */

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

:root {
  --bg: #0a0e1a;
  --bg-2: #10162a;
  --card: #151b2e;
  --card-2: #1b2239;
  --border: rgba(212, 175, 55, 0.15);
  --border-strong: rgba(212, 175, 55, 0.35);
  --gold: #d4af37;
  --gold-light: #f0d87a;
  --gold-dim: #8a7325;
  --red: #dc2626;
  --red-dark: #991b1b;
  --text: #f3efe4;
  --text-2: #c9c3b2;
  --muted: #7a8199;
  --success: #22c55e;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 1200px 600px at 50% -200px, rgba(212, 175, 55, 0.10), transparent 70%),
    radial-gradient(ellipse 800px 500px at 100% 50%, rgba(220, 38, 38, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

a { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

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

/* --- Layout --- */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

main {
  flex: 1;
  padding: 48px 0 80px;
}

/* --- Header / Nav --- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
}
.brand-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--gold);
  line-height: 1;
}
.brand-tld {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.primary-nav > .nav-item {
  position: relative;
}
.nav-link {
  display: inline-block;
  padding: 10px 14px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.06);
}
.nav-caret { font-size: 10px; margin-left: 4px; opacity: 0.6; }

.nav-submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  display: flex;
}
.nav-submenu a {
  padding: 10px 12px;
  color: var(--text-2);
  font-size: 13px;
  border-radius: 4px;
}
.nav-submenu a:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--gold-light);
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

/* --- Buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.25);
}
.btn-primary:hover { background: #ef3b3b; color: #fff; box-shadow: 0 6px 24px rgba(220, 38, 38, 0.4); }
.btn-gold {
  background: var(--gold);
  color: #0a0e1a;
}
.btn-gold:hover { background: var(--gold-light); color: #0a0e1a; }
.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: rgba(212, 175, 55, 0.1); }

/* --- Hero --- */

.hero {
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold-dim);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  background: linear-gradient(160deg, #fff 20%, var(--gold-light) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 32px;
  font-weight: 300;
}
.hero-cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Section --- */

.section { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--gold-light);
  letter-spacing: -0.5px;
}
.section-kicker {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-desc {
  color: var(--muted);
  font-size: 14px;
  max-width: 540px;
}

/* --- Casino Ranking Cards --- */

.casino-list {
  display: grid;
  gap: 16px;
}
.casino-card {
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  display: grid;
  grid-template-columns: 52px 64px 1.3fr 1.5fr auto;
  gap: 22px;
  align-items: center;
  transition: border-color 0.25s, transform 0.2s;
  position: relative;
}
.casino-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.casino-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.18), transparent 55%),
    linear-gradient(135deg, var(--logo-from, #2a3352) 0%, var(--logo-to, #0f1628) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 4px 12px rgba(0,0,0,0.35);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.casino-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, transparent 55%, rgba(255,255,255,0.06) 60%, transparent 70%);
  pointer-events: none;
}
.casino-logo .logo-text {
  position: relative;
  z-index: 1;
  padding: 0 4px;
  text-align: center;
  line-height: 1;
}
.casino-logo.logo-sm .logo-text { font-size: 15px; letter-spacing: 1px; }
.casino-logo.logo-xs .logo-text { font-size: 12px; letter-spacing: 0.5px; }
.casino-rank {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--gold);
  text-align: center;
  line-height: 1;
}
.casino-rank small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.casino-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.casino-rating {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars { color: var(--gold); letter-spacing: 2px; }
.casino-offer {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}
.casino-offer strong { color: var(--gold-light); display: block; font-size: 15px; margin-bottom: 2px; }

@media (max-width: 780px) {
  .casino-card { grid-template-columns: 44px 56px 1fr; grid-template-rows: auto auto auto; gap: 14px; }
  .casino-card .casino-offer, .casino-card .btn { grid-column: 1 / -1; }
  .casino-offer { padding-top: 4px; }
  .casino-rank { font-size: 28px; }
  .casino-logo { width: 56px; height: 56px; }
}

/* --- Generic card grid --- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  transition: border-color 0.25s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-2px); color: inherit; }
.card-icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: inline-block;
  color: var(--gold);
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* --- Coming Soon Badge / Page --- */

.soon-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.35);
  color: #ff6b6b;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 600;
}

.stub-hero {
  padding: 64px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.stub-hero .soon-badge { margin-bottom: 20px; }
.stub-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.stub-hero p {
  color: var(--text-2);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
}

.breadcrumbs {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  padding: 20px 0 0;
  text-transform: uppercase;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 8px; color: var(--gold-dim); }

.prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.8;
}
.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--gold-light);
  margin: 40px 0 12px;
  letter-spacing: -0.3px;
}
.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold-light);
  margin: 28px 0 8px;
}
.prose p { margin-bottom: 14px; }
.prose ul { margin: 8px 0 20px 22px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--gold-light); border-bottom: 1px dashed var(--gold-dim); }

/* --- Newsletter Strip --- */

.notify-strip {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(220, 38, 38, 0.06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}
.notify-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--gold-light);
  margin-bottom: 10px;
}
.notify-strip p {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 24px;
}

.notify-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(10, 14, 26, 0.6);
}
.notify-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 18px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
}
.notify-input::placeholder { color: var(--muted); }
.notify-btn {
  background: var(--gold);
  border: none;
  padding: 14px 24px;
  color: #0a0e1a;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.notify-btn:hover { background: var(--gold-light); }
.notify-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 11px; color: var(--muted); letter-spacing: 1px; margin-top: 12px; }

.status-msg { display: none; font-size: 14px; letter-spacing: 1px; margin-top: 12px; }
.status-msg.success { color: var(--gold); }
.status-msg.error { color: #ff6b6b; }

/* --- Countdown --- */

.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
  flex-wrap: wrap;
}
.countdown-unit { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.countdown-box {
  width: 84px;
  height: 84px;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-light);
  position: relative;
}
.countdown-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent);
  pointer-events: none;
}
.countdown-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Regions Strip --- */

.regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 24px 0 8px;
}
.region-chip {
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-2);
}
.region-chip:hover { border-color: var(--border-strong); color: var(--gold-light); }

/* --- Footer --- */

.site-footer {
  background: #070a14;
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
  position: relative;
  z-index: 2;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-mark { font-size: 28px; }
.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-2);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-resp {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
}
.footer-resp .badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-resp .badge {
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 10px;
  color: var(--text-2);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.age-18 {
  display: inline-block;
  background: var(--red);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0;
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .primary-nav { display: none; }
  .primary-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 8px;
    gap: 0;
    align-items: stretch;
  }
  .primary-nav.open .nav-link { padding: 12px 16px; }
  .primary-nav.open .nav-submenu {
    position: static;
    display: flex;
    background: transparent;
    border: none;
    padding: 0 0 0 16px;
    box-shadow: none;
  }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .countdown-box { width: 70px; height: 70px; font-size: 28px; }
}

/* --- News Index & Article Cards --- */

.news-featured {
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 36px;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.news-featured::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 70%);
  pointer-events: none;
}
.news-featured .news-tag {
  margin-bottom: 14px;
}
.news-featured h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--gold-light);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.news-featured .news-excerpt {
  color: var(--text-2);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.news-featured .news-visual {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 20%, rgba(212,175,55,0.25), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(220,38,38,0.18), transparent 60%),
    linear-gradient(135deg, #1b2239 0%, #10162a 100%);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 92px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.news-featured .news-visual.has-image { font-size: 0; }
.news-featured .news-visual.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,0) 55%, rgba(10,14,26,0.4) 100%);
  pointer-events: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.2s;
}
.news-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  color: inherit;
}
.news-card-visual {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1b2239 0%, #10162a 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.news-card-visual.has-image { font-size: 0; }
.news-card-visual.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,0) 55%, rgba(10,14,26,0.45) 100%);
  pointer-events: none;
}
.news-card-visual.v-regulation { background: linear-gradient(135deg, #1a2540 0%, #0e1428 100%); }
.news-card-visual.v-market     { background: linear-gradient(135deg, #201a2e 0%, #110e1c 100%); }
.news-card-visual.v-provider   { background: linear-gradient(135deg, #2a1e1a 0%, #18100d 100%); }
.news-card-visual.v-crypto     { background: linear-gradient(135deg, #172a2a 0%, #0b1616 100%); }
.news-card-visual.v-game       { background: linear-gradient(135deg, #2a2014 0%, #16100a 100%); }

.news-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold-light);
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.news-card-body .news-excerpt {
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.6;
  flex: 1;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.news-meta time { color: var(--muted); }
.news-meta .dot { width: 3px; height: 3px; background: var(--gold-dim); border-radius: 50%; }

.news-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-strong);
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 600;
}
.news-tag.t-regulation { background: rgba(96,165,250,0.08); border-color: rgba(96,165,250,0.35); color: #93c5fd; }
.news-tag.t-market     { background: rgba(167,139,250,0.08); border-color: rgba(167,139,250,0.35); color: #c4b5fd; }
.news-tag.t-provider   { background: rgba(251,146,60,0.08); border-color: rgba(251,146,60,0.35); color: #fdba74; }
.news-tag.t-crypto     { background: rgba(52,211,153,0.08); border-color: rgba(52,211,153,0.35); color: #6ee7b7; }
.news-tag.t-game       { background: rgba(251,191,36,0.08); border-color: rgba(251,191,36,0.35); color: #fcd34d; }

/* --- Article Page --- */

.article-hero {
  padding: 32px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.article-hero .news-tag { margin-bottom: 18px; }
.article-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--gold-light);
  margin-bottom: 20px;
  max-width: 900px;
}
.article-hero .article-lead {
  color: var(--text-2);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  max-width: 760px;
  margin-bottom: 24px;
  font-weight: 300;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.article-byline .author {
  color: var(--gold-light);
  font-weight: 500;
}
.article-byline .sep-dot { width: 3px; height: 3px; background: var(--gold-dim); border-radius: 50%; }

.article-body {
  max-width: 760px;
  margin: 0 auto 40px;
}
.article-body p,
.article-body ul,
.article-body ol {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.article-body ul, .article-body ol { margin-left: 24px; }
.article-body li { margin-bottom: 8px; }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold-light);
  margin: 44px 0 14px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--gold-light);
  margin: 32px 0 10px;
  letter-spacing: -0.2px;
}
.article-body a {
  color: var(--gold-light);
  border-bottom: 1px dashed var(--gold-dim);
}
.article-body a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 22px;
  margin: 24px 0;
  color: var(--text);
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
}
.article-body strong { color: var(--text); font-weight: 600; }

.article-callout {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}
.article-callout strong { color: var(--gold-light); }

.article-footer {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.responsible-note {
  padding: 18px 22px;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 32px;
}
.responsible-note strong { color: #ff9c9c; }

.related-articles h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 18px;
}

@media (max-width: 780px) {
  .news-featured { grid-template-columns: 1fr; padding: 24px; }
  .news-featured .news-visual { order: -1; font-size: 64px; }
}

/* --- Article hero image --- */

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 7.5;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin: 8px 0 28px;
  overflow: hidden;
  position: relative;
  background: #0f1628;
  background-size: cover;
  background-position: center;
}
.article-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,0) 45%, rgba(10,14,26,0.55) 100%);
  pointer-events: none;
}
@media (max-width: 780px) {
  .article-hero-image { aspect-ratio: 16 / 10; }
}

/* --- Provider Review Cards & Pages --- */

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.provider-card {
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.2s;
  position: relative;
}
.provider-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  color: inherit;
}
.provider-card .card-icon { margin-bottom: 4px; }
.provider-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold-light);
  letter-spacing: -0.2px;
}
.provider-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
  flex: 1;
}
.provider-card .provider-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
}

.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.5px;
  border-radius: 3px;
}
.ticker-chip .exchange {
  color: var(--muted);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ticker-chip .symbol { color: var(--gold-light); font-weight: 600; }
.ticker-chip .price { color: #8ee9a7; font-weight: 600; }
.ticker-chip.is-private {
  background: rgba(122, 129, 153, 0.08);
  border-color: rgba(122, 129, 153, 0.28);
}
.ticker-chip.is-private .symbol { color: var(--text-2); }
.ticker-chip.is-private .price { color: var(--muted); font-weight: 400; }

.provider-rating {
  font-size: 12px;
  color: var(--muted);
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.provider-rating .stars { color: var(--gold); letter-spacing: 1.5px; font-size: 13px; }

/* Review hero — share price banner */

.price-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 8px 0 28px;
}
.price-banner .pb-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-banner .pb-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.price-banner .pb-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold-light);
  line-height: 1.15;
}
.price-banner .pb-value.price-up { color: #6ee7b7; }
.price-banner .pb-value.price-down { color: #ff9c9c; }
.price-banner .pb-sub { font-size: 11px; color: var(--muted); letter-spacing: 1px; }

.review-scorecard {
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 24px;
  margin: 24px 0;
}
.review-scorecard h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}
.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}
.score-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.score-cell .label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.score-cell .value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold-light);
}
.score-cell .value small {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-left: 2px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0;
}
.pc-col {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
}
.pc-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.pc-col.pros h4 { color: var(--success); }
.pc-col.cons h4 { color: #ff6b6b; }
.pc-col ul { list-style: none; margin: 0; }
.pc-col li {
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.55;
  padding: 6px 0 6px 18px;
  position: relative;
}
.pc-col.pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.pc-col.cons li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: 700;
}
@media (max-width: 620px) {
  .pros-cons { grid-template-columns: 1fr; }
}

.price-note {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 8px;
  line-height: 1.55;
}

/* --- Utilities --- */

.text-center { text-align: center; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 40px; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 24px; }
.mb-3 { margin-bottom: 40px; }

/* --- Animations --- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.d-1 { animation-delay: 0.1s; }
.d-2 { animation-delay: 0.25s; }
.d-3 { animation-delay: 0.4s; }
.d-4 { animation-delay: 0.55s; }
.d-5 { animation-delay: 0.7s; }
