/* =============================================
   HeyRoller Casino UK — Main Stylesheet
   Brand colour: #2b0a47 (deep purple)
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:      #2b0a47;
  --brand-mid:  #3d1260;
  --brand-dark: #1a0630;
  --gold:       #f0b429;
  --gold-light: #ffd166;
  --white:      #ffffff;
  --off-white:  #f5f0fb;
  --text:       #e8dff5;
  --text-muted: #b49fd4;
  --accent:     #c77dff;
  --cta:        #f0b429;
  --cta-hover:  #e09c10;
  --card-bg:    #200838;
  --border:     rgba(192, 132, 252, 0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 32px rgba(0,0,0,0.45);
  --font-head:  'Georgia', 'Times New Roman', serif;
  --font-body:  'Segoe UI', 'Arial', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--brand-dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-width: 320px;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); text-decoration: underline; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.25;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.5rem; }
h4 { font-size: 1.05rem; color: var(--gold); }

p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

ul { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

/* ── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--brand-dark); }
::-webkit-scrollbar-thumb { background: var(--brand-mid); border-radius: 4px; }

/* ── BONUS BANNER TOP ─────────────────────── */
.top-banner {
  background: linear-gradient(90deg, #1a0630 0%, #3d1260 40%, #2b0a47 70%, #1a0630 100%);
  border-bottom: 2px solid var(--gold);
  text-align: center;
  padding: 14px 16px;
  position: relative;
  z-index: 100;
}
.top-banner__text {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.top-banner__text span { color: var(--gold); }
.top-banner .cta-btn {
  display: inline-block;
  background: var(--gold);
  color: #1a0630;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.top-banner .cta-btn:hover { background: var(--cta-hover); transform: scale(1.04); text-decoration: none; color: #1a0630; }

/* ── HEADER / NAV ─────────────────────────── */
.site-header {
  background: var(--brand);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 0 20px;
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0;
}

/* ── LOGO ─────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo__name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.logo__name span { color: var(--gold); display: block; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; }

/* ── NAV ──────────────────────────────────── */
.site-nav { display: flex; flex-wrap: wrap; gap: 4px 14px; list-style: none; padding: 0; margin: 0; }
.site-nav a { color: var(--text-muted); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em; transition: color 0.2s; text-decoration: none; padding: 4px 2px; }
.site-nav a:hover { color: var(--gold); text-decoration: none; }

.header-cta {
  background: var(--gold);
  color: #1a0630;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background 0.2s;
  text-decoration: none;
}
.header-cta:hover { background: var(--cta-hover); text-decoration: none; color: #1a0630; }

/* ── CONTAINER ────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ── SECTION SPACING ──────────────────────── */
.section { padding: 56px 0; }
.section--dark { background: var(--brand-dark); }
.section--mid  { background: var(--brand); }
.section--card { background: var(--card-bg); }

.section__intro { max-width: 760px; margin-bottom: 2rem; }
.section__eyebrow {
  display: inline-block;
  background: rgba(240,180,41,0.12);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(240,180,41,0.3);
  margin-bottom: 10px;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1a0630 0%, #2b0a47 50%, #3d1260 100%);
  padding: 60px 20px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 20% 50%, rgba(199,125,255,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 500px 250px at 80% 30%, rgba(240,180,41,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__badge svg { width: 14px; height: 14px; fill: var(--gold); }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero h1 span { color: var(--gold); }
.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2rem;
}
.hero__stars { display: flex; justify-content: center; align-items: center; gap: 6px; margin-bottom: 24px; }
.hero__stars svg { width: 22px; height: 22px; }
.hero__score { font-size: 1rem; color: var(--gold); font-weight: 700; margin-left: 4px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #e09c10 100%);
  color: #1a0630;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 22px rgba(240,180,41,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(240,180,41,0.45); text-decoration: none; color: #1a0630; }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(240,180,41,0.08); text-decoration: none; color: var(--white); }

/* ── QUICK STATS ──────────────────────────── */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -32px;
  position: relative;
  z-index: 10;
}
.stat-card {
  background: var(--brand);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card__value { font-size: 1.6rem; font-weight: 800; color: var(--gold); font-family: var(--font-head); line-height: 1; margin-bottom: 4px; }
.stat-card__label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── REVIEW INTRO ─────────────────────────── */
.review-intro {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.review-score-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.review-score-box__number {
  font-size: 4rem;
  font-weight: 900;
  font-family: var(--font-head);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.review-score-box__sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; }
.score-bar-list { list-style: none; padding: 0; text-align: left; }
.score-bar-item { margin-bottom: 10px; }
.score-bar-item__label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; display: flex; justify-content: space-between; }
.score-bar-item__label span { color: var(--gold); font-weight: 700; }
.score-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.score-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #c77dff);
  border-radius: 4px;
}

/* ── GRID CARDS ───────────────────────────── */
.cards-grid { display: grid; gap: 20px; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: border-color 0.2s, transform 0.15s;
}
.card:hover { border-color: rgba(199,125,255,0.4); transform: translateY(-2px); }
.card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.card p { font-size: 0.88rem; color: var(--text-muted); }

/* ── BONUS CARD ───────────────────────────── */
.bonus-card {
  background: linear-gradient(135deg, #2b0a47 0%, #3d1260 100%);
  border: 1px solid rgba(240,180,41,0.4);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bonus-card__info h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 6px; }
.bonus-card__info p { font-size: 0.88rem; color: var(--text-muted); margin: 0; max-width: 520px; }
.bonus-tag {
  display: inline-block;
  background: var(--gold);
  color: #1a0630;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

/* ── MID BANNER STRIP ─────────────────────── */
.mid-banner {
  background: linear-gradient(90deg, #3d1260 0%, #2b0a47 50%, #1a0630 100%);
  border-top: 1px solid rgba(240,180,41,0.3);
  border-bottom: 1px solid rgba(240,180,41,0.3);
  padding: 28px 20px;
  text-align: center;
}
.mid-banner__text { font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--white); font-weight: 700; margin-bottom: 16px; }
.mid-banner__text span { color: var(--gold); }

/* ── TABLE WRAPPER ────────────────────────── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th {
  background: var(--brand-mid);
  color: var(--gold);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--gold);
}
.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(61,18,96,0.4); }
.data-table .good { color: #7dffb6; font-weight: 600; }
.data-table .warn { color: var(--gold); font-weight: 600; }

/* ── PROS / CONS ──────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pros-cons__box { background: var(--card-bg); border-radius: var(--radius); padding: 24px 20px; border: 1px solid var(--border); }
.pros-cons__title { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.pros-cons__title--pro { color: #7dffb6; }
.pros-cons__title--con { color: #ff8a8a; }
.pros-cons__list { list-style: none; padding: 0; }
.pros-cons__list li { padding: 6px 0; font-size: 0.88rem; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 8px; }
.pros-cons__list li:last-child { border-bottom: none; }
.pros-cons__list--pro li::before { content: '✓'; color: #7dffb6; font-weight: 800; flex-shrink: 0; }
.pros-cons__list--con li::before { content: '✗'; color: #ff8a8a; font-weight: 800; flex-shrink: 0; }

/* ── PAYMENT ICONS ────────────────────────── */
.payment-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pay-tag {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pay-tag__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── FAQ ──────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item input[type="checkbox"] { display: none; }
.faq-item__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  transition: background 0.2s;
  gap: 12px;
}
.faq-item__label:hover { background: rgba(61,18,96,0.4); }
.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--gold);
  transition: transform 0.3s;
}
.faq-item input:checked ~ .faq-item__label .faq-arrow { transform: rotate(180deg); }
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item input:checked ~ .faq-item__body { max-height: 600px; }
.faq-item__body-inner { padding: 0 20px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; border-top: 1px solid var(--border); padding-top: 16px; }

/* ── RATING STARS SVG ─────────────────────── */
.star-gold { fill: var(--gold); }
.star-empty { fill: rgba(255,255,255,0.15); }

/* ── PROVIDER LIST ────────────────────────── */
.provider-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.provider-tag {
  background: var(--brand-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ── TRUST BADGES ─────────────────────────── */
.trust-row { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  flex: 1;
  min-width: 180px;
}
.trust-badge__icon { width: 36px; height: 36px; flex-shrink: 0; }
.trust-badge__info strong { display: block; font-size: 0.88rem; color: var(--white); }
.trust-badge__info span { font-size: 0.77rem; color: var(--text-muted); }

/* ── GAME CATEGORY CARDS ──────────────────── */
.game-cat-card {
  background: linear-gradient(145deg, var(--card-bg) 0%, #2b0a47 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.15s;
}
.game-cat-card:hover { border-color: rgba(199,125,255,0.5); transform: translateY(-3px); }
.game-cat-card__emoji { font-size: 2.4rem; margin-bottom: 10px; display: block; }
.game-cat-card__title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.game-cat-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ── VIP STEPS ────────────────────────────── */
.vip-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.vip-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
}
.vip-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #c77dff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #1a0630;
  margin: 0 auto 10px;
}
.vip-step__title { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.vip-step p { font-size: 0.77rem; color: var(--text-muted); margin: 0; }

/* ── FOOTER ───────────────────────────────── */
.site-footer {
  background: #0f0220;
  border-top: 1px solid var(--border);
  padding: 48px 20px 28px;
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 240px 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand p { font-size: 0.83rem; color: var(--text-muted); margin-top: 12px; line-height: 1.6; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 14px; font-family: var(--font-body); font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.83rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; }
.footer-bottom p { font-size: 0.76rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 6px; }
.footer-disclaimer { font-size: 0.72rem; color: rgba(180,159,212,0.6); line-height: 1.7; }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid #ff8a8a;
  border-radius: 50%;
  color: #ff8a8a;
  font-weight: 800;
  font-size: 0.75rem;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ── DIVIDER ──────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── HIGHLIGHT BOX ────────────────────────── */
.highlight-box {
  background: rgba(61,18,96,0.5);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 20px 0;
}
.highlight-box p { font-size: 0.92rem; color: var(--text); margin: 0; }

/* ── INLINE ACCENT ────────────────────────── */
.text-gold { color: var(--gold); }
.text-accent { color: var(--accent); }
.fw-bold { font-weight: 700; }

/* ── SECTION DIVIDER DECOR ────────────────── */
.section-title-wrap { margin-bottom: 32px; }
.section-title-wrap .section__eyebrow { margin-bottom: 8px; }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .quick-stats { grid-template-columns: repeat(2, 1fr); }
  .review-intro { grid-template-columns: 1fr; }
  .review-score-box { max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vip-steps { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .cards-grid--3 { grid-template-columns: 1fr 1fr; }
  .cards-grid--4 { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: nowrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .bonus-card { flex-direction: column; }
  .vip-steps { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 520px) {
  .cards-grid--3 { grid-template-columns: 1fr; }
  .cards-grid--4 { grid-template-columns: 1fr 1fr; }
  .cards-grid--2 { grid-template-columns: 1fr; }
  .quick-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .vip-steps { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .trust-row { flex-direction: column; }
  h2 { font-size: 1.3rem; }
}
