/* ================================================================
   styles.css — CA $10 Deposit Casinos
   ================================================================ */

:root {
  --primary:         #CC0000;
  --primary-light:   #e84040;
  --bg:              #ffffff;
  --card-bg:         #fff8f8;
  --border:          #f5d0ce;
  --text:            #1a1a2e;
  --text-light:      #6b6b8a;
  --nav-bg:          #0a0000;
  --hero-gradient:   linear-gradient(135deg, #6B0000 0%, #CC0000 65%, #e84040 100%);
  --footer-gradient: linear-gradient(90deg, #6B0000, #CC0000);
  --shadow:          0 2px 12px rgba(204,0,0,.08);
  --shadow-hover:    0 6px 24px rgba(204,0,0,.18);
  --radius:          10px;
}

/* ----------------------------------------------------------------
   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; }
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,.08);
}
.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,.8); 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,.08); text-decoration: none; }
.nav-links .nav-cta a {
  background: linear-gradient(90deg, #8B0000, #CC0000);
  color: #fff; font-weight: 700; padding: .45rem 1.1rem;
}
.nav-links .nav-cta a:hover { opacity: .9; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a {
  display: flex; align-items: center; gap: .35rem;
}
.has-dropdown > a i {
  font-size: .65rem; transition: transform .2s;
}
.has-dropdown:hover > a i,
.has-dropdown.open > a i { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute; top: 100%; left: 0;
  min-width: 200px;
  background: #1a0000;
  border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid var(--primary);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: .4rem 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { display: block; }
.dropdown li { list-style: none; }
.dropdown a {
  display: block; padding: .5rem 1rem;
  font-size: .88rem; color: rgba(255,255,255,.8);
  border-radius: 0;
  white-space: nowrap;
}
.dropdown a:hover { background: rgba(204,0,0,.2); color: #fff; text-decoration: none; }
.dropdown a.current { color: var(--primary-light); font-weight: 600; }
.dropdown-divider {
  height: 1px; background: rgba(255,255,255,.08);
  margin: .3rem 0;
}

.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: 760px; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero-meta {
  display: flex; align-items: center; gap: 1rem;
  font-size: .85rem; color: rgba(255,255,255,.7);
  margin-bottom: 1.25rem; flex-wrap: wrap;
}
.hero-meta i { color: var(--primary-light); }
.hero-text p { color: rgba(255,255,255,.9); }
.hero-more { display: none; }
.hero-more.visible { display: block; }
.btn-read-more {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: .75rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff; cursor: pointer;
  padding: .55rem 1.2rem; border-radius: 6px;
  font-size: .9rem; font-weight: 600;
  transition: background .2s;
}
.btn-read-more:hover { background: rgba(255,255,255,.25); }

/* ----------------------------------------------------------------
   Casino Showcase
   ---------------------------------------------------------------- */
.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: #fff;
  box-shadow: var(--shadow);
  transition: box-shadow .2s;
}
.cv-card:hover { box-shadow: var(--shadow-hover); }

.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); }

/* ----------------------------------------------------------------
   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(204,0,0,.06); text-decoration: none; }
.toc-link.active { color: var(--primary); font-weight: 600; background: rgba(204,0,0,.08); }

.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; }
.content-section h3 { margin: 1.25rem 0 .5rem; }

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

.section-image {
  float: right;
  width: 240px;
  margin: 0 0 1.25rem 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #1a0000, #000);
}
.section-image img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius); }

/* ----------------------------------------------------------------
   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);
}
.feature-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(90deg, #8B0000, #CC0000);
  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; }
.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
   ---------------------------------------------------------------- */
.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: #1b8a4c; }
.cons-col h4 { color: #c93030; }
.pros-col li, .cons-col li { font-size: .88rem; padding: .25rem 0; }
.pros-col li::before { content: "✓ "; color: #1b8a4c; font-weight: 700; }
.cons-col li::before { content: "✗ "; color: #c93030; font-weight: 700; }

/* ----------------------------------------------------------------
   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: linear-gradient(90deg, #8B0000, #CC0000);
  color: #fff; font-size: .78rem; font-weight: 700;
  margin-bottom: .6rem;
}
.tip-title { font-size: .92rem; font-weight: 700; margin-bottom: .35rem; }
.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: linear-gradient(90deg, #8B0000, #CC0000);
  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);
}
.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: var(--card-bg); }
.tbl-cta {
  display: inline-block;
  background: linear-gradient(90deg, #8B0000, #CC0000);
  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);
}
.crv-header {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, #fff5f5, #ffe0e0);
  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; }
.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; }

.crv-details {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: .5rem; margin-bottom: 1.1rem;
}
.crv-detail {
  background: var(--card-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: var(--card-bg);
  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: linear-gradient(90deg, #8B0000, #CC0000);
  color: #fff; padding: .6rem 1.4rem; border-radius: 7px;
  font-size: .88rem; font-weight: 700; white-space: nowrap;
  transition: opacity .2s, transform .2s;
}
.btn-claim:hover { opacity: .88; text-decoration: none; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,0,0,.3); }

/* ----------------------------------------------------------------
   Comparison Cards
   ---------------------------------------------------------------- */
.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: linear-gradient(90deg, #8B0000, #CC0000);
  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: #fff; 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: #1b8a4c; }
.cmp-cons .cmp-col-title { color: #c93030; }
.cmp-pros ul li, .cmp-cons ul li { font-size: .83rem; padding: .2rem 0; }
.cmp-pros ul li::before { content: "✓ "; color: #1b8a4c; font-weight: 700; }
.cmp-cons ul li::before { content: "✗ "; color: #c93030; font-weight: 700; }

.cmp-footer {
  display: flex; justify-content: flex-end;
  padding: .75rem 1.1rem; background: var(--card-bg);
}
.btn-get-bonus {
  background: linear-gradient(90deg, #8B0000, #CC0000);
  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; }

/* ----------------------------------------------------------------
   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: #ffe5e5; }
.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: #fff; padding: 0 1.1rem;
  font-size: .9rem; color: var(--text-light);
}
.faq-item.open .faq-answer { max-height: 500px; padding: .9rem 1.1rem; }

/* ----------------------------------------------------------------
   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,.12);
}
.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,.7); }

.footer-links { display: flex; flex-direction: column; gap: .35rem; }
.footer-links a {
  font-size: .85rem; color: rgba(255,255,255,.7);
  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,.55);
}
.footer-legal {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .75rem; color: rgba(255,255,255,.5); line-height: 1.6;
}

/* ----------------------------------------------------------------
   Buttons (shared)
   ---------------------------------------------------------------- */
.btn-submit {
  background: linear-gradient(90deg, #8B0000, #CC0000);
  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; }

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

/* ----------------------------------------------------------------
   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, #8B0000 0%, #CC0000 55%, #8B0000 100%);
  padding: 0; overflow: hidden;
  display: flex; align-items: stretch;
}
.cv-col-brand .cv-logo {
  display: block;
  width: 160px !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  min-height: 80px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.cv-col-brand .cv-name { display: none; }
.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: var(--card-bg);
  align-items: center; gap: .75rem;
}

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

.cv-badge {
  display: inline-block; margin-top: .4rem;
  background: var(--primary); color: #fff;
  font-size: .65rem; font-weight: 700; padding: .15rem .4rem; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .05em;
}
.cv-badge.top    { background: #fef3c7; color: #92400e; }
.cv-badge.hot    { background: #fee2e2; color: #991b1b; }
.cv-badge.new    { background: #dcfce7; color: #166534; }
.cv-badge.sport  { background: #e0f2fe; color: #0369a1; }
.cv-badge.vip    { background: #ede9fe; color: #5b21b6; }
.cv-badge.nowager{ background: #fdf4ff; color: #86198f; }
.cv-badge.ca     { background: #fff0f0; color: #8B0000; }

.cv-bonus {
  font-size: 1.05rem; font-weight: 800;
  color: #15803d; line-height: 1.25;
}
.cv-bonus-sub { font-size: .72rem; color: var(--text-light); line-height: 1.35; }

.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: var(--card-bg); border: 1px solid var(--border);
  border-radius: 5px; padding: .14rem .45rem;
  font-size: .68rem; color: var(--text-light); white-space: nowrap; font-weight: 500;
}

.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; }

.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: linear-gradient(90deg, #8B0000, #CC0000);
  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; }

/* ----------------------------------------------------------------
   Review Cards banner
   ---------------------------------------------------------------- */
.crv-banner { line-height: 0; overflow: hidden; }
.crv-banner img { width: 100%; height: 180px; object-fit: cover; display: block; }
.crv-title h3 { font-size: 1.2rem; color: var(--text); margin: 0 0 4px; }
.casino-stars { color: #f59e0b; font-size: .9rem; display: flex; align-items: center; gap: .15rem; }
.casino-stars span { color: var(--text-light); font-size: .82rem; margin-left: 5px; }

/* ----------------------------------------------------------------
   Pros / Cons boxes
   ---------------------------------------------------------------- */
.pros-box { background: #f0fff4; border: 1px solid #a7f3d0; border-radius: var(--radius); padding: 1.2rem; }
.cons-box { background: #fff5f5; border: 1px solid #fca5a5; border-radius: var(--radius); padding: 1.2rem; }
.pros-box h3 { color: #16a34a; margin-top: 0; margin-bottom: .5rem; font-size: 1rem; }
.cons-box h3 { color: #dc2626; 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; }
.pc-list li i { margin-top: 3px; flex-shrink: 0; }
.pros-box .pc-list li i { color: #16a34a; }
.cons-box .pc-list li i { color: #dc2626; }
.pros-box .pc-list li:not(:has(i))::before { content: "✓"; color: #16a34a; font-weight: 700; flex-shrink: 0; }
.cons-box .pc-list li:not(:has(i))::before { content: "✗"; color: #dc2626; font-weight: 700; flex-shrink: 0; }

/* ----------------------------------------------------------------
   Sec Visual (float right)
   ---------------------------------------------------------------- */
.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; }

/* ----------------------------------------------------------------
   Info boxes
   ---------------------------------------------------------------- */
.highlight-box {
  background: #fff0f0; 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; }
.warning-box {
  background: #fffbeb; 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; }

/* ----------------------------------------------------------------
   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 #f0f0f5;
}
.styled-list li:last-child { border-bottom: none; }
.styled-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* ----------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .cv-col-pay { display: none; }
  .cv-col-hl  { flex: 0 0 220px; }
}

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

@media (max-width: 860px) {
  .cv-col-hl    { display: none; }
  .cv-col-bonus { flex: 1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--nav-bg); flex-direction: column; padding: .75rem;
    border-top: 1px solid rgba(255,255,255,.08); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .65rem 1rem; }
  .hamburger { display: flex; }
  .dropdown {
    display: none; position: static;
    background: rgba(255,255,255,.04);
    border: none; border-left: 2px solid var(--primary);
    border-radius: 0; box-shadow: none;
    padding: .2rem 0; margin: .2rem 0 .2rem .75rem;
  }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open:hover .dropdown { display: block; }
  .dropdown a { padding: .4rem .75rem; font-size: .85rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .crv-details { grid-template-columns: repeat(3, 1fr); }
  .crv-details .crv-detail:nth-child(n+4) { display: none; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .cmp-body { grid-template-columns: 1fr; }
  .cmp-pros { border-right: none; border-bottom: 1px solid var(--border); }
  h2, .section-heading h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }
  .content-section { margin-bottom: 1.8rem; }
  .section-heading  { gap: .6rem; }
}

@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cv-col-brand { width: 115px; }
  .crv-details { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .sec-icon        { width: 36px; height: 36px; font-size: .85rem; }
  .section-heading { gap: .5rem; }
  .content-section { margin-bottom: 1.4rem; }
  .sec-visual     { float: none; width: 100%; margin: 0 0 1.2rem 0; }
  .sec-visual img { height: auto; object-fit: contain; }
  .crv-banner img { height: 140px; }
  .cv-list     { gap: .45rem; }
  .cv-card     { display: grid; grid-template-columns: 110px 1fr; grid-template-rows: auto auto; }
  .cv-col      { border-right: none; border-bottom: none; padding: .55rem .7rem; box-sizing: border-box; }
  .cv-col-hl   { display: none; }
  .cv-col-pay  { display: none; }
  .cv-col-brand {
    grid-column: 1; grid-row: 1;
    align-items: stretch; padding: 0;
    border-right: 1px solid rgba(255,255,255,.2);
  }
  .cv-col-brand .cv-logo { width: 110px !important; min-height: 60px; }
  .cv-name { display: none; }
  .cv-badge   { display: none; }
  .cv-col-bonus {
    grid-column: 2; grid-row: 1;
    align-items: flex-start; justify-content: center;
    padding: .6rem .75rem;
    border-bottom: 1px solid var(--border);
  }
  .cv-bonus     { font-size: .93rem; }
  .cv-bonus-sub { font-size: .68rem; }
  .cv-col-action {
    grid-column: 1 / -1; grid-row: 2;
    align-items: stretch; background: none; padding: .4rem .7rem;
  }
  .cv-stars { display: none; }
  .cv-tc    { display: none; }
  .btn-play { width: 100%; max-width: 100%; font-size: .84rem; padding: .45rem; }
  .crv-body > p { display: none; }
  .crv-details { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .tips-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  h1 { font-size: 1.3rem; }
  .cv-col-brand { width: 90px; }
}
