/* ================================================================
   styles.css — PayID AU
   ================================================================ */

:root {
  --primary:         #10B981;
  --primary-light:   #34D399;
  --primary-dark:    #059669;
  --bg:              #0F172A;
  --card-bg:         #1E293B;
  --border:          #334155;
  --text:            #F1F5F9;
  --text-light:      #94A3B8;
  --nav-bg:          #0a0f1e;
  --hero-gradient:   linear-gradient(135deg, #0a0f1e 0%, #0d2d1e 60%, #064e3b 100%);
  --footer-gradient: linear-gradient(135deg, #0a0f1e, #064e3b);
  --shadow:          0 2px 12px rgba(16,185,129,.08);
  --shadow-hover:    0 6px 24px rgba(16,185,129,.18);
  --radius:          10px;
  --btn-gradient:    linear-gradient(90deg, #064e3b, #10B981);
}

/* ----------------------------------------------------------------
   Reset & Base
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { overflow-x: clip; scroll-behavior: smooth; font-size: 16px; }
body  { overflow-x: clip; font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        background: var(--bg); color: var(--text); line-height: 1.65; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--primary-light); }
ul    { list-style: none; }

h1 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); line-height: 1.25; font-weight: 800; }
h2 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }

/* ----------------------------------------------------------------
   Navigation
   ---------------------------------------------------------------- */
.navbar {
  position: sticky; top: 0; z-index: 900;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navbar .container {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; gap: 1rem;
}
.nav-brand {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none;
}
.nav-logo { width: 36px; height: 36px; flex-shrink: 0; }
.brand-name { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; }
.brand-name .p1 { color: #ffffff; }
.brand-name .p2 { color: var(--primary-light); }

.nav-links {
  display: flex; align-items: center; gap: .25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75); font-size: .92rem; font-weight: 500;
  padding: .45rem .75rem; border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); text-decoration: none; }
.nav-links .nav-cta a {
  background: var(--btn-gradient);
  color: #fff; font-weight: 700; padding: .45rem 1.1rem;
}
.nav-links .nav-cta a:hover { opacity: .9; text-decoration: none; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   Hero
   ---------------------------------------------------------------- */
.hero {
  background: var(--hero-gradient);
  padding: 3.5rem 0 3rem;
  color: #fff;
}
.hero-content { max-width: 780px; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero-meta {
  display: flex; align-items: center; gap: 1rem;
  font-size: .85rem; color: rgba(255,255,255,.65);
  margin-bottom: 1.25rem; flex-wrap: wrap;
}
.hero-meta i { color: var(--primary-light); }
.hero-text p { color: rgba(255,255,255,.85); }
.hero-more { display: none; }
.hero-more.visible { display: block; }
.btn-read-more {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: .75rem;
  background: var(--btn-gradient);
  color: #fff; border: none; cursor: pointer;
  padding: .55rem 1.2rem; border-radius: 6px;
  font-size: .9rem; font-weight: 600;
  transition: opacity .2s;
}
.btn-read-more:hover { opacity: .88; }

/* ----------------------------------------------------------------
   Hero Badge
   ---------------------------------------------------------------- */
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.35);
  color: var(--primary-light); padding: .3rem .9rem; border-radius: 20px;
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 1.2rem;
}

/* ----------------------------------------------------------------
   Casino Showcase (cv-cards)
   ---------------------------------------------------------------- */
.showcase { padding: 2.5rem 0; background: var(--card-bg); }
.showcase-title {
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 1.25rem; color: var(--text);
}
.cv-list { display: flex; flex-direction: column; gap: .75rem; }

.cv-card {
  display: flex; align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: box-shadow .2s, border-color .2s;
}
.cv-card:hover { box-shadow: var(--shadow-hover); border-color: var(--primary-dark); }

.cv-logo { max-width: 100px; max-height: 50px; object-fit: contain; width: auto; }
.cv-name { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.85); text-align: center; }
.cv-tc { font-size: .68rem; color: var(--text-light); line-height: 1.3; }
.cv-review-link { font-size: .76rem; color: var(--primary); }

/* ----------------------------------------------------------------
   Showcase — columns
   ---------------------------------------------------------------- */
.cv-col {
  display: flex; flex-direction: column;
  justify-content: center; padding: 1rem 1.15rem;
  border-right: 1px solid var(--border);
}
.cv-col:last-child { border-right: none; }
.cv-col-label {
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--text-light); margin-bottom: .38rem;
}

.cv-col-brand {
  width: 160px; flex-shrink: 0;
  background: linear-gradient(160deg, #0a1628 0%, #0d2d1e 100%);
  align-items: center; padding: 1rem .75rem; gap: .5rem;
}
.cv-col-bonus { flex: 0 0 195px; }
.cv-col-hl    { flex: 1; }
.cv-col-pay   { flex: 0 0 155px; }
.cv-col-action {
  flex: 0 0 170px; background: rgba(16,185,129,.04);
  align-items: center; gap: .75rem;
}

.cv-rank {
  font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em;
}

/* badge */
.cv-badge {
  display: inline-block; margin-top: .4rem;
  background: var(--primary-dark); color: #fff;
  font-size: .65rem; font-weight: 700; padding: .15rem .4rem; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .05em;
}
.cv-badge.top    { background: #78350f; color: #fef3c7; }
.cv-badge.hot    { background: #7f1d1d; color: #fee2e2; }
.cv-badge.new    { background: #14532d; color: #dcfce7; }
.cv-badge.sport  { background: #0c4a6e; color: #e0f2fe; }
.cv-badge.vip    { background: #3b0764; color: #ede9fe; }
.cv-badge.nowager{ background: #581c87; color: #fdf4ff; }

/* bonus column */
.cv-bonus {
  font-size: 1.05rem; font-weight: 800;
  color: var(--primary-light); line-height: 1.25;
}
.cv-bonus-sub { font-size: .72rem; color: var(--text-light); line-height: 1.35; }

/* highlights column */
.cv-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .32rem .6rem;
}
.cv-hl {
  display: flex; align-items: center; gap: .38rem;
  font-size: .82rem; color: var(--text); white-space: nowrap;
}
.cv-hl i { color: var(--primary); font-size: .7rem; flex-shrink: 0; }
.cv-providers { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .4rem; }
.cv-prov {
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 5px; padding: .14rem .45rem;
  font-size: .68rem; color: var(--text-light); white-space: nowrap; font-weight: 500;
}

/* payments column */
.cv-pay-list { display: flex; flex-direction: column; gap: .1rem; }
.cv-pay-item {
  display: flex; align-items: center; gap: .38rem;
  font-size: .82rem; color: var(--text); white-space: nowrap;
  padding: .15rem 0;
}
.cv-pay-item i { color: var(--primary); font-size: .7rem; flex-shrink: 0; }
.pay-note {
  font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
  background: rgba(245,158,11,.15); color: #f59e0b;
  border: 1px solid rgba(245,158,11,.35);
  border-radius: 3px; padding: .05rem .3rem; margin-left: .25rem; white-space: nowrap;
}

/* action column */
.cv-stars { display: flex; align-items: center; gap: .15rem; }
.cv-stars i { font-size: .65rem; color: #ffc107; }
.cv-stars span { font-size: .75rem; color: var(--text-light); }
.btn-play {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  width: 100%;
  background: var(--btn-gradient);
  color: #fff; text-align: center;
  padding: .65rem 1rem; border-radius: 100px;
  font-size: .85rem; font-weight: 700;
  transition: opacity .2s;
  text-decoration: none;
}
.btn-play:hover { opacity: .85; color: #fff; text-decoration: none; }

/* ----------------------------------------------------------------
   Content Layout
   ---------------------------------------------------------------- */
.content-wrap { padding: 2.5rem 0 3rem; }
.content-layout {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 2rem;
  align-items: start;
}
.content-layout > main,
.content-layout > aside {
  min-width: 0;
  max-width: 100%;
}

/* ----------------------------------------------------------------
   Sidebar / TOC
   ---------------------------------------------------------------- */
.sidebar { position: sticky; top: 80px; }
.sidebar-toc {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.toc-title {
  font-size: .8rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--primary);
  margin-bottom: .9rem; font-weight: 800;
  display: flex; align-items: center; gap: 7px;
}
.toc-list { display: flex; flex-direction: column; gap: .1rem; }
.toc-link {
  display: block; font-size: .84rem; color: var(--text);
  padding: .3rem .5rem; border-radius: 5px;
  transition: color .15s, background .15s;
}
.toc-link:hover { color: var(--primary); background: rgba(16,185,129,.07); text-decoration: none; }
.toc-link.active { color: var(--primary); font-weight: 600; background: rgba(16,185,129,.1); }

.sidebar-cta {
  margin-top: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem; text-align: center;
}
.sidebar-cta p { font-size: .82rem; color: var(--text-light); margin-bottom: .75rem; }

/* ----------------------------------------------------------------
   Content Sections
   ---------------------------------------------------------------- */
.content-section { margin-bottom: 2.5rem; }
.content-section::after { content: ""; display: table; clear: both; }
.content-section p { color: var(--text); }
.content-section ul { list-style: disc; padding-left: 1.4rem; margin-bottom: .9rem; }
.content-section ul li { margin-bottom: .3rem; font-size: .95rem; color: var(--text-light); }
.content-section h3 { margin: 1.25rem 0 .5rem; color: var(--text); }

.section-heading {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.25rem;
}
.sec-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--btn-gradient);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sec-icon i { color: #fff; font-size: 1rem; }

.sec-visual {
  float: right; width: 260px; margin: 0 0 1.2rem 1.8rem;
  border-radius: var(--radius); overflow: hidden; line-height: 0; flex-shrink: 0;
}
.sec-visual img { width: 100%; height: 170px; object-fit: cover; display: block; }

/* ----------------------------------------------------------------
   Feature Grid
   ---------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-top: 3px solid var(--primary);
  transition: border-color .2s, box-shadow .2s;
}
.feature-card:hover { box-shadow: var(--shadow-hover); }
.feature-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--btn-gradient);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
}
.feature-icon i { color: #fff; font-size: 1.1rem; }
.feature-title { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
.feature-text { font-size: .85rem; color: var(--text-light); line-height: 1.5; margin: 0; }

/* ----------------------------------------------------------------
   Check List
   ---------------------------------------------------------------- */
.check-list { display: flex; flex-direction: column; gap: .55rem; margin-top: .75rem; }
.check-item {
  display: flex; align-items: flex-start; gap: .7rem;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 7px; padding: .7rem 1rem;
}
.check-item i { color: var(--primary); flex-shrink: 0; margin-top: .15rem; font-size: .9rem; }
.check-item span { font-size: .9rem; color: var(--text); }

/* ----------------------------------------------------------------
   Pros / Cons grid
   ---------------------------------------------------------------- */
.pros-cons-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: .75rem;
}
.pros-col, .cons-col {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.1rem;
}
.pros-col h4, .cons-col h4 {
  font-size: .85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: .7rem;
}
.pros-col h4 { color: var(--primary); }
.cons-col h4 { color: #f87171; }
.pros-col li, .cons-col li { font-size: .88rem; padding: .25rem 0; color: var(--text-light); }
.pros-col li::before { content: "✓ "; color: var(--primary); font-weight: 700; }
.cons-col li::before { content: "✗ "; color: #f87171; font-weight: 700; }

/* ----------------------------------------------------------------
   Pros / Cons boxes (inside review cards)
   ---------------------------------------------------------------- */
.pros-box { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3); border-radius: var(--radius); padding: 1.2rem; }
.cons-box { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); border-radius: var(--radius); padding: 1.2rem; }
.pros-box h3 { color: var(--primary); margin-top: 0; margin-bottom: .5rem; font-size: 1rem; }
.cons-box h3 { color: #f87171; margin-top: 0; margin-bottom: .5rem; font-size: 1rem; }
.pc-list { list-style: none; }
.pc-list li { display: flex; align-items: flex-start; gap: 8px; padding: .38rem 0; font-size: .9rem; color: var(--text-light); }
.pc-list li i { margin-top: 3px; flex-shrink: 0; }
.pros-box .pc-list li i { color: var(--primary); }
.cons-box .pc-list li i { color: #f87171; }
.pros-box .pc-list li:not(:has(i))::before { content: "✓"; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.cons-box .pc-list li:not(:has(i))::before { content: "✗"; color: #f87171; font-weight: 700; flex-shrink: 0; }

/* ----------------------------------------------------------------
   Tips Grid
   ---------------------------------------------------------------- */
.tips-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin-top: 1rem;
}
.tip-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem;
}
.tip-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--btn-gradient);
  color: #fff; font-size: .78rem; font-weight: 700;
  margin-bottom: .6rem;
}
.tip-title { font-size: .92rem; font-weight: 700; margin-bottom: .35rem; color: var(--text); }
.tip-text { font-size: .83rem; color: var(--text-light); line-height: 1.5; margin: 0; }

/* ----------------------------------------------------------------
   Tables
   ---------------------------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table,
.type-table {
  width: 100%; border-collapse: collapse; min-width: 500px;
}
.comparison-table th,
.type-table th {
  background: var(--btn-gradient);
  color: #fff; text-align: left;
  padding: .7rem 1rem; font-size: .82rem; font-weight: 700;
}
.comparison-table td,
.type-table td {
  padding: .65rem 1rem; font-size: .88rem;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.comparison-table tr:last-child td,
.type-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td,
.type-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.tbl-cta {
  display: inline-block;
  background: var(--btn-gradient);
  color: #fff; font-size: .78rem; font-weight: 700;
  padding: .35rem .8rem; border-radius: 5px;
  transition: opacity .2s;
}
.tbl-cta:hover { opacity: .88; text-decoration: none; }

/* ----------------------------------------------------------------
   Casino Review Cards
   ---------------------------------------------------------------- */
.casino-reviews { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 1rem; }

.casino-review-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card-bg);
}
.crv-banner { line-height: 0; overflow: hidden; }
.crv-banner img { width: 100%; height: 180px; object-fit: cover; display: block; }
.crv-banner-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #0a1628 0%, #0d2d1e 100%);
  display: flex; align-items: center; justify-content: center;
}
.crv-banner-placeholder span { color: rgba(16,185,129,.4); font-size: .85rem; }

.crv-header {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(16,185,129,.05);
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.crv-brand {
  display: flex; align-items: center; gap: .9rem;
}
.crv-logo { max-width: 90px; max-height: 44px; object-fit: contain; }
.crv-name { font-size: 1rem; font-weight: 700; color: var(--text); }
.crv-stars { display: flex; align-items: center; gap: .15rem; margin-top: .25rem; }
.crv-stars i { font-size: .7rem; color: #ffc107; }
.crv-rating-text { font-size: .75rem; color: var(--text-light); margin-left: .3rem; }

.crv-bonus { text-align: right; }
.crv-bonus-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); }
.crv-bonus-amount { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-top: .15rem; }

.crv-body { padding: 1.4rem; }
.crv-body > p { font-size: .9rem; margin-bottom: 1rem; color: var(--text-light); }

.crv-details {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: .5rem; margin-bottom: 1.1rem;
}
.crv-detail {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 7px; padding: .5rem .6rem; text-align: center;
}
.crv-detail-label { font-size: .66rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); margin-bottom: .2rem; }
.crv-detail-val { font-size: .82rem; font-weight: 700; color: var(--text); }

.crv-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.4rem; background: rgba(16,185,129,.04);
  border-top: 1px solid var(--border);
  gap: 1rem;
}
.crv-disclaimer { font-size: .72rem; color: var(--text-light); line-height: 1.4; max-width: 560px; }
.btn-claim {
  flex-shrink: 0;
  background: var(--btn-gradient);
  color: #fff; padding: .6rem 1.4rem; border-radius: 7px;
  font-size: .88rem; font-weight: 700; white-space: nowrap;
  transition: opacity .2s, transform .2s;
  text-decoration: none; display: inline-block;
}
.btn-claim:hover { opacity: .88; transform: translateY(-2px); text-decoration: none; color: #fff; box-shadow: 0 6px 20px rgba(16,185,129,.3); }

/* ----------------------------------------------------------------
   Comparison Cards (cmp)
   ---------------------------------------------------------------- */
.cmp-section { margin-bottom: 2.5rem; }
.cmp-grid { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.cmp-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.cmp-header {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--btn-gradient);
  padding: .85rem 1.2rem; gap: 1rem;
}
.cmp-brand { display: flex; align-items: center; gap: .75rem; }
.cmp-logo { max-width: 70px; max-height: 36px; object-fit: contain; }
.cmp-casino-name { font-size: .95rem; font-weight: 700; color: #fff; }
.cmp-rating { font-size: .8rem; color: rgba(255,255,255,.75); }
.cmp-info { text-align: right; }
.cmp-min-dep { font-size: .72rem; color: rgba(255,255,255,.7); }
.cmp-bonus-val { font-size: .92rem; font-weight: 700; color: #fff; }

.cmp-body {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--card-bg); border-bottom: 1px solid var(--border);
}
.cmp-pros, .cmp-cons {
  padding: .9rem 1.1rem;
}
.cmp-pros { border-right: 1px solid var(--border); }
.cmp-col-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.cmp-pros .cmp-col-title { color: var(--primary); }
.cmp-cons .cmp-col-title { color: #f87171; }
.cmp-pros ul li, .cmp-cons ul li { font-size: .83rem; padding: .2rem 0; color: var(--text-light); }
.cmp-pros ul li::before { content: "✓ "; color: var(--primary); font-weight: 700; }
.cmp-cons ul li::before { content: "✗ "; color: #f87171; font-weight: 700; }

.cmp-footer {
  display: flex; justify-content: flex-end;
  padding: .75rem 1.1rem; background: var(--bg);
}
.btn-get-bonus {
  background: var(--btn-gradient);
  color: #fff; padding: .55rem 1.3rem; border-radius: 7px;
  font-size: .85rem; font-weight: 700; transition: opacity .2s;
}
.btn-get-bonus:hover { opacity: .88; text-decoration: none; color: #fff; }

/* ----------------------------------------------------------------
   FAQ Accordion
   ---------------------------------------------------------------- */
.faq-section { margin-bottom: 2.5rem; }
.faq-list { margin-top: 1rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: .5rem; overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: .75rem;
  background: var(--card-bg); border: none; cursor: pointer;
  padding: .95rem 1.1rem; font-size: .95rem; font-weight: 600;
  color: var(--text); text-align: left;
  transition: background .15s;
}
.faq-question:hover { background: rgba(16,185,129,.08); }
.faq-question i { color: var(--primary); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  background: var(--bg); padding: 0 1.1rem;
  font-size: .9rem; color: var(--text-light);
}
.faq-item.open .faq-answer { max-height: 500px; padding: .9rem 1.1rem; }

/* ----------------------------------------------------------------
   Info Boxes
   ---------------------------------------------------------------- */
.highlight-box {
  background: rgba(16,185,129,.07); border-left: 4px solid var(--primary);
  padding: 1rem 1.2rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0;
}
.highlight-box p { margin: 0; font-size: .9rem; color: var(--text); }
.warning-box {
  background: rgba(245,158,11,.07); border-left: 4px solid #f59e0b;
  padding: 1rem 1.2rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0;
}
.warning-box p { margin: 0; font-size: .9rem; color: var(--text); }

/* ----------------------------------------------------------------
   Styled list
   ---------------------------------------------------------------- */
.styled-list { list-style: none; margin: 1rem 0; }
.styled-list li {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .55rem 0; border-bottom: 1px solid var(--border);
  color: var(--text-light);
}
.styled-list li:last-child { border-bottom: none; }
.styled-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* ----------------------------------------------------------------
   Responsible Gambling
   ---------------------------------------------------------------- */
.resp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin: 1rem 0;
}
.resp-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  border-top: 3px solid var(--primary);
}
.resp-card h4 { font-size: .92rem; font-weight: 700; margin-bottom: .5rem; color: var(--text); }
.resp-card p { font-size: .83rem; color: var(--text-light); margin: 0; }

.help-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin: 1rem 0;
}
.help-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.help-card h4 { font-size: .92rem; font-weight: 700; margin-bottom: .5rem; color: var(--text); }
.help-card .phone { font-size: .95rem; font-weight: 700; color: var(--primary); display: block; margin-bottom: .35rem; }
.help-card p { font-size: .82rem; color: var(--text-light); margin: 0 0 .5rem; }
.help-card a { font-size: .82rem; color: var(--primary); font-weight: 600; }

.age-warning {
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3);
  border-radius: var(--radius); padding: 1.2rem 1.4rem;
  display: flex; align-items: flex-start; gap: 1rem; margin-top: 1.5rem;
}
.age-warning i { color: #f87171; font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.age-warning h4 { font-size: 1rem; font-weight: 700; color: #f87171; margin-bottom: .3rem; }
.age-warning p { font-size: .85rem; color: var(--text-light); margin: 0; }

/* ----------------------------------------------------------------
   Buttons (shared)
   ---------------------------------------------------------------- */
.btn-submit {
  background: var(--btn-gradient);
  color: #fff; border: none; cursor: pointer;
  padding: .7rem 1.6rem; border-radius: 7px;
  font-size: .95rem; font-weight: 700;
  transition: opacity .2s;
}
.btn-submit:hover { opacity: .88; }

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.footer {
  background: var(--footer-gradient);
  color: rgba(255,255,255,.85);
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col-title {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: #fff;
  margin-bottom: .9rem;
}
.footer-brand-logo { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.footer-brand-logo .brand-name { font-size: 1.1rem; }
.footer-desc { font-size: .82rem; line-height: 1.6; color: rgba(255,255,255,.6); }

.footer-links { display: flex; flex-direction: column; gap: .35rem; }
.footer-links a {
  font-size: .85rem; color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  padding: 1.1rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,.5);
}
.footer-legal {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .75rem; color: rgba(255,255,255,.45); line-height: 1.6;
}

/* ----------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .sidebar-toc { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Showcase cards — compact, centered */
  .cv-card { flex-direction: column; }
  .cv-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: .6rem .9rem;
    align-items: center;
    text-align: center;
  }
  .cv-col:last-child { border-bottom: none; }
  .cv-col-label { text-align: center; }

  /* Brand row — logo + name side by side, centered */
  .cv-col-brand {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: .75rem;
    padding: .75rem .9rem;
  }
  .cv-name { text-align: left; }

  /* Bonus centered */
  .cv-col-bonus { flex: none; }
  .cv-bonus { text-align: center; }
  .cv-bonus-sub { text-align: center; }

  /* Hide highlights on mobile — saves space */
  .cv-col-hl { display: none; }

  /* Payments — wrap into a single horizontal row */
  .cv-col-pay { flex: none; }
  .cv-pay-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: .3rem .75rem;
  }

  /* Action — centered */
  .cv-col-action {
    flex: none;
    align-items: center;
    gap: .5rem;
    padding: .75rem .9rem;
  }
  .btn-play { width: 180px; }

  /* Review card details */
  .crv-details { grid-template-columns: repeat(3, 1fr); }

  /* Other layout */
  .pros-cons-grid { grid-template-columns: 1fr; }
  .cmp-body { grid-template-columns: 1fr; }
  .cmp-pros { border-right: none; border-bottom: 1px solid var(--border); }

  /* Nav mobile */
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--nav-bg); padding: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cv-highlights { grid-template-columns: 1fr; }
  .crv-details { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.2rem; }
  .hero { padding: 2.5rem 0 2rem; }
}
