/* =========================================
   IRISH CASINO REVIEW — ULTRA MODERN DESIGN
   Dark Emerald · Geometric · Premium
   ========================================= */

:root {
  --emerald: #00C46A;
  --emerald-dim: #00a559;
  --emerald-dark: #006b3c;
  --emerald-glow: rgba(0, 196, 106, 0.15);
  --gold: #F5C842;
  --gold-dim: #d4a917;
  --ink: #080f15;
  --ink-2: #0d1a25;
  --ink-3: #112233;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #e8f0f7;
  --text-muted: #7a9ab5;
  --text-dim: #4a6275;
  --red: #ff4757;
  --blue: #3D8BFF;
  --purple: #9b59b6;
  --silver: #b8c8d8;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(0, 196, 106, 0.2);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--ink);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--emerald); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- AGE BANNER ---- */
.age-banner {
  background: linear-gradient(135deg, #1a0a00, #2a1500);
  border-bottom: 1px solid rgba(245, 200, 66, 0.3);
  padding: 10px 0;
}
.age-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: #d4a917;
}
.age-banner__inner .age-icon { font-size: 1.1rem; }
.age-banner__inner p { flex: 1; }
.age-banner__inner a { color: #F5C842; text-decoration: underline; }
.age-banner__inner button {
  background: none;
  border: none;
  color: #d4a917;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background var(--transition);
}
.age-banner__inner button:hover { background: rgba(245, 200, 66, 0.1); }

/* ---- HEADER ---- */
.header { position: sticky; top: 0; z-index: 100; }

.header__top {
  background: var(--ink-2);
  border-bottom: 1px solid var(--glass-border);
  padding: 6px 0;
}
.header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.header__responsible {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}
.header__tagline { color: var(--text-muted); font-size: 0.78rem; }
.resp-link { color: var(--emerald); font-weight: 500; }
.sep { color: var(--text-dim); }

.header__nav {
  background: rgba(8, 15, 21, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0;
}
.header__nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  margin-right: 40px;
}
.logo__icon {
  font-size: 1.8rem;
  color: var(--emerald);
  filter: drop-shadow(0 0 8px var(--emerald));
}
.logo__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo__text span { color: var(--emerald); }
.logo--footer .logo__text { font-size: 1.2rem; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
}
.nav__links a {
  display: block;
  padding: 8px 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--emerald);
  background: var(--emerald-glow);
}

.header__cta { margin-left: auto; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- 18+ BADGE ---- */
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff4757;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.badge-18--lg { font-size: 0.75rem; padding: 3px 8px; }
.badge-18--xl { font-size: 1rem; padding: 6px 14px; border-radius: 8px; }

/* ---- HERO ---- */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: radial-gradient(ellipse 100% 80% at 60% 50%, rgba(0, 80, 40, 0.25) 0%, transparent 70%),
              radial-gradient(ellipse 60% 60% at 10% 80%, rgba(0, 196, 106, 0.08) 0%, transparent 60%),
              var(--ink);
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,196,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,196,106,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 196, 106, 0.12);
  top: -100px;
  right: -50px;
}
.hero__glow--2 {
  width: 300px;
  height: 300px;
  background: rgba(245, 200, 66, 0.06);
  bottom: 0;
  left: 100px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.flag { font-size: 1rem; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero__title-accent {
  color: var(--emerald);
  display: block;
  text-shadow: 0 0 60px rgba(0, 196, 106, 0.4);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 28px;
  width: fit-content;
}
.hero__stat { text-align: center; padding: 0 20px; }
.hero__stat:first-child { padding-left: 0; }
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--emerald);
  line-height: 1;
}
.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero__stat-div {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__card-stack {
  position: relative;
  width: 320px;
  height: 360px;
}
.hero__orb {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,196,106,0.3), rgba(0,196,106,0.05));
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(20px);
  animation: pulse 3s ease-in-out infinite;
}
.hero__float-card {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.hero__float-card--1 { top: 20px; left: 20px; animation: float1 4s ease-in-out infinite; color: var(--emerald); border-color: rgba(0,196,106,0.3); }
.hero__float-card--2 { top: 100px; right: 0; animation: float2 4s ease-in-out infinite 0.5s; color: var(--gold); border-color: rgba(245,200,66,0.3); }
.hero__float-card--3 { bottom: 120px; left: 10px; animation: float3 4s ease-in-out infinite 1s; }
.hero__float-card--4 { bottom: 40px; right: 20px; animation: float1 4s ease-in-out infinite 1.5s; color: var(--blue); border-color: rgba(61,139,255,0.3); }

@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-8px) translateX(4px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }
@keyframes pulse { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.6} 50%{transform:translate(-50%,-50%) scale(1.1);opacity:1} }

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-dim);
  z-index: 1;
}
.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(4px)} }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--ink-2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item__icon { font-size: 1rem; }

/* ---- SECTIONS ---- */
.casinos-section, .how-we-rate, .bonuses-section, .faq-section {
  padding: 80px 0;
}
.how-we-rate { background: var(--ink-2); }
.bonuses-section { background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,196,106,0.05) 0%, transparent 70%), var(--ink); }

.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
}
.section-header--center .section-sub { margin: 0 auto; }
.year-badge {
  display: inline-block;
  font-size: 0.65em;
  background: var(--emerald-glow);
  border: 1px solid rgba(0,196,106,0.3);
  color: var(--emerald);
  padding: 2px 10px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 8px;
  font-family: var(--font-body);
  font-weight: 600;
}

/* ---- CASINO CARDS ---- */
.casino-list { display: flex; flex-direction: column; gap: 24px; }

.casino-card {
  display: grid;
  grid-template-columns: 80px 180px 1fr 200px 220px;
  gap: 24px;
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.casino-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition);
  background: linear-gradient(135deg, rgba(0,196,106,0.06), transparent);
  pointer-events: none;
  z-index: 0;
}
.casino-card > * { position: relative; z-index: 1; }
.casino-card:hover { border-color: rgba(0,196,106,0.3); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.casino-card:hover::before { opacity: 1; }

.casino-card--featured {
  border-color: rgba(0,196,106,0.35);
  background: linear-gradient(135deg, rgba(0,196,106,0.06), var(--glass));
  box-shadow: 0 0 40px rgba(0,196,106,0.1);
}
.casino-card--irish { border-left: 3px solid var(--emerald); }

.irish-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  pointer-events: none;
  z-index: 2;
  background: rgba(0,196,106,0.15);
  border: 1px solid rgba(0,196,106,0.3);
  color: var(--emerald);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.irish-tag--lg { position: static; display: inline-block; margin-bottom: 12px; font-size: 0.8rem; }

.casino-card__rank {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dim);
  text-align: center;
  letter-spacing: -0.04em;
}
.casino-card--featured .casino-card__rank { color: var(--emerald); }

/* Casino Logos */
.casino-logo {
  width: 160px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 1px solid var(--glass-border);
}
.casino-logo--netbet { background: linear-gradient(135deg, #1a1230, #0d0a20); color: #7c4dff; border-color: rgba(124,77,255,0.3); }
.casino-logo--xl { width: 160px; height: 70px; font-size: 1.3rem; }

.casino-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-gold { background: rgba(245,200,66,0.15); color: var(--gold); border: 1px solid rgba(245,200,66,0.3); }
.badge-silver { background: rgba(184,200,216,0.1); color: var(--silver); border: 1px solid rgba(184,200,216,0.25); }
.badge-green { background: rgba(139,195,74,0.12); color: #8bc34a; border: 1px solid rgba(139,195,74,0.3); }
.badge-blue { background: rgba(61,139,255,0.12); color: var(--blue); border: 1px solid rgba(61,139,255,0.3); }
.badge-purple { background: rgba(155,89,182,0.12); color: #b27bcc; border: 1px solid rgba(155,89,182,0.3); }

.casino-card__logo-wrap { display: flex; flex-direction: column; align-items: flex-start; }

.casino-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.casino-card__stars { display: flex; align-items: center; gap: 2px; margin-bottom: 10px; }
.star { color: var(--text-dim); font-size: 1rem; }
.star--filled { color: var(--gold); }
.star--lg { font-size: 1.4rem; }
.casino-card__rating { font-size: 0.85rem; color: var(--text-muted); margin-left: 6px; font-weight: 600; }

.casino-card__bonus {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 8px;
  background: rgba(0,196,106,0.08);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0,196,106,0.15);
}
.bonus-icon { font-size: 0.9rem; }

.casino-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.casino-card__license {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  position: relative;
  z-index: 5;
}
.license-icon { font-size: 0.8rem; }
.license-link { color: var(--text-dim); text-decoration: underline; text-underline-offset: 2px; font-size: 0.73rem; cursor: pointer; position: relative; z-index: 5; }
.license-link:hover { color: var(--emerald); }

.casino-card__pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pros h4 { color: var(--emerald); font-size: 0.75rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.cons h4 { color: var(--red); font-size: 0.75rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.pros ul, .cons ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.pros li { font-size: 0.78rem; color: var(--text-muted); padding-left: 12px; position: relative; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--emerald); font-weight: 700; }
.cons li { font-size: 0.78rem; color: var(--text-muted); padding-left: 12px; position: relative; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

.casino-card__actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.casino-card__tcs { font-size: 0.68rem; color: var(--text-dim); text-align: center; line-height: 1.3; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  text-decoration: none;
  position: relative;
  z-index: 5;
}
.btn--primary {
  background: var(--emerald);
  color: #000;
}
.btn--primary:hover { background: #00e077; color: #000; box-shadow: 0 0 20px rgba(0,196,106,0.4); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
}
.btn--outline:hover { border-color: var(--emerald); color: var(--emerald); background: var(--emerald-glow); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--sm { padding: 8px 16px; font-size: 0.82rem; }
.btn--full { width: 100%; }
.btn__arrow { transition: transform var(--transition); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---- HOW WE RATE ---- */
.rating-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rating-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.rating-card:hover { border-color: rgba(0,196,106,0.25); transform: translateY(-3px); }
.rating-card__icon { font-size: 2rem; margin-bottom: 16px; }
.rating-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.rating-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.rating-weight {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--emerald-glow);
  border: 1px solid rgba(0,196,106,0.2);
  color: var(--emerald);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ---- BONUS TABLE ---- */
.bonus-table-wrap { overflow-x: auto; }
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.bonus-table th {
  background: var(--ink-3);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.bonus-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.88rem;
  color: var(--text);
}
.bonus-table tr:hover td { background: rgba(0,196,106,0.03); }
.bonus-table__casino { display: flex; align-items: center; gap: 12px; }
.bonus-table__logo {
  width: 70px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.bonus-logo--williamhill { background: linear-gradient(135deg, #0047AB, #003580); color: #FFD700; }
.bonus-logo--netbet { background: linear-gradient(135deg, #1a1230, #0d0a20); color: #7c4dff; }

.bonus-table__offer strong { color: var(--emerald); }
.wagering-badge {
  background: rgba(255,71,87,0.12);
  border: 1px solid rgba(255,71,87,0.2);
  color: #ff7c8a;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.bonus-disclaimer {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-dim);
  margin-top: 16px;
}

/* ---- FAQ ---- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: '+'; color: var(--emerald); font-size: 1.2rem; font-weight: 300; transition: transform var(--transition); }
.faq-q:hover { color: var(--emerald); }
.faq-q.active::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 20px 18px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a.open { max-height: 300px; }

/* ---- FOOTER ---- */
.footer { background: var(--ink-2); }

.footer__responsible {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.06), rgba(245, 200, 66, 0.04));
  border-top: 1px solid rgba(255,71,87,0.15);
  border-bottom: 1px solid var(--glass-border);
  padding: 32px 0;
}
.footer__resp-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.footer__age-badge { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.footer__age-badge p { font-size: 0.82rem; color: var(--text-muted); max-width: 220px; }

.footer__orgs { display: flex; flex-wrap: wrap; gap: 10px; flex: 1; }
.org-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid;
}
.org-badge--aware { background: rgba(0,196,106,0.08); border-color: rgba(0,196,106,0.2); color: var(--emerald); }
.org-badge--care { background: rgba(61,139,255,0.08); border-color: rgba(61,139,255,0.2); color: var(--blue); }
.org-badge--therapy { background: rgba(139,195,74,0.08); border-color: rgba(139,195,74,0.2); color: #8bc34a; }
.org-badge--mga { background: rgba(245,200,66,0.08); border-color: rgba(245,200,66,0.2); color: var(--gold); }
.org-badge--grai { background: rgba(0,196,106,0.06); border-color: rgba(0,196,106,0.15); color: var(--text-muted); }
.org-badge--ecogra { background: rgba(255,255,255,0.04); border-color: var(--glass-border); color: var(--text-muted); }
.org-badge:hover { transform: translateY(-2px); opacity: 0.85; }

.footer__main { padding: 56px 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand p { font-size: 0.83rem; color: var(--text-dim); line-height: 1.7; margin: 16px 0 20px; }
.footer__18-block { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--text-dim); }

.footer__links-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__links-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links-col li a { font-size: 0.85rem; color: var(--text-dim); transition: color var(--transition); }
.footer__links-col li a:hover { color: var(--emerald); }

.footer__bottom {
  background: var(--ink);
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
}
.footer__bottom-inner { display: flex; flex-direction: column; gap: 10px; }
.footer__disclaimer { font-size: 0.75rem; color: var(--text-dim); line-height: 1.6; }
.footer__copyright { font-size: 0.72rem; color: var(--text-dim); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ---- REVIEW PAGES ---- */
.review-hero {
  background: linear-gradient(135deg, rgba(0,196,106,0.06), var(--ink-2));
  border-bottom: 1px solid var(--glass-border);
  padding: 60px 0;
}
.breadcrumb { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 32px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--emerald); }
.breadcrumb span { margin: 0 6px; }

.review-hero__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.review-hero__left { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.review-hero__right { flex: 1; min-width: 300px; }
.review-hero__right h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 16px; }

.review-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.review-stars { display: flex; gap: 3px; }
.review-rating__num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.review-rating__label { font-size: 0.8rem; color: var(--text-muted); }

.review-hero__bonus-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--glass);
  border: 1px solid rgba(0,196,106,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.review-hero__bonus-box .bonus-icon { font-size: 1.5rem; }
.review-hero__bonus-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.review-hero__bonus-val { font-size: 1.1rem; font-weight: 700; color: var(--emerald); margin: 2px 0; }
.review-hero__bonus-wager { font-size: 0.75rem; color: var(--text-dim); }
.review-hero__tcs { font-size: 0.73rem; color: var(--text-dim); margin-top: 10px; }

.review-body { padding: 60px 0; }
.review-body__grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }

.review-main { display: flex; flex-direction: column; gap: 40px; }
.review-main h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.review-snapshot { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 28px; }
.snapshot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.snapshot-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
}
.snapshot-item--full { grid-column: 1/-1; }
.snapshot-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); }
.snapshot-val { font-size: 0.9rem; font-weight: 600; color: var(--text); }

.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.review-pros, .review-cons {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
}
.review-pros h3 { color: var(--emerald); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.review-cons h3 { color: var(--red); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.review-pros ul, .review-cons ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.review-pros li { font-size: 0.85rem; color: var(--text-muted); padding-left: 16px; position: relative; }
.review-pros li::before { content: '✓'; position: absolute; left: 0; color: var(--emerald); font-weight: 700; }
.review-cons li { font-size: 0.85rem; color: var(--text-muted); padding-left: 16px; position: relative; }
.review-cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

.review-content { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 32px; }
.review-content p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.review-content strong { color: var(--text); }

.licence-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(245,200,66,0.05);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: var(--radius);
  padding: 20px;
}
.licence-box__icon { font-size: 1.5rem; }
.licence-box__main { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.licence-box__detail { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.licence-links { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.licence-link { font-size: 0.82rem; color: var(--emerald); text-decoration: underline; text-underline-offset: 2px; width: fit-content; }
.licence-link:hover { color: var(--gold); }

.provider-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.provider-tag {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 100px;
  transition: all var(--transition);
}
.provider-tag:hover { border-color: rgba(0,196,106,0.3); color: var(--emerald); }

/* Aside */
.review-aside { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }

.aside-cta {
  background: linear-gradient(135deg, rgba(0,196,106,0.1), var(--glass));
  border: 1px solid rgba(0,196,106,0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.aside-cta h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 8px; }
.aside-cta p { font-size: 0.85rem; color: var(--emerald); font-weight: 600; margin-bottom: 16px; }
.aside-tcs { font-size: 0.7rem; color: var(--text-dim); margin-top: 10px; }

.aside-other {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
}
.aside-other h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 14px; }
.aside-casino-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--glass-border);
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.84rem;
  transition: color var(--transition);
}
.aside-casino-link:last-child { border-bottom: none; }
.aside-casino-link:hover { color: var(--emerald); }
.aside-casino-logo {
  width: 50px;
  height: 24px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}
.aside-logo--williamhill { background: linear-gradient(135deg,#0047AB,#003580); color:#FFD700; }
.aside-logo--netbet { background: linear-gradient(135deg,#1a1230,#0d0a20); color:#7c4dff; }
.aside-rating { margin-left: auto; color: var(--gold); font-size: 0.8rem; font-weight: 600; }

/* ---- LEGAL PAGES ---- */
.legal-section { padding: 60px 0 80px; }
.legal-header { margin-bottom: 32px; }
.legal-content {
  max-width: 780px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.legal-content h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.legal-updated { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 28px; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--emerald); margin: 28px 0 10px; }
.legal-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.legal-content a { color: var(--emerald); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .casino-card {
    grid-template-columns: 60px 160px 1fr;
    grid-template-rows: auto auto auto;
  }
  .casino-card__pros-cons { grid-column: 1/-1; grid-row: 2; }
  .casino-card__actions { grid-column: 1/-1; flex-direction: row; justify-content: flex-end; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__visual { display: none; }
  .hero__stats { margin: 0 auto; }
  .rating-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .review-body__grid { grid-template-columns: 1fr; }
  .review-aside { position: static; }
}

@media (max-width: 768px) {
  .casino-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .casino-card__rank { font-size: 1.5rem; display: inline; }
  .casino-card__logo-wrap { flex-direction: row; align-items: center; gap: 12px; }
  .casino-card__pros-cons { grid-template-columns: 1fr; }
  .casino-card__actions { flex-direction: column; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .header__top { display: none; }
  .hero__stats { flex-wrap: wrap; justify-content: center; }
  .rating-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .snapshot-grid { grid-template-columns: 1fr 1fr; }
  .review-pros-cons { grid-template-columns: 1fr; }
  .legal-content { padding: 24px; }
  .footer__resp-inner { flex-direction: column; }
}

/* Mobile nav (JS-toggled) */
.nav__links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--ink-2);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 24px;
  gap: 4px;
  z-index: 99;
}

.casino-logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.bonus-table__logo .casino-logo__img {
  padding: 4px;
}

.aside-casino-logo .casino-logo__img {
  padding: 3px;
}

.org-logo {
  height: 32px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity var(--transition), filter var(--transition);
}

.org-badge:hover .org-logo {
  opacity: 1;
  filter: brightness(1) invert(0);
}