/* ===== CrownCasinoReview — dark/gold editorial theme ===== */
:root {
  --gold: #d4af37;
  --gold-light: #f5d16a;
  --gold-bright: #e8c547;
  --amber: #f59e0b;
  --red: #c8102e;
  --bg-0: #050505;
  --bg-1: #0a0908;
  --bg-2: #121212;
  --bg-brown: #16120c;
  --bg-brown-2: #141008;
  --cream: #f8efd9;
  --cream-2: #f5f0e8;
  --gray: #9ca3af;
  --border: #2a2419;
  --radius-lg: 1.75rem;
  --radius-md: 1rem;
  --radius-sm: .75rem;
  --gold-gradient: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 45%, var(--gold-bright) 100%);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-1);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; margin: 0 0 .75rem; color: var(--cream); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--cream-2); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: .75rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn-gold {
  background: var(--gold-gradient);
  color: #1a1204;
  box-shadow: 0 8px 24px -8px rgba(212, 175, 55, .55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(212, 175, 55, .7); }
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-outline:hover { background: rgba(212, 175, 55, .08); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--cream-2);
}
.btn-ghost:hover { border-color: var(--gray); }
.btn-block { width: 100%; }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }

/* ===== Top bar / age gate ===== */
.top-bar {
  background: var(--bg-0);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: .5rem 1rem;
}
.top-bar p { margin: 0; font-size: .8rem; color: var(--gray); }
.top-bar a { color: var(--gold-light); text-decoration: underline; }
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: .7rem;
  padding: .1rem .4rem;
  border-radius: .3rem;
  margin-right: .35rem;
  letter-spacing: .02em;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 9, 8, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
  gap: 1rem;
}
.brand-logo { display: flex; align-items: center; gap: .55rem; }
.brand-word { font-size: 1.15rem; font-weight: 800; color: var(--cream); letter-spacing: -.01em; }
.brand-word-accent { color: var(--gold-light); }
.brand-uk {
  font-size: .65rem;
  font-weight: 700;
  color: var(--bg-0);
  background: var(--gold-gradient);
  padding: .12rem .35rem;
  border-radius: .3rem;
  margin-left: .3rem;
  vertical-align: middle;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.main-nav a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--cream-2);
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); border-color: var(--gold); }
.nav-rg { color: var(--gray); }
.nav-age-pill {
  font-size: .72rem;
  font-weight: 800;
  color: var(--red);
  border: 1px solid var(--red);
  padding: .2rem .55rem;
  border-radius: 9999px;
}

.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle-label span { width: 22px; height: 2px; background: var(--gold-light); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(60% 60% at 85% 0%, rgba(212,175,55,.14) 0%, transparent 60%),
    radial-gradient(50% 50% at 10% 10%, rgba(245,209,106,.08) 0%, transparent 60%),
    var(--bg-1);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-content { max-width: 720px; }
.hero p.lead { font-size: 1.1rem; color: var(--cream-2); }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.trust-item {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1rem;
  text-align: left;
}
.trust-item .icon { color: var(--gold); margin-bottom: .5rem; }
.trust-item h4 { font-size: .92rem; margin: 0 0 .2rem; }
.trust-item p { font-size: .82rem; margin: 0; color: var(--gray); }

/* ===== Section shells ===== */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-brown); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 640px; margin: 0 auto 2.25rem; text-align: center; }
.section-head.left { margin: 0 0 2.25rem; text-align: left; }

/* ===== Brand / review cards ===== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.brand-card {
  background: linear-gradient(160deg, rgba(212,175,55,.09) 0%, transparent 55%), var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.brand-card-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand-card-identity { display: flex; align-items: center; gap: .85rem; }
.brand-card-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  padding: 2px;
  flex-shrink: 0;
}
.brand-card-name { font-size: 1.3rem; font-weight: 800; margin: 0; }
.brand-card-tagline { font-size: .85rem; color: var(--gray); margin: .15rem 0 0; }
.rating-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #1a1204;
  font-weight: 800;
  line-height: 1;
}
.rating-pill span { font-size: .58rem; font-weight: 700; margin-top: 2px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }
.review-count { color: var(--gray); font-size: .82rem; }
.bonus-headline {
  background: rgba(212,175,55,.1);
  border: 1px dashed var(--gold);
  color: var(--gold-light);
  font-weight: 700;
  font-size: .85rem;
  text-align: center;
  padding: .6rem .75rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.license-line {
  font-size: .78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.license-line a { color: var(--gold-light); text-decoration: underline; }
.brand-card-ctas { display: flex; gap: .6rem; margin-top: auto; }
.brand-card-ctas .btn { flex: 1; }

/* ===== Reviews list page ===== */
.review-list { display: flex; flex-direction: column; gap: 1.25rem; }
.review-row {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.review-row h3 { margin: 0 0 .25rem; }
.review-row p { margin: 0; font-size: .85rem; color: var(--gray); }
.review-row-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  padding: 3px;
  flex-shrink: 0;
}

/* ===== Review detail ===== */
.review-hero {
  background: var(--bg-brown);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.review-hero-top { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.review-hero-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  padding: 4px;
  flex-shrink: 0;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.info-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.info-card h4 { color: var(--gold-light); font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem; }
.kv { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.kv:last-child { border-bottom: none; }
.kv .k { color: var(--gray); }
.kv .v { color: var(--cream); text-align: right; font-weight: 600; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pros-cons ul { margin: 0; padding-left: 1.1rem; }
.pros-cons li { margin-bottom: .5rem; font-size: .92rem; color: var(--cream-2); }
.pros h4 { color: #6fcf97; }
.cons h4 { color: #f28b82; }

.verdict-box {
  background: linear-gradient(105deg, rgba(212,175,55,.07) 0%, transparent 42%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclosure-note {
  font-size: .8rem;
  color: var(--gray);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 2rem;
}

/* ===== Methodology / how we review ===== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.method-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.method-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212,175,55,.12);
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: .75rem;
}

/* ===== RG banner ===== */
.rg-banner {
  background: var(--bg-0);
  border: 1px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.rg-banner h3 { margin: 0 0 .35rem; }
.rg-banner p { margin: 0; color: var(--gray); font-size: .9rem; }
.rg-links { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ===== FAQ accordion ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .9rem;
  overflow: hidden;
  background: var(--bg-2);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold-light);
  font-size: 1.3rem;
  font-weight: 400;
  margin-left: 1rem;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-body { padding: 0 1.4rem 1.2rem; color: var(--cream-2); font-size: .93rem; }

/* ===== Forms ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 640px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--cream-2); }
input, textarea, select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem .9rem;
  color: var(--cream);
  font-family: inherit;
  font-size: .92rem;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .78rem; color: var(--gray); }
.success-box {
  background: rgba(111,207,151,.08);
  border: 1px solid #6fcf97;
  color: #a9e5c4;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

/* ===== Legal pages ===== */
.legal-content { max-width: 780px; }
.legal-content h2 { margin-top: 2rem; font-size: 1.3rem; }
.legal-content ul { color: var(--cream-2); }
.legal-updated { color: var(--gray); font-size: .85rem; margin-bottom: 2rem; }

/* ===== About / team ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #1a1204; font-size: 1.2rem;
  margin: 0 auto .9rem;
}
.team-role { color: var(--gold-light); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-0); border-top: 1px solid var(--border); padding-top: 3rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-blurb { font-size: .85rem; color: var(--gray); }
.footer-age-notice { font-size: .8rem; color: var(--gray); display: flex; align-items: center; }
.footer-col h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-light); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .88rem; color: var(--cream-2); }
.footer-col a:hover { color: var(--gold-light); }
.footer-license-list li { display: flex; flex-direction: column; gap: .15rem; }
.license-link { font-size: .75rem !important; color: var(--gray) !important; text-decoration: underline; }

.footer-support { border-top: 1px solid var(--border); padding: 2rem 0; }
.footer-support h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-light); margin-bottom: 1.1rem; }
.support-logos { display: flex; gap: 1rem; flex-wrap: wrap; }
.support-logo { opacity: .9; transition: opacity .15s ease; }
.support-logo:hover { opacity: 1; }
.helpline { margin-top: 1.1rem; font-size: .85rem; color: var(--gray); }
.helpline a { color: var(--gold-light); font-weight: 700; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: var(--gray); margin: .3rem 0; }
.footer-disclaimer { display: flex; align-items: center; justify-content: center; gap: .4rem; flex-wrap: wrap; }
.footer-disclaimer a { text-decoration: underline; color: var(--gold-light); }

/* ===== Cookie consent ===== */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: var(--bg-0);
  border-top: 1px solid var(--gold);
  box-shadow: 0 -10px 30px rgba(0,0,0,.5);
  padding: 1.1rem 1.5rem;
  animation: slideUp .35s ease;
}
.cookie-consent[hidden] { display: none; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-consent-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text { max-width: 680px; font-size: .85rem; color: var(--cream-2); }
.cookie-text strong { display: block; color: var(--cream); margin-bottom: .2rem; font-size: .95rem; }
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }

/* ===== 404 ===== */
.notfound { text-align: center; padding: 5rem 0; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle-label { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-1);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    display: none;
  }
  .nav-toggle:checked ~ .main-nav { display: flex; }
  .header-inner { position: relative; flex-wrap: wrap; }
  .review-row { grid-template-columns: 1fr; text-align: center; }
  .review-row .rating-pill { margin: 0 auto; }
  .review-row-logo { margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; }
}
