/* ═══════════════════════════════════════════════════════════════
   Bitcoingames.online — Global Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* 1. VARIABLES
   ─────────────────────────────────────────────────────────────── */
:root {
  /* Backgrounds — dark silver */
  --bg:        #0B1120;
  --bg-2:      #111826;
  --surface:   #161D2E;
  --surface-2: #1C2438;
  --surface-3: #222C44;

  /* Borders */
  --border:    #253048;
  --border-hi: #334060;

  /* Silver tones */
  --silver:    #7A90AA;
  --silver-hi: #9AAFC8;

  /* Brazilian green */
  --green:     #009B37;
  --green-hi:  #00B841;
  --green-dim: rgba(0, 155, 55, 0.13);
  --green-sub: rgba(0, 155, 55, 0.07);

  /* Brazilian yellow */
  --yellow:    #FFD100;
  --yellow-hi: #FFE040;
  --yellow-dim: rgba(255, 209, 0, 0.12);

  /* Text */
  --text:      #DCE8F5;
  --text-2:    #8A9CB8;
  --muted:     #4D5E78;

  /* Accent = green */
  --accent:    var(--green);
  --accent-hi: var(--green-hi);

  /* Teal — secondary accent for variety */
  --teal:      #00A896;
  --teal-dim:  rgba(0, 168, 150, 0.12);

  /* Fonts */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Layout */
  --header-h: 68px;
  --max-w:    1360px;
  --gutter:   1.25rem;

  /* Radii */
  --radius:    10px;
  --radius-sm: 6px;
  --radius-xs: 4px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  0.18s;
}

/* 2. RESET
   ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* 3. TYPOGRAPHY
   ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; color: var(--text); }
a:hover { color: var(--green); }

/* 4. LAYOUT
   ─────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: 4rem 0;
}
.section-sm {
  padding: 2.5rem 0;
}
.section-header {
  margin-bottom: 2.5rem;
  text-align: center;
}
.section-header h2 {
  margin-bottom: 0.5rem;
}
.section-header p {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 5. BUTTONS
   ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-hi);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 155, 55, 0.4);
}

.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-hi);
}
.btn-secondary:hover {
  background: var(--surface-3);
  color: var(--text);
  border-color: var(--silver);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
.btn-outline:hover {
  background: var(--green-dim);
  color: var(--green-hi);
}

/* 6. SITE HEADER
   ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--header-h);
  background: rgba(11, 17, 32, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--yellow) 100%);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--dur);
}
.site-logo:hover { opacity: 0.85; color: inherit; }
.logo-main  { color: var(--text); }
.logo-accent { color: var(--green); }
.logo-tld   { color: var(--silver); font-size: 1.1rem; }

/* 7. DESKTOP NAV
   ─────────────────────────────────────────────────────────────── */
.site-nav { display: none; }

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.site-nav a,
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
}
.site-nav a:hover,
.nav-dropdown-toggle:hover {
  color: var(--text);
  background: var(--surface-2);
}
.site-nav a[aria-current="page"] {
  color: var(--green);
  background: var(--green-sub);
}

/* 8. DROPDOWN
   ─────────────────────────────────────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  background: none;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
}

.nav-dropdown-toggle .caret {
  filter: invert(55%) sepia(10%) saturate(300%) hue-rotate(180deg);
  transition: transform 0.2s var(--ease);
}
.nav-dropdown.open .caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-top: 2px solid var(--green);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0.4rem;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  z-index: 10;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur), padding-left var(--dur);
}
.nav-dropdown-menu a:hover {
  color: var(--green);
  background: var(--green-sub);
  padding-left: 1.15rem;
}

/* 9. HAMBURGER BUTTON
   ─────────────────────────────────────────────────────────────── */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  flex-shrink: 0;
  transition: border-color var(--dur), background var(--dur);
}
.nav-toggle:hover  { border-color: var(--green); background: var(--green-sub); }
.nav-toggle img    { filter: invert(70%) sepia(5%) saturate(200%) hue-rotate(190deg); }
.icon-close        { display: none; }
.icon-open         { display: block; }
#navToggle.open .icon-close { display: block; }
#navToggle.open .icon-open  { display: none; }
#navToggle.open { border-color: var(--green); background: var(--green-sub); }

/* 10. MOBILE NAV
   ─────────────────────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg-2);
  z-index: 400;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  display: none;
}
.mobile-nav.open { display: block; }

.mobile-nav > ul {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0 4rem;
}
.mobile-nav a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color var(--dur), background var(--dur), padding-left var(--dur);
}
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: var(--green);
  background: var(--green-sub);
  padding-left: 2rem;
}
.mobile-section-label {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 1px solid var(--border);
  list-style: none;
}

/* 11. SITE FOOTER
   ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  margin-top: 5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color var(--dur);
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-legal {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer-rg {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.footer-rg-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--silver);
}
.footer-rg a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: underline;
  transition: color var(--dur);
}
.footer-rg a:hover { color: var(--green); }
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--border-hi);
  border-radius: var(--radius-xs);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--silver);
  flex-shrink: 0;
}

/* 12. BACK TO TOP
   ─────────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 300;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), background var(--dur), border-color var(--dur);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--green-sub);
  border-color: var(--green);
}
.back-to-top img {
  filter: invert(70%) sepia(5%) saturate(200%) hue-rotate(190deg);
}

/* 13. RESPONSIBLE GAMBLING DISCLAIMER
   ─────────────────────────────────────────────────────────────── */
.rg-disclaimer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rg-disclaimer p {
  font-size: 0.875rem;
  color: var(--text-2);
  margin: 0;
}
.rg-disclaimer strong { color: var(--yellow); }
.rg-disclaimer a { color: var(--green); text-decoration: underline; }
.rg-disclaimer a:hover { color: var(--green-hi); }

/* 14. CASINO REVIEW CARD (shared component)
   ─────────────────────────────────────────────────────────────── */
.casino-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
}
.casino-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--green-dim);
  transform: translateY(-3px);
}
.casino-card__logo {
  width: 100%;
  height: 72px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
}
.casino-card__logo img { max-width: 160px; max-height: 52px; width: auto; height: auto; object-fit: contain; }
.casino-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.casino-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.casino-card__score {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.casino-card__score-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.casino-card__score-max {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.casino-card__score-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 0.25rem;
}
.casino-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}
.casino-card__footer {
  padding: 0 1.25rem 1.25rem;
}

/* Stars */
.stars {
  display: flex;
  gap: 2px;
}
.star {
  width: 16px;
  height: 16px;
  background: var(--yellow);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.star-empty { background: var(--border-hi); }

/* 15. BREADCRUMB
   ─────────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span[aria-current="page"] { color: var(--silver); }
.breadcrumb-sep { color: var(--border-hi); }

/* 16. MEDIA QUERIES
   ─────────────────────────────────────────────────────────────── */
@media (min-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .site-nav       { display: flex; align-items: center; }
  .nav-toggle     { display: none !important; }
  .mobile-nav     { display: none !important; }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (min-width: 1200px) {
  :root { --gutter: 2rem; }
}

/* 17. PAGE HERO
   ─────────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 1rem 0 4rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blur {
  position: absolute;
  border-radius: 4px;
  opacity: 0.38;
  filter: blur(72px);
}
.hero-blur-1 {
  width: 420px; height: 420px;
  background: radial-gradient(ellipse, rgba(0,155,55,0.55) 0%, transparent 70%);
  top: -120px; left: -80px;
}
.hero-blur-2 {
  width: 380px; height: 280px;
  background: radial-gradient(ellipse, rgba(255,209,0,0.35) 0%, transparent 70%);
  top: 60px; right: -60px;
}
.hero-blur-3 {
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,155,55,0.2) 0%, transparent 70%);
  bottom: -80px; right: 20%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-sq {
  position: absolute;
  border: 1px solid;
  border-radius: 4px;
  opacity: 0.12;
}
.hero-sq-1 { width: 80px;  height: 80px;  border-color: var(--green);              top: 15%;    left: 5%;   transform: rotate(15deg); }
.hero-sq-2 { width: 48px;  height: 48px;  border-color: var(--yellow);             top: 55%;    left: 12%;  transform: rotate(-8deg); }
.hero-sq-3 { width: 120px; height: 120px; border-color: var(--green);              top: 10%;    right: 8%;  transform: rotate(-20deg); }
.hero-sq-4 { width: 56px;  height: 56px;  border-color: var(--yellow);             bottom: 15%; right: 5%;  transform: rotate(12deg); }
.hero-sq-5 { width: 36px;  height: 36px;  border-color: rgba(255,255,255,0.4);     top: 30%;    right: 22%; transform: rotate(30deg); }
.hero-btc {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 209, 0, 0.13);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
}
.hero-btc span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.hero-btc-1 { width: 90px;  height: 54px; top: 18%;    left: 18%; }
.hero-btc-1 span { font-size: 1.3rem; }
.hero-btc-2 { width: 62px;  height: 38px; top: 62%;    left: 7%; }
.hero-btc-2 span { font-size: 0.9rem; }
.hero-btc-3 { width: 116px; height: 70px; top: 8%;     right: 26%; }
.hero-btc-3 span { font-size: 1.75rem; }
.hero-btc-4 { width: 78px;  height: 47px; bottom: 22%; right: 18%; }
.hero-btc-4 span { font-size: 1.1rem; }
.hero-btc-5 { width: 52px;  height: 32px; top: 42%;    right: 6%; }
.hero-btc-5 span { font-size: 0.75rem; }
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.hero-intro {
  text-align: center;
  flex: 1;
}
.hero-bio {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* 18. PROFILE
   ─────────────────────────────────────────────────────────────── */
.profile-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 3px solid var(--border-hi);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 6px rgba(0,155,55,0.12), 0 16px 48px rgba(0,0,0,0.5);
}
.profile-photo::after {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
  line-height: 1.4;
}
.profile-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.profile-title {
  font-size: 1rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface);
  transition: border-color var(--dur), color var(--dur), background var(--dur);
}
.social-link:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-sub);
}
.social-link img {
  filter: invert(60%) sepia(5%) saturate(200%) hue-rotate(190deg);
  transition: filter var(--dur);
}
.social-link:hover img {
  filter: invert(40%) sepia(80%) saturate(400%) hue-rotate(95deg);
}

/* 19. METHODOLOGY STEPS
   ─────────────────────────────────────────────────────────────── */
.methodology-steps { counter-reset: steps; }
.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-number {
  counter-increment: steps;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-2);
  margin: 0;
}

/* 20. EXPERTISE GRID
   ─────────────────────────────────────────────────────────────── */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.expertise-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color var(--dur);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.expertise-item:hover { border-color: var(--green); box-shadow: 0 0 0 1px var(--green-dim); }
.expertise-item--teal { border-color: rgba(0,168,150,0.2); }
.expertise-item--teal:hover { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal-dim); }
.expertise-item--yellow { border-color: rgba(255,209,0,0.15); }
.expertise-item--yellow:hover { border-color: var(--yellow); box-shadow: 0 0 0 1px var(--yellow-dim); }
.expertise-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--green-dim);
  border: 1px solid rgba(0,155,55,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.expertise-icon img {
  filter: invert(55%) sepia(60%) saturate(500%) hue-rotate(95deg) brightness(1.1);
}
.expertise-icon--teal {
  background: var(--teal-dim);
  border-color: rgba(0,168,150,0.3);
}
.expertise-icon--teal img {
  filter: invert(55%) sepia(80%) saturate(400%) hue-rotate(145deg) brightness(1.1);
}
.expertise-icon--yellow {
  background: var(--yellow-dim);
  border-color: rgba(255,209,0,0.3);
}
.expertise-icon--yellow img {
  filter: invert(85%) sepia(80%) saturate(600%) hue-rotate(5deg) brightness(1.05);
}
.expertise-item h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.expertise-item p {
  font-size: 0.85rem;
  color: var(--text-2);
  margin: 0;
}

/* 21. REVIEWS GRID
   ─────────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

/* 22. STANDARDS LIST
   ─────────────────────────────────────────────────────────────── */
.standards-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.standard-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.standard-item img {
  margin-top: 2px;
  filter: invert(40%) sepia(80%) saturate(400%) hue-rotate(95deg);
  flex-shrink: 0;
}
.standard-item figure img {
  filter: none;
  margin-top: 0;
}
.standard-item p { font-size: 0.9rem; color: var(--text-2); margin: 0; }
.standard-item strong { color: var(--text); }

/* 23. FAQ ACCORDION
   ─────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-hi); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
.faq-question .faq-caret {
  flex-shrink: 0;
  filter: invert(60%) sepia(10%) saturate(400%) hue-rotate(180deg);
  transition: transform 0.25s;
}
.faq-item.open .faq-caret { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.925rem;
  color: var(--text-2);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* 24. SCORING TABLE
   ─────────────────────────────────────────────────────────────── */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  position: relative;
  cursor: grab;
}
.table-scroll.is-dragging { cursor: grabbing; user-select: none; }
.table-scroll-hint {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.table-scroll-hint img { opacity: 0.5; }
.table-scroll-hint.visible { display: flex; }
/* scrollbar track */
.table-scroll::-webkit-scrollbar { height: 6px; }
.table-scroll::-webkit-scrollbar-track { background: var(--surface-2); border-radius: 0 0 var(--radius) var(--radius); }
.table-scroll::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 3px; }
.table-scroll::-webkit-scrollbar-thumb:hover { background: var(--green); }
.scoring-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 420px;
}
.scoring-table th {
  text-align: left;
  padding: 0.6rem 1rem;
  background: var(--surface-2);
  color: var(--text-2);
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.scoring-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  white-space: nowrap;
}
.scoring-table tr:last-child td { border-bottom: none; }
.scoring-table td:last-child { color: var(--text-2); }

/* 25. CONTACT CARD
   ─────────────────────────────────────────────────────────────── */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  padding: 1.5rem;
  width: 100%;
  max-width: 420px;
  flex-shrink: 0;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.25rem;
}
.contact-card > p {
  font-size: 0.825rem;
  color: var(--text-2);
  margin: 0 0 0.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.form-field label {
  font-size: 0.775rem;
  font-weight: 500;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-field input,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.18s;
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.18s;
  width: 100%;
}
.form-submit:hover { background: var(--green-hi); }
.form-submit img { filter: brightness(0) invert(1); }

/* Hero + profile responsive
   ─────────────────────────────────────────────────────────────── */
@media (min-width: 700px) {
  .hero-content      { flex-direction: row; align-items: flex-start; }
  .hero-intro        { text-align: left; }
  .hero-bio          { margin-left: 0; margin-right: 0; }
  .hero-social       { justify-content: flex-start; }
  .profile-photo     { width: 200px; height: 200px; }
  .expertise-grid    { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid      { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .profile-photo { width: 240px; height: 240px; }
  .hero-content  { align-items: stretch; }
  .contact-card  { max-width: 300px; margin-left: 0; margin-right: 0; align-self: flex-start; }
}

/* 26. REVIEW HERO
   ─────────────────────────────────────────────────────────────── */
.review-hero {
  position: relative;
  padding: 1rem 0 3rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
}
.review-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.review-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}
.review-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
}
.review-logo-wrap img { max-width: 200px; max-height: 72px; width: auto; height: auto; object-fit: contain; }
.review-title-block { flex: 1; }
.review-casino-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.review-tagline {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 1rem;
}
.review-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.review-meta-line span { display: flex; align-items: center; gap: 0.3rem; }
.review-score-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.score-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: var(--green-dim);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.score-badge__value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.score-badge__denom {
  font-size: 1rem;
  color: var(--text-2);
  align-self: flex-end;
  padding-bottom: 0.2rem;
}
.score-badge__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  align-self: flex-end;
  padding-bottom: 0.25rem;
  border-left: 1px solid var(--border-hi);
  padding-left: 0.5rem;
  margin-left: 0.1rem;
}
.review-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: center;
}

/* 27. FACT STATS GRID
   ─────────────────────────────────────────────────────────────── */
.fact-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.fact-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.03);
}
.fact-pill img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: invert(55%) sepia(60%) saturate(500%) hue-rotate(95deg) brightness(1.1);
  opacity: 0.9;
}
.fact-pill strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.fact-pill span {
  color: var(--text);
  font-weight: 500;
  font-size: 0.85rem;
}

/* 28. VERDICT BOX
   ─────────────────────────────────────────────────────────────── */
.verdict-box {
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 48px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
}
.verdict-box p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
}
.verdict-box p:last-child { margin-bottom: 0; }

/* 29. PROS / CONS
   ─────────────────────────────────────────────────────────────── */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
.pros-list, .cons-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pros-list { background: var(--surface-2); border-color: var(--border-hi); box-shadow: 0 8px 48px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04); }
.cons-list { background: var(--surface-2); border-color: var(--border-hi); box-shadow: 0 8px 48px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04); }
.pros-list h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.cons-list h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 100, 100, 0.9);
  margin-bottom: 0.25rem;
}
.pro-item, .con-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}
.pro-item img { filter: invert(55%) sepia(60%) saturate(500%) hue-rotate(95deg) brightness(1.1); flex-shrink: 0; margin-top: 1px; }
.con-item img { filter: invert(50%) sepia(80%) saturate(600%) hue-rotate(310deg); flex-shrink: 0; margin-top: 1px; }

/* 30. SCORE BARS
   ─────────────────────────────────────────────────────────────── */
.score-bars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.score-bar-row {
  display: grid;
  grid-template-columns: 1fr 120px 40px;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.score-bar-label { color: var(--text-2); }
.score-bar-track {
  height: 6px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: var(--green);
  border-radius: 999px;
}
.score-bar-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--yellow);
  text-align: right;
  font-size: 0.9rem;
}

/* 31. COMPARE TABLE
   ─────────────────────────────────────────────────────────────── */
.compare-table-wrap,
.table-wrap { overflow-x: auto; margin-top: 1.25rem; }
.table-wrap table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.table-wrap table th {
  text-align: left;
  padding: 0.7rem 1rem;
  background: var(--surface-2);
  color: var(--text-2);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 2px solid var(--border-hi);
}
.table-wrap table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: middle;
  white-space: nowrap;
}
.table-wrap table tr:last-child td { border-bottom: none; }
.table-wrap table td:first-child { font-weight: 500; color: var(--text); }
.table-wrap table tr:hover td { background: var(--surface-2); }
.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.compare-table th {
  text-align: left;
  padding: 0.7rem 1rem;
  background: var(--surface-2);
  color: var(--text-2);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.compare-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr.highlight td { background: var(--green-sub); }
.compare-table td:first-child { font-weight: 500; color: var(--text); }
.compare-score {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
}
.tag-yes { color: var(--green); font-weight: 500; }
.tag-no  { color: var(--muted); }

/* Review hero responsive
   ─────────────────────────────────────────────────────────────── */

/* mobile: centre logo, title, score */
.review-header          { align-items: center; text-align: center; }
.review-logo-wrap       { justify-content: center; }
.review-title-block     { width: 100%; }
.review-tagline         { text-align: center; }
.review-meta-line       { justify-content: center; }
.review-score-block     { justify-content: center; }

@media (min-width: 700px) {
  .review-header        { flex-direction: row; align-items: flex-start; text-align: left; }
  .review-logo-wrap     { justify-content: flex-start; }
  .review-tagline       { text-align: left; }
  .review-meta-line     { justify-content: flex-start; }
  .review-score-block   { justify-content: flex-start; }
  .pros-cons-grid       { grid-template-columns: 1fr 1fr; }
  .fact-strip           { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .fact-strip        { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 900px) {
  .score-bar-row     { grid-template-columns: 1fr 200px 40px; }
}
