/* ============================================================
   CasinoClaude.io — Editorial gambling portal (GamingToday style)
   Light theme • navy chrome • orange CTAs • wide editorial rhythm
   ============================================================ */

:root {
  --bg:        #ffffff;
  --bg-alt:    #f4f6fa;
  --bg-band:   #eef2f7;
  --bg-dark:   #0f2440;
  --bg-darker: #0a1a30;

  --text:       #0f2440;
  --text-body:  #1c2b3f;
  --text-muted: #556579;
  --text-dim:   #7c8aa0;
  --text-invert: #ffffff;

  --border:        #e2e7ef;
  --border-strong: #cfd6e0;
  --border-navy:   rgba(15,36,64,0.12);

  --orange:      #f07800;
  --orange-2:    #ff9226;
  --orange-deep: #c96400;
  --orange-tint: #fff4e6;

  --navy:      #0f2440;
  --navy-2:    #1e5799;
  --navy-tint: #eaf1fb;

  --link:       #0b66c3;
  --link-hover: #084b8f;

  --success: #178f61;
  --danger:  #b23a2e;
  --star:    #ffb500;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-head: 'Barlow Condensed', 'Roboto Condensed', 'Inter', sans-serif;
  --font-serif: 'Roboto Slab', Georgia, 'Times New Roman', serif;

  --max-w: 1220px;
  --max-narrow: 780px;
  --radius: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 2px 6px rgba(15,36,64,0.06);
  --shadow: 0 6px 20px rgba(15,36,64,0.08);
  --shadow-lg: 0 14px 40px rgba(15,36,64,0.12);

  --pink: var(--orange);
  --pink-2: var(--orange-2);
  --pink-deep: var(--orange-deep);
  --purple: var(--navy-2);
  --purple-2: var(--navy-2);
  --gold: var(--orange);
  --accent: var(--navy-2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 20px; }

/* TOP STRIP */
.top-strip { background: var(--bg-darker); color: rgba(255,255,255,0.78); font-family: var(--font-head); font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; border-bottom: 2px solid var(--orange); }
.top-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 8px; padding-bottom: 8px; }
.top-strip .strip-left { display: inline-flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.top-strip .pill { padding: 3px 10px; border-radius: 999px; background: var(--orange); color: #fff; font-weight: 700; letter-spacing: 0.05em; font-size: 11px; }
.top-strip a { color: rgba(255,255,255,0.9); }
.top-strip a:hover { color: #fff; text-decoration: underline; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--bg-dark); border-bottom: 1px solid rgba(255,255,255,0.05); box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; letter-spacing: 0.02em; font-size: 24px; line-height: 1; color: #fff; text-transform: uppercase; flex-shrink: 0; }
.logo img { height: 40px; width: 40px; display: block; }
.logo .logo-text { color: #fff; white-space: nowrap; }
.logo .logo-text .accent { color: var(--orange); }
.logo:hover { text-decoration: none; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav > a, .nav > .has-dropdown > .dropdown-trigger { display: inline-flex; align-items: center; gap: 6px; padding: 22px 14px; color: rgba(255,255,255,0.85); font-family: var(--font-head); font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: none; border: none; cursor: pointer; transition: color 0.2s, background 0.2s; position: relative; }
.nav > a:hover, .nav > .has-dropdown:hover > .dropdown-trigger, .nav > .has-dropdown.open > .dropdown-trigger { color: #fff; background: rgba(255,255,255,0.06); text-decoration: none; }
.nav > a.active { color: #fff; }
.nav > a.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 0; height: 3px; background: var(--orange); }
.dropdown-trigger::after { content: "▾"; font-size: 9px; margin-left: 2px; color: var(--orange); }

.has-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 260px; background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--orange); box-shadow: var(--shadow-lg); padding: 8px; display: none; flex-direction: column; z-index: 50; }
.has-dropdown:hover .dropdown-menu, .has-dropdown.open .dropdown-menu { display: flex; }
.dropdown-menu > a, .dropdown-menu .dd-market > a { padding: 11px 14px; color: var(--text); font-family: var(--font-body); font-size: 14.5px; font-weight: 500; letter-spacing: 0; text-transform: none; border-radius: 6px; display: flex; align-items: center; gap: 10px; transition: background 0.15s, color 0.15s; }
.dropdown-menu > a:hover, .dropdown-menu .dd-market > a:hover { background: var(--bg-alt); color: var(--orange-deep); text-decoration: none; }
.flag-ico-img { width: 22px; height: 22px; border-radius: 3px; box-shadow: 0 1px 2px rgba(0,0,0,0.15); flex-shrink: 0; }

.dd-market { position: relative; }
.dd-market > a { padding-right: 26px; }
.dd-market > a::after { content: "›"; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--orange); font-weight: 700; font-size: 16px; }
.dd-submenu { position: absolute; top: -8px; left: 100%; min-width: 230px; background: #fff; border: 1px solid var(--border); border-left: 3px solid var(--orange); box-shadow: var(--shadow-lg); padding: 8px; display: none; flex-direction: column; gap: 2px; z-index: 60; }
.dd-market:hover .dd-submenu { display: flex; }
.dd-submenu a { padding: 9px 12px; font-size: 13.5px; color: var(--text-body); border-radius: 5px; white-space: nowrap; }
.dd-submenu a:hover { background: var(--bg-alt); color: var(--orange-deep); text-decoration: none; }

.menu-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,0.25); color: #fff; width: 44px; height: 44px; border-radius: 6px; cursor: pointer; font-size: 20px; }
.header-cta { padding: 9px 18px; border-radius: 4px; background: var(--orange); color: #fff !important; font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.2s; flex-shrink: 0; }
.header-cta:hover { background: var(--orange-deep); text-decoration: none; color: #fff; }

@media (max-width: 1000px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; padding: 10px; background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.08); max-height: calc(100vh - 70px); overflow-y: auto; z-index: 90; }
  .nav.open { display: flex; }
  .nav > a, .nav > .has-dropdown > .dropdown-trigger { padding: 14px 16px; justify-content: space-between; width: 100%; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .dropdown-menu { position: static; box-shadow: none; border: none; border-left: 2px solid var(--orange); background: rgba(255,255,255,0.05); border-radius: 0; margin: 4px 0 6px 10px; padding: 4px 0 4px 8px; }
  .dropdown-menu > a, .dropdown-menu .dd-market > a { color: rgba(255,255,255,0.9); border-radius: 4px; }
  .dropdown-menu > a:hover, .dropdown-menu .dd-market > a:hover { background: rgba(255,255,255,0.08); color: #fff; }
  .dd-submenu { position: static; background: transparent; border: none; border-left: 2px solid var(--orange); box-shadow: none; margin: 2px 0 4px 12px; padding: 4px 0 4px 8px; }
  .dd-submenu a { color: rgba(255,255,255,0.72); }
  .dd-submenu a:hover { background: rgba(255,255,255,0.06); color: #fff; }
  .header-cta { padding: 8px 12px; font-size: 12px; }
}

/* PORTAL HERO */
.portal-hero { background: linear-gradient(180deg, #0f2440 0%, #163356 100%); color: #fff; padding: 60px 0 40px; text-align: center; position: relative; overflow: hidden; }
.portal-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 20% 10%, rgba(240,120,0,0.20), transparent 60%), radial-gradient(500px 260px at 85% 90%, rgba(30,87,153,0.30), transparent 60%); pointer-events: none; }
.portal-hero > .container { position: relative; z-index: 1; }
.portal-hero .kicker { display: inline-block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-2); padding: 6px 14px; border: 1px solid rgba(240,120,0,0.4); border-radius: 999px; background: rgba(240,120,0,0.08); margin-bottom: 20px; }
.portal-hero h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; letter-spacing: -0.01em; color: #fff; max-width: 900px; margin: 0 auto 18px; }
.portal-hero h1 .highlight, .portal-hero h1 .grad { color: var(--orange); background: none; -webkit-text-fill-color: var(--orange); }
.portal-hero .lede { font-size: clamp(1rem, 1.4vw, 1.15rem); color: rgba(255,255,255,0.82); max-width: 720px; margin: 0 auto 28px; }

.stat-pills { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 20px 0 6px; }
.stat-pills .pill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; padding: 14px 22px; min-width: 150px; text-align: center; }
.stat-pills .pill .num { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--orange); line-height: 1; letter-spacing: -0.01em; }
.stat-pills .pill .lbl { display: block; margin-top: 6px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.72); }

/* SECTIONS */
.section { padding: 60px 0; }
.section.alt { background: var(--bg-alt); }
.section-eyebrow { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--text); line-height: 1.1; margin: 0 0 14px; letter-spacing: -0.01em; padding: 0; border: none; }
.section-title::after { display: none; }
.section-title::before { display: none; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 720px; margin: 0 0 32px; line-height: 1.55; }
.section-title.center, .section-eyebrow.center, .section-sub.center { text-align: center; margin-left: auto; margin-right: auto; }

/* CATEGORY CARDS */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 20px; }
.cat-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; position: relative; overflow: hidden; color: inherit; text-decoration: none; }
.cat-card::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), var(--orange-2)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); text-decoration: none; }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card .cat-icon { width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--orange-tint); color: var(--orange-deep); font-size: 26px; margin-bottom: 16px; }
.cat-card h3 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--text); letter-spacing: -0.005em; margin: 0 0 8px; }
.cat-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.55; margin: 0 0 14px; }
.cat-card .cat-link { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-deep); }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }

/* MARKET GRID */
.market-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 20px; }
.market-tile { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--border); border-radius: 10px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; color: inherit; }
.market-tile:hover { border-color: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.market-tile img { width: 32px; height: 32px; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,0.15); flex-shrink: 0; }
.market-tile .m-name { display: block; font-family: var(--font-head); font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); line-height: 1.15; }
.market-tile .m-sub { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; }
@media (max-width: 900px) { .market-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .market-grid { grid-template-columns: 1fr; } }

/* TRUST BLOCK */
.trust-block { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; padding: 20px 0; }
.trust-block .trust-list { list-style: none; margin: 16px 0 0; padding: 0; }
.trust-block .trust-list li { padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; gap: 14px; align-items: flex-start; }
.trust-block .trust-list li:last-child { border-bottom: none; }
.trust-block .trust-list .ico { flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px; background: var(--orange-tint); color: var(--orange-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; }
.trust-block .trust-list strong { display: block; font-family: var(--font-head); font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); margin-bottom: 3px; }
.trust-block .trust-list span { display: block; font-size: 14.5px; color: var(--text-muted); line-height: 1.55; }
.trust-block .trust-media { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 30px; text-align: center; }
.trust-block .trust-media .big-num { font-family: var(--font-head); font-size: 4rem; font-weight: 800; color: var(--orange); line-height: 1; }
.trust-block .trust-media .big-lbl { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.trust-block .trust-media hr { border: none; border-top: 1px solid var(--border-strong); margin: 22px 0; }
@media (max-width: 900px) { .trust-block { grid-template-columns: 1fr; } }

/* NEWS FEED */
.news-feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 26px; }
.news-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; }
.news-card .thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-band); }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .thumb img { transform: scale(1.04); }
.news-card .body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.news-card .tag { display: inline-block; align-self: flex-start; padding: 3px 10px; border-radius: 3px; background: var(--orange); color: #fff; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.news-card .tag.guide { background: var(--navy-2); }
.news-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--text); line-height: 1.25; margin: 0 0 10px; letter-spacing: -0.005em; }
.news-card:hover h3 { color: var(--orange-deep); }
.news-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin: 0 0 14px; }
.news-card .meta { margin-top: auto; display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-dim); border-top: 1px solid var(--border); padding-top: 12px; }
.news-card .meta img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.news-card .meta .author { font-weight: 600; color: var(--text-body); }
@media (max-width: 900px) { .news-feed { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-feed { grid-template-columns: 1fr; } }

/* Legacy blog-grid alias so existing blog HTML still renders */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 26px 0 40px; }
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; text-decoration: none; color: inherit; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; }
.blog-card .thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-band); }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .thumb img { transform: scale(1.04); }
.blog-card .body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card .tag { display: inline-block; align-self: flex-start; padding: 3px 10px; border-radius: 3px; background: var(--orange); color: #fff; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.blog-card .tag.guide { background: var(--navy-2); }
.blog-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--text); line-height: 1.25; margin: 0 0 10px; }
.blog-card:hover h3 { color: var(--orange-deep); }
.blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin: 0 0 14px; }
.blog-card .meta { margin-top: auto; display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-dim); border-top: 1px solid var(--border); padding-top: 12px; }
.blog-card .meta .read { color: var(--orange-deep); font-weight: 700; margin-left: auto; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* AS SEEN IN LOGO STRIP */
.logo-strip { padding: 34px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.logo-strip .strip-eyebrow { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.logo-strip .logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px; color: var(--text-dim); font-family: var(--font-head); font-weight: 700; font-size: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.logo-strip .logos span { opacity: 0.55; }

/* MARKET LANDING HERO */
.page-hero { padding: 34px 0 24px; background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%); border-bottom: 1px solid var(--border); }
.breadcrumbs { display: flex; gap: 6px; font-size: 13px; color: var(--text-dim); margin-bottom: 12px; flex-wrap: wrap; justify-content: flex-start; }
.breadcrumbs a { color: var(--link); }
.breadcrumbs .sep { opacity: 0.5; }
.page-hero h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.1; letter-spacing: -0.01em; color: var(--text); margin: 0 0 14px; max-width: 900px; text-align: left; text-transform: none; }
.page-hero .lead { font-size: 1.05rem; color: var(--text-muted); max-width: 800px; margin: 0 0 18px; line-height: 1.6; text-align: left; }

.byline-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; padding: 14px 0 6px; border-top: 1px solid var(--border); margin-top: 10px; font-size: 13.5px; color: var(--text-muted); }
.byline-row .by-author { display: inline-flex; align-items: center; gap: 8px; }
.byline-row .by-author img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-strong); }
.byline-row .by-author strong { color: var(--text); font-weight: 700; font-family: var(--font-body); }
.byline-row .updated { display: inline-flex; align-items: center; gap: 4px; }
.byline-row .sep { color: var(--text-dim); }

.intro-callout { background: var(--navy-tint); border-left: 4px solid var(--navy-2); border-radius: 6px; padding: 18px 22px; margin: 22px 0 8px; font-size: 15px; color: var(--text-body); line-height: 1.6; }
.intro-callout p:last-child { margin-bottom: 0; }

.jump-links { display: flex; gap: 8px; flex-wrap: wrap; margin: 22px 0 6px; padding-bottom: 4px; }
.jump-links a { padding: 7px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--border-strong); color: var(--text-body); font-family: var(--font-head); font-size: 12.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; transition: background 0.15s, color 0.15s, border-color 0.15s; }
.jump-links a:hover { background: var(--orange); border-color: var(--orange); color: #fff; text-decoration: none; }

/* MARKET SUB-NAV */
.market-subnav { background: #fff; border-bottom: 1px solid var(--border); }
.market-subnav .subnav-scroll { display: flex; gap: 4px; overflow-x: auto; padding: 8px 0; -webkit-overflow-scrolling: touch; }
.market-subnav a { flex: 0 0 auto; padding: 10px 16px; color: var(--text-muted); font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; border-bottom: 3px solid transparent; transition: color 0.15s, border-color 0.15s; }
.market-subnav a:hover { color: var(--text); text-decoration: none; }
.market-subnav a.active { color: var(--orange-deep); border-bottom-color: var(--orange); }

/* CONTENT */
.content { padding: 40px 0 60px; }
.content h2, .content h3, .content h4 { font-family: var(--font-head); font-weight: 700; color: var(--text); letter-spacing: -0.005em; line-height: 1.2; text-transform: none; padding: 0; border: none; }
.content h2 { font-size: clamp(1.6rem, 2.6vw, 2rem); margin: 42px 0 14px; }
.content h2:first-of-type { margin-top: 8px; }
.content h2::after, .content h2::before { display: none; }
.content h3 { font-size: 1.3rem; margin: 26px 0 10px; }
.content h4 { font-size: 1.08rem; margin: 20px 0 8px; }
.content p { margin: 0 0 14px; color: var(--text-body); font-size: 16px; line-height: 1.7; }
.content ul, .content ol { margin: 8px 0 16px; padding-left: 22px; color: var(--text-body); }
.content li { margin-bottom: 6px; line-height: 1.6; }
.content li::marker { color: var(--orange); }
.content strong { color: var(--text); font-weight: 700; }
.content a { color: var(--link); border-bottom: 1px solid rgba(11,102,195,0.24); }
.content a:hover { color: var(--link-hover); border-color: var(--link-hover); text-decoration: none; }

/* CASINO CARDS */
.casino-list { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 44px; }
.casino-card { display: grid; grid-template-columns: 60px 180px 1.3fr 1fr auto; gap: 22px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 22px; position: relative; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.casino-card::after { display: none; }
.casino-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-1px); }
.casino-card.is-top { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-tint), var(--shadow); background: linear-gradient(180deg, var(--orange-tint) 0%, #fff 30%); }
.rank-badge { position: static; width: 48px; height: 48px; border-radius: 8px; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 22px; font-weight: 800; box-shadow: 0 3px 10px rgba(240,120,0,0.35); flex-shrink: 0; }
.casino-thumb { width: 100%; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; background: #c5cfdd; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; padding: 6px; position: relative; }
.casino-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.casino-thumb .new-flag { position: absolute; top: 6px; right: 6px; background: var(--orange); color: #fff; padding: 2px 6px; border-radius: 3px; font-family: var(--font-head); font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.casino-info h3 { font-family: var(--font-head); font-size: 1.22rem; font-weight: 700; color: var(--text); margin: 0 0 6px; letter-spacing: -0.005em; text-transform: none; }
.rating { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 4px; background: var(--orange-tint); color: var(--orange-deep); font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.rating::before { content: "★"; color: var(--star); }
.casino-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; font-size: 13.5px; color: var(--text-body); }
.casino-features li { display: flex; gap: 6px; align-items: flex-start; padding: 0; }
.casino-features li::before { content: "✓"; color: var(--success); font-weight: 800; flex-shrink: 0; }
.casino-bonus { display: flex; flex-direction: column; align-items: flex-start; }
.bonus-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.bonus-amount { font-size: 1.02rem; font-weight: 800; color: var(--text); line-height: 1.2; font-family: var(--font-head); overflow-wrap: anywhere; }
.casino-cta { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.casino-cta .btn { min-width: 150px; }
.casino-cta .review-link { font-size: 12.5px; color: var(--link); text-align: center; }
.casino-cta .review-link:hover { color: var(--link-hover); text-decoration: underline; }
.payment-icons { display: flex; gap: 4px; justify-content: center; flex-wrap: wrap; margin-top: 4px; }
.payment-icons img { height: 18px; width: auto; opacity: 0.85; background: transparent; }

@media (max-width: 900px) {
  .casino-card { grid-template-columns: 44px 120px 1fr; grid-template-areas: "rank thumb info" "bonus bonus bonus" "cta cta cta"; padding: 16px; gap: 12px; }
  .rank-badge { grid-area: rank; width: 40px; height: 40px; font-size: 18px; }
  .casino-thumb { grid-area: thumb; }
  .casino-info { grid-area: info; }
  .casino-bonus { grid-area: bonus; margin-top: 8px; }
  .casino-cta { grid-area: cta; }
}
@media (max-width: 500px) { .casino-card { grid-template-columns: 40px 90px 1fr; } .rank-badge { width: 34px; height: 34px; font-size: 15px; } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border-radius: 4px; font-family: var(--font-head); font-weight: 700; font-size: 13.5px; letter-spacing: 0.09em; text-transform: uppercase; cursor: pointer; border: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; text-align: center; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-deep); color: #fff; text-decoration: none; box-shadow: 0 4px 14px rgba(240,120,0,0.35); }
.btn-secondary { background: #fff; color: var(--text); border: 1px solid var(--border-strong); }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange-deep); text-decoration: none; }
.btn-block { width: 100%; }

/* TABLES */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); margin: 20px 0 28px; background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 520px; }
table thead { background: var(--bg-dark); color: #fff; }
table th { text-align: left; padding: 12px 16px; font-family: var(--font-head); font-weight: 700; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; border: none; }
table td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: top; color: var(--text-body); }
table tr:nth-child(even) td { background: var(--bg-alt); }
table tbody tr:hover td { background: var(--orange-tint); }
table td strong { color: var(--text); }

/* TOC */
.toc { background: var(--bg-alt); border: 1px solid var(--border); border-left: 3px solid var(--orange); border-radius: 6px; padding: 18px 22px; margin: 10px 0 26px; }
.toc .toc-title { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin: 0 0 10px; padding: 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.toc .toc-title::after { content: "▾"; font-size: 12px; color: var(--orange); }
.toc.is-collapsed .toc-title::after { transform: rotate(-90deg); }
.toc.is-collapsed ol, .toc.is-collapsed ul { display: none; }
.toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 30px; counter-reset: toc; }
.toc ol li { margin: 6px 0; font-size: 14.5px; break-inside: avoid; counter-increment: toc; padding-left: 6px; }
.toc a { color: var(--link); border: none; }
.toc a:hover { color: var(--link-hover); }
@media (max-width: 600px) { .toc ol { columns: 1; } }

/* FAQ */
.faq-accordion { display: flex; flex-direction: column; gap: 8px; margin: 16px 0 32px; }
details.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 6px; transition: border-color 0.15s; }
details.faq-item:hover { border-color: var(--border-strong); }
details.faq-item[open] { border-color: var(--orange); }
details.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 14px; padding: 16px 18px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--text); letter-spacing: -0.005em; text-transform: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "+"; color: var(--orange); font-size: 20px; line-height: 1; flex: 0 0 auto; transition: transform 0.2s; }
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item .faq-answer { padding: 0 18px 18px; color: var(--text-body); font-size: 15px; line-height: 1.65; }
details.faq-item .faq-answer p { margin: 0 0 10px; }

/* PROS/CONS */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0 30px; }
.pros-cons > div { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.pros-cons .pros { border-top: 3px solid var(--success); }
.pros-cons .cons { border-top: 3px solid var(--danger); }
.pros-cons h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 14px; margin: 0 0 12px; padding: 0; }
.pros-cons ul { list-style: none; margin: 0; padding: 0; }
.pros-cons li { display: flex; gap: 8px; padding: 6px 0; font-size: 14.5px; border-bottom: 1px dashed var(--border); }
.pros-cons li:last-child { border-bottom: none; }
.pros-cons .pros li::before { content: "✓"; color: var(--success); font-weight: 800; flex-shrink: 0; }
.pros-cons .cons li::before { content: "✕"; color: var(--danger); font-weight: 800; flex-shrink: 0; }
@media (max-width: 720px) { .pros-cons { grid-template-columns: 1fr; } }

/* Callouts */
.callout { background: var(--orange-tint); border-left: 3px solid var(--orange); border-radius: 4px; padding: 16px 20px; margin: 20px 0; }
.callout h3, .callout h4 { font-family: var(--font-head); font-size: 15px; margin: 0 0 6px; color: var(--text); text-transform: uppercase; letter-spacing: 0.04em; padding: 0; }
.callout.is-info { background: var(--navy-tint); border-color: var(--navy-2); }
.callout.is-warning { background: var(--bg-alt); border-color: var(--text-muted); }
.callout p:last-child { margin: 0; }

/* Steps */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 20px 0 30px; }
.step-box { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.step-box .step-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 15px; margin-bottom: 10px; }
.step-box h3 { font-family: var(--font-head); font-size: 15px; margin: 0 0 6px; text-transform: uppercase; letter-spacing: 0.04em; padding: 0; }
.step-box p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Feature mini cards */
.feature-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin: 20px 0 30px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 18px; }
.feature-card .ico { font-size: 22px; margin-bottom: 8px; display: block; color: var(--orange); }
.feature-card h3 { font-family: var(--font-head); font-size: 15px; margin: 0 0 4px; text-transform: uppercase; letter-spacing: 0.04em; padding: 0; }
.feature-card p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Feat cards */
.featured-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin: 26px 0 40px; }
.feat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: box-shadow 0.2s, transform 0.2s; position: relative; }
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feat-card.is-hot { border-color: var(--orange); background: linear-gradient(180deg, var(--orange-tint), #fff); }
.feat-thumb { width: 76px; height: 76px; border-radius: 12px; background: var(--bg-alt); padding: 10px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.feat-thumb img { max-width: 100%; max-height: 100%; }
.feat-card h3 { font-family: var(--font-head); font-size: 1.15rem; margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text); }
.feat-list { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--text-muted); }
.feat-list li { display: flex; gap: 6px; }
.feat-list .ico { color: var(--orange); flex-shrink: 0; }
.feat-flame { position: absolute; top: 12px; right: 12px; font-size: 18px; }

/* Welcome / score */
.welcome-card { background: linear-gradient(135deg, var(--navy-tint), var(--orange-tint)); border: 1px solid var(--orange); border-radius: var(--radius-lg); padding: 28px; text-align: center; margin: 22px 0 36px; }
.welcome-card .eyebrow-label { display: block; font-family: var(--font-head); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 6px; }
.welcome-card h2 { font-family: var(--font-head); font-size: 1.6rem; color: var(--text); margin: 0 0 10px; padding: 0; border: none; }
.welcome-card h2::after { display: none; }
.welcome-card .terms { font-size: 13px; color: var(--text-muted); margin-top: 14px; }

.score-dashboard { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: center; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; margin: 20px 0 30px; }
.score-overall { text-align: center; padding: 14px; background: #fff; border-radius: 10px; border: 1px solid var(--border); }
.score-overall .num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--orange); line-height: 1; }
.score-overall .max { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.score-overall .stars { color: var(--star); margin-top: 4px; letter-spacing: 2px; }
.score-breakdown { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.score-item { display: flex; flex-direction: column; gap: 4px; }
.score-item .label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.score-item .bar { height: 6px; background: var(--border); border-radius: 4px; overflow: hidden; }
.score-item .bar > span { display: block; height: 100%; background: var(--orange); border-radius: 4px; }
.score-item .val { font-size: 14px; font-weight: 700; color: var(--text); }
@media (max-width: 720px) { .score-dashboard { grid-template-columns: 1fr; } }

.review-banner { margin: 6px 0 20px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.review-banner img { width: 100%; height: auto; display: block; }

.prose-img { margin: 8px 0 22px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.prose-img figcaption { font-size: 13px; color: var(--text-dim); padding: 8px 14px; background: var(--bg-alt); border-top: 1px solid var(--border); }

/* Article layout */
.article { max-width: 820px; margin: 0 auto; }
.article-hero { padding: 40px 0 12px; }
.article-hero .tag { display: inline-block; padding: 4px 12px; border-radius: 3px; background: var(--orange); color: #fff; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.article-hero .tag.guide { background: var(--navy-2); }
.article-hero h1 { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; color: var(--text); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 14px; text-transform: none; }
.article-hero .article-meta { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--text-muted); flex-wrap: wrap; }
.article-hero .article-meta img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-strong); }
.article-cover { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin: 20px 0 30px; }
.article-cover img { width: 100%; height: auto; display: block; }
.article-body p { font-size: 17px; line-height: 1.75; color: var(--text-body); margin-bottom: 18px; }
.article-body h2 { margin-top: 34px; }
.article-body h3 { margin-top: 24px; }
.article-body img { border-radius: 8px; border: 1px solid var(--border); margin: 10px 0 22px; }
.article-body ul li::marker, .article-body ol li::marker { color: var(--orange); }

/* Author box */
.author-box { display: flex; gap: 18px; align-items: flex-start; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; margin: 20px 0; }
.author-box .author-avatar { width: 84px; height: 84px; border-radius: 12px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--border-strong); }
.author-box .author-eyebrow { display: block; font-family: var(--font-head); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 3px; }
.author-box .author-name { font-family: var(--font-head); font-size: 1.2rem; margin: 0; color: var(--text); }
.author-box .author-role { display: block; font-size: 13px; color: var(--orange-deep); margin: 2px 0 8px; font-weight: 600; }
.author-box .author-bio { font-size: 14.5px; color: var(--text-body); line-height: 1.6; margin: 0; }
.author-name-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.author-email-btn { display: inline-flex; align-items: center; gap: 4px; padding: 5px 12px; border-radius: 4px; background: #fff; border: 1px solid var(--border-strong); color: var(--link); font-size: 12.5px; font-weight: 600; }
.author-email-btn:hover { background: var(--orange-tint); border-color: var(--orange); color: var(--orange-deep); text-decoration: none; }
@media (max-width: 560px) { .author-box { flex-direction: column; align-items: flex-start; } }

.rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.rating-row .rating { margin: 0; }
.new-badge { display: inline-block; padding: 3px 8px; border-radius: 3px; background: var(--orange); color: #fff; font-family: var(--font-head); font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }

/* Contact form */
.contact-form { max-width: 660px; display: flex; flex-direction: column; gap: 14px; margin: 18px 0 30px; }
.contact-form .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .form-row { display: flex; flex-direction: column; gap: 6px; }
.contact-form label { font-family: var(--font-head); font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text); font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 14px; border-radius: 6px; border: 1px solid var(--border-strong); background: #fff; font-family: inherit; font-size: 15px; color: var(--text); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-tint); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .form-check label { display: flex; gap: 8px; align-items: flex-start; text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); font-size: 13.5px; }
.contact-form button[type="submit"] { align-self: flex-start; }
@media (max-width: 600px) { .contact-form .form-grid-2 { grid-template-columns: 1fr; } }

/* FOOTER */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.72); padding: 50px 0 0; margin-top: 40px; border-top: 3px solid var(--orange); }
.site-footer .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 0; }
.site-footer .footer-grid h3, .site-footer .footer-grid h4 { font-family: var(--font-head); color: #fff; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; padding: 0; border: none; }
.site-footer .footer-grid p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.72); margin-bottom: 10px; }
.site-footer .footer-grid ul { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-grid li { padding: 4px 0; font-size: 14px; }
.site-footer .footer-grid a { color: rgba(255,255,255,0.78); display: inline-flex; align-items: center; gap: 8px; }
.site-footer .footer-grid a:hover { color: var(--orange-2); text-decoration: none; }
.site-footer .footer-grid .flag-ico-img { width: 18px; height: 18px; vertical-align: middle; margin: 0; }
.site-footer .logo { color: #fff; }
.site-footer .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 18px 0; font-size: 12.5px; color: rgba(255,255,255,0.54); }
.responsible-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 4px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; margin-top: 10px; }
@media (max-width: 960px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 620px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .site-footer .footer-grid { grid-template-columns: 1fr; } }

/* Legacy overrides */
.editorial-hero, .fact-strip, .market-tiles, .editorial-columns { display: block; }
.editorial-hero { padding: 40px 0 24px; background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%); border-bottom: 1px solid var(--border); text-align: left; }
.editorial-hero .container { text-align: left; }
.editorial-hero h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.1; letter-spacing: -0.01em; color: var(--text); margin: 8px 0 12px; text-align: left; text-transform: none; }
.editorial-hero h1 .grad { color: var(--orange); background: none; -webkit-text-fill-color: var(--orange); }
.editorial-hero .kicker { display: inline-block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); }
.editorial-hero .kicker::before { display: none; }
.editorial-hero .lede { color: var(--text-muted); max-width: 780px; font-size: 1.05rem; margin-bottom: 18px; }
.editorial-hero .stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin: 20px 0 4px; }
.editorial-hero .stat { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 16px; text-align: center; }
.editorial-hero .stat .num { display: block; font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--orange); line-height: 1; }
.editorial-hero .stat .lbl { display: block; margin-top: 6px; font-family: var(--font-head); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }

.market-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 8px 0 28px; }
.market-tiles .market-tile { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: #fff; border: 1px solid var(--border); border-radius: 10px; }
.market-tiles .market-tile:hover { border-color: var(--navy-2); box-shadow: var(--shadow); }
@media (max-width: 860px) { .market-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .market-tiles { grid-template-columns: 1fr; } }

.editorial-columns { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; align-items: flex-start; margin: 24px 0 40px; }
.editorial-columns > aside { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; position: sticky; top: 90px; }
.editorial-columns > aside h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.05em; font-size: 13px; margin-bottom: 12px; color: var(--text); padding: 0; }
.editorial-columns > aside ul { list-style: none; padding: 0; margin: 0; }
.editorial-columns > aside li { padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 14px; }
.editorial-columns > aside li:last-child { border-bottom: none; }
.editorial-columns > aside li a { color: var(--link); }
@media (max-width: 900px) { .editorial-columns { grid-template-columns: 1fr; } .editorial-columns > aside { position: static; } }

.list-heading { font-family: var(--font-head); font-size: clamp(1.4rem, 2.2vw, 1.8rem); font-weight: 700; letter-spacing: -0.005em; color: var(--text); margin: 26px 0 12px; text-align: left; text-transform: none; }
.list-heading .accent { color: var(--orange); }

.fact-strip { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 8px; }
.fact-strip .fact { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 4px; background: var(--bg-alt); border: 1px solid var(--border); font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); }
.fact-strip .fact strong { color: var(--text); }
.fact-strip .fact .dot-red { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin: 20px 0 26px; }
.stat-row .stat { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 16px; text-align: center; }
.stat-row .stat .num { display: block; font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-row .stat .lbl { display: block; margin-top: 6px; font-family: var(--font-head); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }

.reveal { opacity: 1; transform: none; }
.hero { padding: 40px 0 24px; text-align: left; }
.hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--text); text-transform: none; letter-spacing: -0.01em; }
.hero h1 .grad { color: var(--orange); background: none; -webkit-text-fill-color: var(--orange); }
.hero p.subtitle, .hero .lede { color: var(--text-muted); max-width: 780px; margin: 0 0 24px; }
.hero .eyebrow, .eyebrow { display: inline-block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); padding: 5px 12px; background: var(--orange-tint); border-radius: 4px; border: none; margin-bottom: 14px; }
.blob { display: none; }

h1 img.emoji, h2 img.emoji, .flag-emoji img.emoji { display: inline-block; height: 0.9em; width: auto; vertical-align: -0.12em; margin: 0 0.06em; }
.flag-inline { height: 0.72em; width: 0.72em; border-radius: 2px; display: inline-block; vertical-align: -0.05em; margin: 0 0.08em; box-shadow: 0 1px 2px rgba(0,0,0,0.2); }

/* ====== PATCHES v2.1 ====== */

/* Logo strip: more visible eyebrow + larger flag row */
.logo-strip { padding: 40px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.logo-strip .strip-eyebrow { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 22px; position: relative; display: inline-block; padding: 0 16px; }
.logo-strip .strip-eyebrow::before,
.logo-strip .strip-eyebrow::after { content: ""; position: absolute; top: 50%; width: 40px; height: 1px; background: var(--border-strong); }
.logo-strip .strip-eyebrow::before { right: 100%; }
.logo-strip .strip-eyebrow::after { left: 100%; }
.logo-strip .logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; }
.logo-strip .logos span { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 1; transition: border-color 0.2s, transform 0.2s; }
.logo-strip .logos span:hover { border-color: var(--orange); transform: translateY(-2px); }

/* Casino CTA button: fixed size across every card */
.casino-cta { min-width: 190px; }
.casino-cta .btn { width: 190px; min-width: 190px; padding: 12px 18px; font-size: 13px; letter-spacing: 0.07em; }

@media (max-width: 900px) {
  .casino-cta { min-width: 0; }
  .casino-cta .btn { width: 100%; min-width: 0; }
}

/* TOC: title clickable + arrow in top-right */
.toc .toc-title { justify-content: space-between; align-items: center; user-select: none; -webkit-user-select: none; }
.toc .toc-title::after { content: "▾"; position: static; right: auto; top: auto; transform: none; font-size: 13px; color: var(--orange); flex: 0 0 auto; transition: transform 0.2s ease; }
.toc.is-collapsed .toc-title::after { transform: rotate(-90deg); }
.toc.is-collapsed ol, .toc.is-collapsed ul { display: none; }
.toc.is-collapsed .toc-title { margin-bottom: 0; }

/* Mobile: hide top-strip completely, keep only header (logo + hamburger) */
@media (max-width: 900px) {
  .top-strip { display: none !important; }
}

/* Portal-hero H1 wrap tuning */
.portal-hero h1 { line-height: 1.08; }
.portal-hero h1 .highlight { color: var(--orange); }

/* Kill leftover editorial-hero on non-home pages if it exists — page-hero replaces it */
.page-hero + .market-subnav { border-top: 1px solid var(--border); }

/* ====== PATCHES v2.2 ====== */

/* Casino CTA: fixed narrow column, button + payments centered vertically stacked */
.casino-cta {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.casino-cta .btn {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 12px 14px;
  font-size: 13px;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.casino-cta .review-link { font-size: 12.5px; text-align: center; }
.payment-icons {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: hidden;
}
.payment-icons img { height: 20px; width: auto; opacity: 0.9; flex-shrink: 0; }
.casino-card { grid-template-columns: 60px 180px 1.3fr 1fr 200px; }

@media (max-width: 900px) {
  .casino-cta { width: 100%; max-width: none; }
  .casino-card { grid-template-columns: 44px 120px 1fr; }
}

/* FAQ: larger, more readable font */
details.faq-item summary { font-size: 16.5px; padding: 18px 22px; }
details.faq-item .faq-answer { font-size: 16px; padding: 0 22px 20px; line-height: 1.7; }
details.faq-item .faq-answer p { font-size: 16px; margin-bottom: 12px; }
details.faq-item summary::after { font-size: 22px; }

/* TOC arrow: prominent orange chip top-right */
.toc .toc-title { position: relative; padding-right: 40px; }
.toc .toc-title::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: var(--orange);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s;
  box-shadow: 0 2px 6px rgba(240,120,0,0.3);
}
.toc .toc-title:hover::after { background: var(--orange-deep); }
.toc.is-collapsed .toc-title::after { transform: translateY(-50%) rotate(-90deg); }
