/* ============================================
   BounceRadio.net - Non GamStop Casinos UK
   Modern Casino Affiliate Theme 2026
   ============================================ */

:root {
  --bg-primary: #0f1923;
  --bg-secondary: #1a2736;
  --bg-card: #1e2d3d;
  --bg-card-hover: #243447;
  --bg-highlight: #162231;
  --accent-gold: #f0b429;
  --accent-gold-hover: #d4a017;
  --accent-blue: #2563eb;
  --accent-blue-hover: #1d4ed8;
  --accent-green: #22c55e;
  --accent-red: #ef4444;
  --accent-orange: #f97316;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: #2a3a4a;
  --border-light: #334155;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: all 0.25s ease;
  --max-width: 1200px;
  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-gold-hover); }
ul, ol { padding-left: 1.5em; }
table { width: 100%; border-collapse: collapse; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-main); font-weight: 700; line-height: 1.3; color: var(--text-primary); }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.75rem; margin-top: 2.5rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: 0.5rem; margin-top: 2rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }
strong { color: var(--text-primary); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3rem 0; }
.section-alt { background: var(--bg-secondary); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }

/* --- Header --- */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-logo { font-size: 1.35rem; font-weight: 800; color: var(--text-primary); display: flex; align-items: center; gap: 0.5rem; }
.site-logo span { color: var(--accent-gold); }
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > a, .nav-dropdown > a {
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.main-nav > a:hover, .main-nav > a.active,
.nav-dropdown > a:hover, .nav-dropdown > a.active { color: var(--accent-gold); background: rgba(240, 180, 41, 0.08); }

/* --- Dropdown Nav --- */
.nav-dropdown { position: relative; }
.dropdown-arrow { font-size: 0.65rem; transition: transform 0.2s ease; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
  z-index: 1001;
  max-height: 400px;
  overflow-y: auto;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  white-space: nowrap;
  border-radius: 0;
}
.dropdown-menu a:hover { color: var(--accent-gold); background: rgba(240, 180, 41, 0.06); }

.nav-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; padding: 0.25rem; }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-secondary); border-bottom: 1px solid var(--border-color);
    flex-direction: column; padding: 1rem;
  }
  .main-nav.open { display: flex; }
  .main-nav > a, .nav-dropdown > a { padding: 0.75rem 1rem; width: 100%; }
  .nav-dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--bg-highlight);
    border-radius: 0;
    max-height: none;
    display: none;
    padding-left: 1rem;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, #162538 50%, #1a2d42 100%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(240, 180, 41, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); max-width: 800px; }
.hero h1 .highlight { color: var(--accent-gold); }
.hero-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 700px; margin-bottom: 1.5rem; line-height: 1.8; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; }
.hero-meta span { display: flex; align-items: center; gap: 0.35rem; }

/* --- Breadcrumb --- */
.breadcrumb { padding: 0.75rem 0; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-gold); }
.breadcrumb span { margin: 0 0.4rem; }

/* --- Affiliate Disclosure --- */
.affiliate-disclosure {
  background: rgba(240, 180, 41, 0.06);
  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* --- Casino Card --- */
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.casino-card:hover { border-color: rgba(240, 180, 41, 0.3); box-shadow: var(--shadow); transform: translateY(-2px); }
.casino-card-rank {
  position: absolute; top: 0; left: 0;
  background: var(--accent-gold); color: var(--bg-primary);
  font-weight: 800; font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.casino-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; padding-top: 0.5rem; }
.casino-card-logo {
  width: 70px; height: 70px;
  background: var(--bg-highlight);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.75rem; color: var(--accent-gold);
  text-align: center; flex-shrink: 0;
  border: 1px solid var(--border-color);
}
.casino-card-info h3 { margin: 0 0 0.25rem; font-size: 1.15rem; }
.casino-card-rating { display: flex; align-items: center; gap: 0.35rem; font-size: 0.85rem; }
.stars { color: var(--accent-gold); letter-spacing: 1px; }
.rating-score { font-weight: 700; color: var(--accent-gold); }
.casino-card-bonus {
  background: var(--bg-highlight);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.casino-card-bonus .bonus-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-muted); margin-bottom: 0.25rem;
}
.casino-card-bonus .bonus-value { font-size: 1.1rem; font-weight: 700; color: var(--accent-gold); }
.casino-card-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.feature-tag {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #60a5fa; font-size: 0.75rem;
  padding: 0.2rem 0.6rem; border-radius: 20px; white-space: nowrap;
}
.casino-card-pros-cons { margin-bottom: 1rem; }
.casino-card-pros-cons ul { list-style: none; padding: 0; font-size: 0.85rem; }
.casino-card-pros-cons li { padding: 0.2rem 0; padding-left: 1.25rem; position: relative; color: var(--text-secondary); }
.casino-card-pros-cons li::before { position: absolute; left: 0; font-weight: 700; }
.pros li::before { content: '+'; color: var(--accent-green); }
.cons li::before { content: '-'; color: var(--accent-red); }

/* --- Buttons --- */
.btn {
  display: inline-block; padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem;
  text-align: center; cursor: pointer; transition: var(--transition);
  border: none; text-decoration: none;
}
.btn-primary { background: var(--accent-gold); color: var(--bg-primary); }
.btn-primary:hover { background: var(--accent-gold-hover); color: var(--bg-primary); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240, 180, 41, 0.3); }
.btn-secondary { background: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); }
.btn-secondary:hover { background: rgba(240, 180, 41, 0.1); color: var(--accent-gold); }
.btn-block { display: block; width: 100%; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.tc-note { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 0.35rem; }

/* --- Quick Picks Table --- */
.top-picks-table { width: 100%; border-collapse: separate; border-spacing: 0 0.5rem; }
.top-picks-table thead th {
  background: var(--bg-highlight); color: var(--text-muted);
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 0.75rem 1rem; text-align: left; font-weight: 600;
}
.top-picks-table thead th:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.top-picks-table thead th:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.top-picks-table tbody tr { background: var(--bg-card); transition: var(--transition); }
.top-picks-table tbody tr:hover { background: var(--bg-card-hover); }
.top-picks-table td {
  padding: 0.85rem 1rem; font-size: 0.9rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.top-picks-table td:first-child { border-left: 1px solid var(--border-color); border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.top-picks-table td:last-child { border-right: 1px solid var(--border-color); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.top-picks-table .rank-cell { font-weight: 800; color: var(--accent-gold); font-size: 1rem; width: 50px; text-align: center; }
.top-picks-table .casino-cell { font-weight: 600; color: var(--text-primary); }
.top-picks-table .bonus-cell { color: var(--accent-gold); font-weight: 600; }
.top-picks-table .cta-cell { text-align: right; white-space: nowrap; }

/* --- Comparison Table --- */
.comparison-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 1rem 0; border-radius: var(--radius);
  border: 1px solid var(--border-color);
}
.comparison-table { width: 100%; min-width: 700px; border-collapse: collapse; }
.comparison-table thead th {
  background: var(--bg-highlight); color: var(--text-muted);
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 0.85rem 1rem; text-align: left; font-weight: 600;
  border-bottom: 1px solid var(--border-color);
}
.comparison-table td {
  padding: 0.75rem 1rem; font-size: 0.85rem;
  border-bottom: 1px solid var(--border-color); color: var(--text-secondary);
}
.comparison-table tbody tr:hover { background: var(--bg-card-hover); }
.comparison-table .check { color: var(--accent-green); }
.comparison-table .cross { color: var(--accent-red); }

/* --- Info Box --- */
.info-box {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.info-box.warning { border-left-color: var(--accent-orange); }
.info-box.tip { border-left-color: var(--accent-green); }
.info-box.danger { border-left-color: var(--accent-red); }
.info-box h4 { margin-bottom: 0.5rem; font-size: 0.95rem; }
.info-box p { margin-bottom: 0; font-size: 0.9rem; }

/* --- Pro Tip --- */
.pro-tip {
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.06) 0%, rgba(240, 180, 41, 0.02) 100%);
  border: 1px solid rgba(240, 180, 41, 0.2);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.pro-tip-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-gold); font-weight: 700; margin-bottom: 0.5rem; }

/* --- FAQ --- */
.faq-item { border: 1px solid var(--border-color); border-radius: var(--radius-sm); margin-bottom: 0.75rem; overflow: hidden; }
.faq-question {
  background: var(--bg-card); padding: 1rem 1.25rem;
  font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question::after { content: '+'; font-size: 1.25rem; color: var(--accent-gold); font-weight: 300; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-question::after { content: '-'; }
.faq-answer {
  display: none; padding: 1rem 1.25rem;
  background: var(--bg-highlight); font-size: 0.9rem;
  color: var(--text-secondary); line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* --- Author Box --- */
.author-box {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 1.25rem; margin: 2rem 0;
}
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-highlight); border: 2px solid var(--accent-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--accent-gold); font-size: 1.1rem; flex-shrink: 0;
}
.author-info h4 { font-size: 0.95rem; margin-bottom: 0.15rem; }
.author-info .author-title { font-size: 0.8rem; color: var(--accent-gold); margin-bottom: 0.35rem; }
.author-info p { font-size: 0.85rem; margin-bottom: 0; }
.fact-check { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); padding: 0.5rem 0; border-top: 1px solid var(--border-color); margin-top: 0.5rem; }
.fact-check strong { color: var(--text-secondary); }

/* --- TOC --- */
.toc {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.toc h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 0.75rem; }
.toc ol { counter-reset: toc; list-style: none; padding: 0; }
.toc li { counter-increment: toc; padding: 0.3rem 0; }
.toc li::before { content: counter(toc) "."; color: var(--accent-gold); font-weight: 700; margin-right: 0.5rem; font-size: 0.85rem; }
.toc a { color: var(--text-secondary); font-size: 0.9rem; }
.toc a:hover { color: var(--accent-gold); }

/* --- Stats Row --- */
.stats-row { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0; }
.stat-item {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  flex: 1; min-width: 140px; text-align: center;
}
.stat-number { font-size: 1.75rem; font-weight: 800; color: var(--accent-gold); display: block; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* --- Payment Tags --- */
.payment-methods { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.payment-tag { background: var(--bg-highlight); border: 1px solid var(--border-color); padding: 0.35rem 0.75rem; border-radius: 20px; font-size: 0.8rem; color: var(--text-secondary); }

/* --- Review Page --- */
.review-header { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; }
.review-logo {
  width: 100px; height: 100px;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--accent-gold); flex-shrink: 0;
}
.review-scores { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.75rem; margin: 1.5rem 0; }
.score-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-sm); padding: 0.75rem; }
.score-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.score-bar { height: 6px; background: var(--bg-highlight); border-radius: 3px; overflow: hidden; margin-bottom: 0.25rem; }
.score-fill { height: 100%; background: var(--accent-gold); border-radius: 3px; transition: width 0.5s ease; }
.score-value { font-size: 0.85rem; font-weight: 700; color: var(--accent-gold); }

/* --- Footer --- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: var(--text-primary); font-size: 0.9rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--text-muted); font-size: 0.85rem; }
.footer-col a:hover { color: var(--accent-gold); }
.footer-col p { font-size: 0.85rem; color: var(--text-muted); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.8; }
.footer-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.footer-badge { background: var(--bg-card); border: 1px solid var(--border-color); padding: 0.3rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.7rem; color: var(--text-muted); }

/* --- Responsible Gambling Banner --- */
.rg-banner {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.03) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 2rem 0; text-align: center;
}
.rg-banner h4 { color: #fca5a5; margin-bottom: 0.5rem; }
.rg-banner p { font-size: 0.85rem; margin-bottom: 0.5rem; }
.rg-banner a { color: #fca5a5; font-weight: 600; }

/* --- Sidebar Layout --- */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; align-items: flex-start; }
@media (max-width: 1024px) { .content-with-sidebar { grid-template-columns: 1fr; } }
.sidebar-sticky { position: sticky; top: 80px; }
.sidebar-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem; }
.sidebar-card h4 { font-size: 0.9rem; margin-bottom: 0.75rem; }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-green { color: var(--accent-green); }
.text-red { color: var(--accent-red); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media print {
  .site-header, .site-footer, .btn, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
  .casino-card { border: 1px solid #ccc; }
}
