/* ==========================================================================
   CSS Custom Properties — Burgundy / Gold / Cream Theme
   ========================================================================== */
:root {
  --burgundy-deep:  #1e0505;
  --burgundy-dark:  #3a0d0d;
  --burgundy-mid:   #5c1a1a;
  --burgundy-light: #7a2a2a;
  --gold:           #c9a84c;
  --gold-light:     #e8c86a;
  --gold-pale:      #f5e0a8;
  --cream:          #f8f0e0;
  --cream-dark:     #ede0c8;
  --cream-muted:    #c8b498;
  --text-main:      #2c0a0a;
  --text-body:      #4a1a1a;
  --text-muted:     #8a5a5a;
  --white:          #ffffff;
  --shadow-gold:    0 4px 24px rgba(201, 168, 76, 0.2);
  --shadow-dark:    0 4px 20px rgba(30, 5, 5, 0.4);
  --radius:         12px;
  --radius-sm:      8px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--cream);
  color: var(--text-body);
  line-height: 1.65;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(92, 26, 26, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}
p { margin-bottom: 1rem; }
a { color: var(--burgundy-mid); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ==========================================================================
   Age Gate
   ========================================================================== */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(30, 5, 5, 0.96);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  backdrop-filter: blur(4px);
}
.age-gate--hidden { display: none; }

.age-gate__box {
  background: linear-gradient(160deg, var(--burgundy-dark), var(--burgundy-deep));
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 500px; width: 100%;
  text-align: center;
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.15), var(--shadow-dark);
  position: relative; overflow: hidden;
}
.age-gate__box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.age-gate__crest { font-size: 3rem; margin-bottom: 0.75rem; }
.age-gate__title {
  font-family: Georgia, serif; font-size: 1.9rem; font-weight: 700;
  color: var(--gold-light); margin-bottom: 0.4rem;
}
.age-gate__subtitle { font-size: 1rem; color: var(--cream-muted); margin-bottom: 0.75rem; }
.age-gate__disclaimer { font-size: 0.82rem; color: var(--burgundy-light); margin-bottom: 2rem; line-height: 1.6; }
.age-gate__divider { border: none; border-top: 1px solid var(--burgundy-mid); margin: 1rem 0 1.5rem; }
.age-gate__buttons { display: flex; gap: 1rem; justify-content: center; }
.age-gate__btn {
  flex: 1; max-width: 165px; padding: 0.9rem 1.5rem;
  border-radius: 8px; font-size: 1rem; font-weight: 700;
  cursor: pointer; border: none; transition: transform 0.2s, box-shadow 0.2s;
  font-family: Georgia, serif;
}
.age-gate__btn:hover { transform: translateY(-2px); }
.age-gate__btn--yes {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--burgundy-deep);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45);
}
.age-gate__btn--yes:hover { box-shadow: 0 6px 28px rgba(201, 168, 76, 0.65); }
.age-gate__btn--no {
  background: transparent; color: var(--cream-muted);
  border: 1px solid var(--burgundy-mid);
}
.age-gate__btn--no:hover { border-color: var(--gold); color: var(--cream); }

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--burgundy-deep), var(--burgundy-dark));
  border-top: 2px solid var(--gold);
  z-index: 5000;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
}
.cookie-banner--hidden { display: none; }
.cookie-banner__text { flex: 1; min-width: 250px; font-size: 0.875rem; color: var(--cream-muted); margin: 0; }
.cookie-banner__text a { color: var(--gold); }
.cookie-banner__buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.6rem 1.25rem; border-radius: 6px;
  font-size: 0.875rem; font-weight: 700; cursor: pointer; border: none;
  transition: all 0.2s ease; font-family: inherit;
}
.cookie-btn--accept { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--burgundy-deep); }
.cookie-btn--accept:hover { background: linear-gradient(135deg, #f5e0a8, var(--gold-light)); }
.cookie-btn--essential { background: transparent; color: var(--cream-muted); border: 1px solid var(--burgundy-mid); }
.cookie-btn--essential:hover { border-color: var(--gold); color: var(--cream); }

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
  background: var(--cream);
  border-bottom: 3px solid var(--burgundy-mid);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(58, 13, 13, 0.12);
}
.site-header::after {
  content: '';
  display: block; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.site-header__container {
  max-width: 1200px; margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.site-header__logo-link { display: block; transition: opacity 0.2s; }
.site-header__logo-link:hover { opacity: 0.85; }
.site-header__logo-link img { height: 52px; width: auto; }

.site-header__nav { display: flex; gap: 0.25rem; align-items: center; }
.site-header__nav-link {
  color: var(--text-body); font-size: 0.9rem; font-weight: 600;
  padding: 0.45rem 0.9rem; border-radius: 6px;
  transition: all 0.2s ease; text-decoration: none;
  font-family: Georgia, serif; letter-spacing: 0.2px;
}
.site-header__nav-link:hover { background: var(--burgundy-mid); color: var(--gold-light); }
.site-header__menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; border-radius: 6px;
}
.site-header__menu-line { display: block; width: 24px; height: 2px; background: var(--text-main); border-radius: 2px; transition: all 0.3s; }
.site-header__menu-toggle--open .site-header__menu-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__menu-toggle--open .site-header__menu-line:nth-child(2) { opacity: 0; }
.site-header__menu-toggle--open .site-header__menu-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Container & Layout
   ========================================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem; }

/* ==========================================================================
   Page Hero / Header
   ========================================================================== */
.page-hero {
  background: linear-gradient(160deg, var(--burgundy-deep) 0%, var(--burgundy-dark) 60%, #4a1010 100%);
  text-align: center; padding: 3.5rem 1.5rem 3rem;
  position: relative; overflow: hidden; margin-bottom: 0;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 65%);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.page-hero__eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; display: block; position: relative;
}
.page-hero__title {
  font-family: Georgia, serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream); margin-bottom: 1rem; position: relative;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.page-hero__subtitle {
  font-size: 1.05rem; color: var(--cream-muted); max-width: 680px;
  margin: 0 auto; position: relative; line-height: 1.7;
}
.page-hero__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin-top: 1.25rem; display: block; position: relative; }

/* ==========================================================================
   Warning Section
   ========================================================================== */
.warning-section {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-left: 5px solid var(--burgundy-mid);
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; margin: 1.75rem 0;
  box-shadow: 0 2px 10px rgba(58, 13, 13, 0.07);
}
.warning-section__inner { display: flex; align-items: flex-start; gap: 1rem; }
.warning-section__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 3px; }
.warning-section__title { font-family: Georgia, serif; font-size: 0.95rem; font-weight: 700; color: var(--burgundy-mid); margin-bottom: 0.3rem; }
.warning-section__text { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.65; }
.warning-section__text a { color: var(--burgundy-mid); font-weight: 600; }
.warning-section__text a:hover { color: var(--gold); }
.warning-section__text strong { color: var(--text-body); }

/* ==========================================================================
   Casino Cards — Card layout with "editorial" feel
   ========================================================================== */
.casinos-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }

.casino-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius); padding: 0;
  display: flex; overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 12px rgba(58, 13, 13, 0.06);
}
.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(58, 13, 13, 0.14), var(--shadow-gold);
  border-color: var(--gold);
}

/* Left coloured stripe */
.casino-card__stripe {
  width: 6px; background: linear-gradient(180deg, var(--gold-light), var(--burgundy-mid));
  flex-shrink: 0;
}

.casino-card__body { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem; flex: 1; min-width: 0; }

.casino-card__rank {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy-mid), var(--burgundy-dark));
  color: var(--gold-light); font-family: Georgia, serif;
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 2px solid var(--gold);
}

.casino-card__badge {
  position: absolute; top: 14px; right: 16px;
  font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.65rem;
  border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase;
  font-family: "Segoe UI", sans-serif;
}
.casino-card__badge--editors-pick { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--burgundy-deep); }
.casino-card__badge--popular { background: linear-gradient(135deg, #e91e8c, #9c27b0); color: white; }
.casino-card__badge--top-choice { background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy-mid)); color: var(--gold-light); border: 1px solid var(--gold); }

.casino-card__logo {
  width: 90px; height: 90px; border-radius: var(--radius-sm); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); flex-shrink: 0;
  border: 2px solid var(--cream-dark);
  transition: border-color 0.2s ease;
}
.casino-card:hover .casino-card__logo { border-color: var(--gold); }
.casino-card__logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }

.casino-card__info { flex: 1; min-width: 0; }
.casino-card__name { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.3rem; }
.casino-card__rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; }
.casino-card__stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.casino-card__score { font-size: 1rem; font-weight: 700; color: var(--burgundy-mid); font-family: Georgia, serif; }
.casino-card__features { display: flex; flex-direction: column; gap: 0.28rem; }
.casino-card__feature { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; }
.casino-card__feature-check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.casino-card__feature a { color: var(--text-muted); font-size: 0.82rem; }
.casino-card__feature a:hover { color: var(--burgundy-mid); }

.casino-card__offer {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  min-width: 195px; flex-shrink: 0; padding: 1.5rem 1.5rem 1.5rem 0;
}

.casino-card__bonus {
  background: linear-gradient(160deg, #fff8ec, var(--cream));
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem; text-align: center; width: 100%;
  text-decoration: none; display: block;
  transition: all 0.2s ease;
}
.casino-card__bonus:hover { background: linear-gradient(160deg, var(--gold-pale), #fff8ec); box-shadow: 0 4px 16px rgba(201, 168, 76, 0.25); }
.casino-card__bonus-amount { font-size: 0.9rem; font-weight: 800; color: var(--burgundy-mid); line-height: 1.3; font-family: Georgia, serif; }
.casino-card__bonus-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }

.casino-card__play-btn {
  display: block; width: 100%; padding: 0.8rem 1rem;
  background: linear-gradient(135deg, var(--burgundy-mid), var(--burgundy-dark));
  color: var(--gold-light); font-weight: 800; font-size: 0.95rem;
  border-radius: var(--radius-sm); text-align: center; text-decoration: none;
  font-family: Georgia, serif; letter-spacing: 0.3px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(58, 13, 13, 0.35);
  border: 1px solid var(--gold);
}
.casino-card__play-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--burgundy-deep);
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.45);
}
.casino-card__terms { font-size: 0.7rem; color: var(--cream-muted); text-align: center; line-height: 1.4; }
.casino-card__terms a { color: var(--cream-muted); }
.casino-card__terms a:hover { color: var(--burgundy-mid); }

/* ==========================================================================
   Responsible Gaming Section
   ========================================================================== */
.responsible-section {
  background: linear-gradient(160deg, var(--burgundy-deep), var(--burgundy-dark));
  border-radius: 16px; padding: 2.5rem; margin-bottom: 3rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-dark);
}
.responsible-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.responsible-section__title { font-family: Georgia, serif; font-size: 1.6rem; color: var(--gold-light); margin-bottom: 1rem; text-align: center; }
.responsible-section__text { color: var(--cream-muted); font-size: 0.925rem; max-width: 800px; margin: 0 auto 1.25rem; text-align: center; }

.org-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2rem 0; }
.org-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px; padding: 1.25rem 1rem;
  text-align: center; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  transition: all 0.2s ease;
}
.org-card:hover { border-color: var(--gold); background: rgba(201, 168, 76, 0.08); transform: translateY(-2px); }
.org-card img { width: 80px; height: 48px; object-fit: contain; border-radius: 6px; }
.org-card__name { font-size: 0.85rem; font-weight: 700; color: var(--cream); }
.org-card__sub { font-size: 0.72rem; color: var(--cream-muted); }

.helpline-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(201, 168, 76, 0.2); border-radius: 12px; padding: 1.75rem; margin-top: 1.5rem; }
.helpline-box__title { font-family: Georgia, serif; font-size: 1.1rem; font-weight: 700; color: var(--gold-light); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.helpline-list { display: flex; flex-direction: column; gap: 0.75rem; }
.helpline-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--cream-muted); }
.helpline-item strong { color: var(--gold-light); }
.helpline-item a { color: var(--gold); }
.helpline-item a:hover { color: var(--gold-light); }
.helpline-cta { display: inline-block; margin-top: 1.25rem; padding: 0.7rem 1.75rem; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--burgundy-deep); font-family: Georgia, serif; font-weight: 700; border-radius: 8px; text-decoration: none; font-size: 0.9rem; transition: all 0.2s ease; }
.helpline-cta:hover { background: linear-gradient(135deg, #f5e0a8, var(--gold-light)); color: var(--burgundy-deep); }

/* ==========================================================================
   Guide / Info Section
   ========================================================================== */
.info-section {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius); padding: 2.5rem; margin-bottom: 3rem;
  box-shadow: 0 2px 12px rgba(58, 13, 13, 0.06);
  position: relative;
}
.info-section::before { content: ''; position: absolute; top: 0; left: 2rem; right: 2rem; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); border-radius: 0 0 3px 3px; }
.info-section__title { font-family: Georgia, serif; font-size: 1.5rem; color: var(--text-main); margin-bottom: 1.25rem; padding-top: 0.5rem; }
.info-section p { color: var(--text-muted); font-size: 0.925rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.45rem; margin: 1rem 0; }
.feature-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; color: var(--text-muted); }
.feature-item__check { color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ==========================================================================
   FAQ Section — Accordion with editorial style
   ========================================================================== */
.faq-section {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius); padding: 2.5rem; margin-bottom: 3rem;
  box-shadow: 0 2px 12px rgba(58, 13, 13, 0.06);
  position: relative;
}
.faq-section::before { content: ''; position: absolute; top: 0; left: 2rem; right: 2rem; height: 3px; background: linear-gradient(90deg, transparent, var(--burgundy-light), transparent); }
.faq-section__title { font-family: Georgia, serif; font-size: 1.5rem; color: var(--text-main); margin-bottom: 1.5rem; text-align: center; padding-top: 0.5rem; }

.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-item:last-child { border-bottom: none; }
.faq-item__question {
  width: 100%; background: none; border: none; padding: 1.1rem 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; gap: 1rem;
}
.faq-item__question-text { font-family: Georgia, serif; font-size: 0.95rem; font-weight: 700; color: var(--text-main); }
.faq-item__toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--cream-dark);
  color: var(--burgundy-mid); font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.2s ease;
}
.faq-item--expanded .faq-item__toggle { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--burgundy-deep); border-color: var(--gold); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item__answer-content { padding: 0 0 1rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }
.faq-item__answer-content a { color: var(--burgundy-mid); }
.faq-item__answer-content a:hover { color: var(--gold); }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb { display: flex; list-style: none; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.25rem; }
.breadcrumb li { display: flex; align-items: center; gap: 0.25rem; }
.breadcrumb a { color: var(--burgundy-mid); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--cream-dark); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, var(--burgundy-dark), var(--burgundy-deep));
  border-top: 3px solid var(--burgundy-mid);
  padding: 3rem 1.5rem 2rem; margin-top: 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__orgs { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--burgundy-mid); }
.footer__org-link { opacity: 0.75; transition: opacity 0.2s; display: block; }
.footer__org-link:hover { opacity: 1; }
.footer__org-link img { width: 72px; height: 44px; object-fit: contain; border-radius: 5px; }
.footer__badges { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer__badge-18 { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #c62828, #8b0000); color: white; font-size: 0.85rem; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid #ef5350; }
.footer__uk-badge { background: #003087; color: white; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase; }
.footer__divider { height: 1px; background: var(--burgundy-mid); margin: 1.5rem 0; }
.footer__links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer__link { color: var(--burgundy-light); font-size: 0.875rem; }
.footer__link:hover { color: var(--gold); }
.footer__text { font-size: 0.8rem; color: var(--burgundy-light); text-align: center; line-height: 1.7; max-width: 820px; margin: 0 auto 0.75rem; }
.footer__text a { color: var(--burgundy-light); }
.footer__text a:hover { color: var(--gold); }

/* ==========================================================================
   Casino Review Pages
   ========================================================================== */
.review-hero {
  background: linear-gradient(160deg, var(--burgundy-deep), var(--burgundy-dark));
  border-radius: 16px; padding: 2.5rem; margin-bottom: 2rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  box-shadow: var(--shadow-dark);
  position: relative;
}
.review-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent); border-radius: 16px 16px 0 0; }
.review-hero__logo { width: 120px; height: 80px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 2px solid var(--gold); overflow: hidden; }
.review-hero__logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.review-hero__info { flex: 1; min-width: 200px; }
.review-hero__name { font-family: Georgia, serif; font-size: 1.8rem; color: var(--gold-light); margin-bottom: 0.35rem; }
.review-hero__rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.review-hero__stars { color: var(--gold); font-size: 1.2rem; }
.review-hero__score { font-family: Georgia, serif; font-size: 1.3rem; font-weight: 800; color: var(--gold-light); }
.review-hero__features { display: flex; flex-direction: column; gap: 0.3rem; }
.review-hero__feature { font-size: 0.875rem; color: var(--cream-muted); display: flex; align-items: center; gap: 0.4rem; }
.review-hero__feature-check { color: var(--gold); font-weight: 700; }
.review-hero__feature a { color: var(--cream-muted); font-size: 0.875rem; }
.review-hero__feature a:hover { color: var(--gold); }
.review-hero__cta { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; min-width: 190px; }
.review-cta-btn {
  display: block; padding: 0.95rem 2rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--burgundy-deep); font-family: Georgia, serif;
  font-weight: 800; font-size: 1rem; border-radius: 10px;
  text-align: center; text-decoration: none; white-space: nowrap;
  transition: all 0.2s ease; box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}
.review-cta-btn:hover { background: linear-gradient(135deg, #f5e0a8, var(--gold-light)); box-shadow: 0 6px 28px rgba(201, 168, 76, 0.6); color: var(--burgundy-deep); transform: translateY(-2px); }
.review-cta-terms { font-size: 0.72rem; color: var(--burgundy-light); text-align: center; }
.review-cta-terms a { color: var(--burgundy-light); }

.review-section {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(58, 13, 13, 0.05);
}
.review-section__title {
  font-family: Georgia, serif; font-size: 1.15rem; color: var(--text-main);
  font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--cream-dark);
  display: flex; align-items: center; gap: 0.4rem;
}

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pros-cons__col h4 { font-family: Georgia, serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.75rem; }
.pros-cons__col--pros h4 { color: var(--burgundy-mid); }
.pros-cons__col--cons h4 { color: #b71c1c; }
.pros-cons__list { display: flex; flex-direction: column; gap: 0.4rem; list-style: none; }
.pros-cons__item { font-size: 0.875rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.5rem; }
.pros-cons__item--pro::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pros-cons__item--con::before { content: '✗'; color: #c62828; font-weight: 700; flex-shrink: 0; }

.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 0.75rem; }
.payment-item { background: var(--cream); border: 1px solid var(--cream-dark); border-radius: 8px; padding: 0.6rem 0.75rem; font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* ==========================================================================
   Policy Pages
   ========================================================================== */
.policy-header {
  background: linear-gradient(160deg, var(--burgundy-deep), var(--burgundy-dark));
  padding: 2.5rem 1.5rem; text-align: center; margin-bottom: 2.5rem;
  position: relative;
}
.policy-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.policy-header__title { font-family: Georgia, serif; font-size: 1.8rem; color: var(--gold-light); }
.policy-header__date { font-size: 0.875rem; color: var(--burgundy-light); margin-top: 0.5rem; }

.policy-content { max-width: 860px; margin: 0 auto; }
.policy-section { margin-bottom: 2.5rem; }
.policy-section__title { font-family: Georgia, serif; font-size: 1.1rem; color: var(--text-main); font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--cream-dark); }
.policy-section p, .policy-section li { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }
.policy-section ul, .policy-section ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-section li { margin-bottom: 0.4rem; }
.policy-section a { color: var(--burgundy-mid); }
.policy-section a:hover { color: var(--gold); }

/* ==========================================================================
   Underage Page
   ========================================================================== */
.underage-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: linear-gradient(160deg, var(--burgundy-deep), var(--burgundy-dark)); }
.underage-box { background: var(--cream); border: 2px solid var(--burgundy-mid); border-radius: 20px; padding: 3rem; max-width: 560px; width: 100%; text-align: center; box-shadow: var(--shadow-dark); }
.underage-box__icon { font-size: 4rem; margin-bottom: 1.25rem; }
.underage-box__title { font-family: Georgia, serif; font-size: 1.8rem; color: #b71c1c; margin-bottom: 0.75rem; }
.underage-box__text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.7; }
.underage-box__links { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.underage-link { display: inline-block; padding: 0.75rem 1.75rem; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.2s ease; font-family: Georgia, serif; }
.underage-link--primary { background: linear-gradient(135deg, var(--burgundy-mid), var(--burgundy-dark)); color: var(--gold-light); border: 1px solid var(--gold); }
.underage-link--primary:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--burgundy-deep); }
.underage-link--secondary { color: var(--text-muted); font-size: 0.85rem; }
.underage-link--secondary:hover { color: var(--burgundy-mid); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .org-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr; gap: 1rem; }
  .review-hero { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .site-header__nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); box-shadow: 0 8px 24px rgba(58,13,13,0.15); padding: 1rem; gap: 0.25rem; border-top: 2px solid var(--burgundy-mid); }
  .site-header__nav--open { display: flex; }
  .site-header__menu-toggle { display: flex; }
  .site-header__container { position: relative; }
  .casino-card { flex-direction: column; }
  .casino-card__stripe { width: 100%; height: 5px; }
  .casino-card__body { flex-wrap: wrap; gap: 1rem; }
  .casino-card__offer { width: 100%; padding: 0 1.5rem 1.5rem; flex-direction: row; flex-wrap: wrap; }
  .casino-card__bonus { flex: 1; }
  .casino-card__play-btn { flex: 1; min-width: 120px; }
  .casino-card__terms { width: 100%; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .age-gate__buttons { flex-direction: column; align-items: stretch; }
  .age-gate__btn { max-width: 100%; }
}
@media (max-width: 480px) {
  .container { padding: 1.25rem 1rem; }
  .page-hero { padding: 2.5rem 1rem 2rem; }
  .casino-card__badge { top: 8px; right: 10px; font-size: 0.62rem; }
  .responsible-section, .info-section, .faq-section, .review-section { padding: 1.5rem 1.25rem; }
  .underage-box { padding: 2rem 1.5rem; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }
