/* BridgeCasinoReview — black canvas, warm glow, borderless card design system */

:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --bg-card: #111111;
  --bg-raised: #181818;
  --hairline: rgba(255, 255, 255, 0.06);
  --text: #f5f5f5;
  --text-dim: #9a9a9a;
  --text-faint: #666666;
  --accent: #ff8a3d;
  --accent-soft: #ffb066;
  --accent-gold: #f0c78e;
  --accent-2: #33d6a6;
  --danger: #ff6568;
  --glow-grad: linear-gradient(135deg, var(--accent) 0%, var(--accent-gold) 100%);
  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Archivo', var(--font);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { color: var(--text-dim); margin: 0 0 16px; }

/* Gradient keyword highlight, used for emphasized spans in headings */
.hero h1 span,
h2 .grad {
  background: var(--glow-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg-card);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--glow-grad);
  color: #1a1002;
  box-shadow: 0 0 0 rgba(255, 138, 61, 0);
}
.btn-primary:hover { box-shadow: 0 8px 30px -4px rgba(255, 138, 61, 0.45); }

.btn-ghost {
  background: var(--bg-card);
  border-color: var(--hairline);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ===== Top age/compliance bar ===== */
.age-bar {
  background: #000;
  color: var(--text-faint);
  font-size: 0.78rem;
}
.age-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 24px;
  flex-wrap: wrap;
}
.age-bar .badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--danger);
  color: var(--danger);
  font-weight: 800;
  font-size: 0.68rem;
  margin-right: 6px;
}
.age-bar strong { color: var(--text-dim); }

/* ===== Header ===== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.brand-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo .dot { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--danger);
  color: var(--danger);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
}
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ===== Hero ===== */
.hero {
  padding: 110px 0 84px;
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  top: -280px;
  left: 50%;
  width: 1100px;
  height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255, 138, 61, 0.16), transparent 70%);
}
.hero::after {
  top: -140px;
  left: 62%;
  width: 620px;
  height: 380px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(240, 199, 142, 0.12), transparent 72%);
}
.hero .wrap { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.hero-stats div {
  padding: 20px 18px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 var(--hairline);
}
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
}
.hero-stats span {
  font-size: 0.78rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 28px;
  box-shadow: inset 0 1px 0 var(--hairline), 0 40px 80px -40px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
.hero-panel::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 138, 61, 0.14), transparent 72%);
  pointer-events: none;
}
.hero-panel > * { position: relative; }
.hero-panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.hero-panel-row:first-child { padding-top: 0; }
.hero-panel-row strong { font-family: var(--font-display); }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ===== Sections ===== */
section {
  padding: 80px 0;
}
.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-3 > * {
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 var(--hairline);
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.icon-tile {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: var(--accent);
}

/* Brand cards */
.brand-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 780px) {
  .brand-cards { grid-template-columns: 1fr; }
}
.brand-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: inset 0 1px 0 var(--hairline);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 138, 61, 0.1), transparent 72%);
  pointer-events: none;
}
.brand-card > * { position: relative; }
.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 var(--hairline), 0 24px 48px -24px rgba(255, 138, 61, 0.2);
}
.brand-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo-img {
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  border-radius: 6px;
}
.brand-logo-lg {
  height: 40px;
  max-width: 220px;
  margin-bottom: 18px;
}
.brand-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.brand-card-actions .btn { flex: 1; white-space: nowrap; }
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-raised);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
}
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-raised);
  color: var(--text-faint);
}
.tag.license { color: var(--accent-2); }
.license-line {
  font-size: 0.82rem;
  color: var(--text-faint);
  padding-top: 4px;
}
.license-line a { color: var(--accent-2); font-weight: 600; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  border-radius: var(--radius);
  padding: 26px;
  background: var(--bg-card);
  box-shadow: inset 0 1px 0 var(--hairline);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--bg-raised);
  font-weight: 800;
  margin-bottom: 8px;
}

/* Table */
.table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: inset 0 1px 0 var(--hairline);
}
table { width: 100%; border-collapse: collapse; }
th, td {
  text-align: left;
  padding: 16px 20px;
  font-size: 0.92rem;
}
th {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  font-weight: 700;
  white-space: nowrap;
}
tr:nth-child(even) { background: var(--bg-elevated); }

/* Pros / cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 700px) { .pros-cons { grid-template-columns: 1fr; } }
.pros, .cons {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: inset 0 1px 0 var(--hairline);
}
.pros-cons ul { margin: 0; padding-left: 20px; color: var(--text-dim); }
.pros-cons li { margin-bottom: 8px; }
.pros h4 { color: var(--accent-2); }
.cons h4 { color: var(--danger); }

/* FAQ accordion */
.faq-item {
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--bg-card);
  box-shadow: inset 0 1px 0 var(--hairline);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 400;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--text-dim); }

/* CTA band */
.cta-band {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 var(--hairline);
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  width: 760px;
  height: 360px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255, 138, 61, 0.14), transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; }

/* Forms */
.form-grid { display: grid; gap: 18px; max-width: 560px; }
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 8px;
}
input, textarea {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.alert {
  background: rgba(51, 214, 166, 0.08);
  color: var(--accent-2);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(51, 214, 166, 0.25);
}

/* Legal pages */
.legal-body h2 { margin-top: 40px; font-size: 1.4rem; }
.legal-body p, .legal-body li { color: var(--text-dim); }
.legal-body ul { padding-left: 22px; }
.updated-tag {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-faint);
  background: var(--bg-card);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}

/* ===== Footer ===== */
footer.site-footer {
  background: #000;
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
footer.site-footer::before {
  content: '';
  position: absolute;
  bottom: -420px;
  left: 50%;
  width: 1400px;
  height: 640px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 138, 61, 0.22), rgba(240, 199, 142, 0.08) 45%, transparent 72%);
  pointer-events: none;
}
footer.site-footer > * { position: relative; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 48px;
}
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-dim); font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-about p { font-size: 0.9rem; max-width: 320px; }

.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--danger);
  color: var(--danger);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 18px;
}

/* Org badges (GamStop, BeGambleAware, etc.) */
.org-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 36px 0;
}
.org-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elevated);
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: color 0.15s ease, background 0.15s ease;
}
.org-badge:hover { background: var(--bg-raised); color: var(--text); }
.org-badge .org-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #1a1002;
  background: var(--glow-grad);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 28px 0;
  font-size: 0.8rem;
  color: var(--text-faint);
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  font-size: 0.82rem;
}
.footer-legal-links a { color: var(--text-dim); }
.footer-legal-links a:hover { color: var(--accent); }
.footer-disclaimer {
  padding: 24px 0 32px;
  font-size: 0.76rem;
  color: var(--text-faint);
  max-width: 900px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }

/* Cookie consent modal */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: inset 0 1px 0 var(--hairline), 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 100;
  transform: translateY(140%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner h4 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.cookie-banner p {
  font-size: 0.86rem;
  margin: 0 0 18px;
  color: var(--text-dim);
}
.cookie-banner p a { color: var(--accent-2); font-weight: 600; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 20px; font-size: 0.86rem; }

@media (max-width: 500px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
}

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.small-note { font-size: 0.8rem; color: var(--text-faint); }
