/* ═══════════════════════════════════════════════════════════
   CasinoerUdenROFUS.uk.com — Main Stylesheet
   Palette: White (#ffffff) + Blue tones (#2563eb, #1d4ed8, #dbeafe, #eff6ff)
   Font: Inter + Outfit (Google Fonts)
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Blue palette */
  --red-50:  #eff6ff;
  --red-100: #dbeafe;
  --red-200: #bfdbfe;
  --red-400: #60a5fa;
  --red-500: #3b82f6;
  --red-600: #2563eb;
  --red-700: #1d4ed8;
  --red-800: #1e40af;
  --red-900: #1e3a8a;
  --red-brand: #2563eb;
  --red-dark:  #1d4ed8;

  /* Neutral palette */
  --white:    #ffffff;
  --gray-50:  #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --gray-900: #212529;

  /* Typography */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;

  /* Spacing */
  --section-py: 5rem;
  --container-max: 1200px;
  --container-px: 1.5rem;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.10);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.12);

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Transitions */
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* ─── UTILITIES ─────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.text-gradient {
  background: linear-gradient(135deg, var(--red-brand) 0%, var(--red-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-light { background: var(--gray-50); }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red-brand);
  color: var(--white);
  padding: 0.75rem 1.6rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* ─── SITE HEADER ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-icon {
  color: var(--red-brand);
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.logo-accent { color: var(--red-brand); }

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  gap: 0.25rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.site-nav a:hover {
  color: var(--red-brand);
  background: var(--red-50);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-700);
  margin-left: auto;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  padding: 0.75rem var(--container-px);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-link {
  display: block;
  padding: 0.6rem 0.8rem;
  font-weight: 500;
  font-size: 0.925rem;
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  transition: var(--transition);
}

.mobile-link:hover {
  color: var(--red-brand);
  background: var(--red-50);
}

/* ─── COMPACT HERO (EEAT) ──────────────────────────────────── */
.hero-compact {
  background: var(--white);
  padding: 2rem 0 0;
  border-bottom: 1px solid var(--gray-200);
}

.hero-h1 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.author-bar {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--red-brand);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.1rem;
  margin-bottom: 1.25rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.author-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.author-label {
  font-weight: 400;
  color: rgba(255,255,255,0.65);
}

.author-name {
  color: var(--white);
}

.author-divider {
  margin: 0 0.4rem;
  opacity: 0.4;
}

.hero-intro {
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--gray-700);
  padding-bottom: 1.75rem;
}


/* ─── SECTION COMMON ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  padding: var(--section-py) 0;
}

/* ─── CASINO CARDS (SIMPLIFIED ROW) ─────────────────────────── */
.casinos-section {
  padding: 1.5rem 0 3rem;
  background: var(--white);
}

.list-title {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  color: var(--red-brand);
  margin-bottom: 1rem;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Single card row ── */
.cc {
  display: grid;
  grid-template-columns: 160px 70px 1fr 1.2fr 160px;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.cc:first-child {
  border-top: 1px solid var(--gray-200);
}

.cc:hover {
  background: #faf9f7;
  border-left: 3px solid var(--red-brand);
  padding-left: calc(1.25rem - 2px);
}

/* Logo block */
.cc-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.cc-logo img {
  width: 120px;
  height: 48px;
  object-fit: contain;
}

.cc-badge {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--red-brand);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  white-space: nowrap;
}

/* Rating circle */
.cc-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.cc-score {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 3px solid #4a90d9;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #2563eb;
  background: var(--white);
}

.cc-rated {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2563eb;
}

/* USP text */
.cc-usp {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.4;
}

/* Bonus highlight */
.cc-bonus {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gray-900);
  text-align: center;
  line-height: 1.35;
}

/* CTA button */
.cc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--red-brand), #4f8cf7);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.cc-cta:hover {
  background: linear-gradient(135deg, var(--red-dark), #2563eb);
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}

/* Preferred (featured) card — Premium VIP */
.cc-preferred {
  background: linear-gradient(135deg, #0a1628 0%, #0f1f3d 50%, #0c1830 100%);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(96,165,250,0.08),
    0 8px 32px rgba(0,0,0,0.35),
    0 0 60px -10px rgba(37,99,235,0.15);
}

/* Animated shimmer sweep */
.cc-preferred::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(96,165,250,0.04) 40%,
    rgba(96,165,250,0.08) 50%,
    rgba(96,165,250,0.04) 60%,
    transparent 100%
  );
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* Thin gold top line */
.cc-preferred::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4f8cf7, #60a5fa, #4f8cf7, transparent);
}

/* Logo gets frosted dark cell */
.cc-preferred .cc-logo {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.65rem;
  backdrop-filter: blur(6px);
}

/* Gold-tinted rating */
.cc-score-gold {
  border-color: #4f8cf7;
  color: #60a5fa;
  background: rgba(96,165,250,0.08);
}

.cc-preferred .cc-rated {
  color: #4f8cf7;
}

/* Text colors */
.cc-preferred .cc-usp {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cc-preferred .cc-bonus {
  background: rgba(96,165,250,0.08);
  border: 1px solid rgba(96,165,250,0.2);
  color: #c8ddf5;
  font-weight: 700;
}

/* CTA — gold variant */
.cc-preferred .cc-cta {
  background: linear-gradient(135deg, #4f8cf7, #60a5fa);
  color: #0a1628;
  box-shadow: 0 4px 18px rgba(96,165,250,0.35);
}

.cc-preferred .cc-cta:hover {
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(96,165,250,0.5);
}

/* Hover glow */
.cc-preferred:hover {
  background: linear-gradient(135deg, #0e1e38 0%, #142d52 50%, #0f2240 100%);
  border-color: rgba(96,165,250,0.25);
  border-left: 1px solid rgba(96,165,250,0.25);
  padding-left: 1.25rem;
  box-shadow:
    0 0 0 1px rgba(96,165,250,0.15),
    0 12px 40px rgba(0,0,0,0.4),
    0 0 80px -10px rgba(37,99,235,0.2);
}


/* ─── CASINO COMPARISON TABLE ──────────────────────────────── */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.casino-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.875rem;
  min-width: 650px;
}

.casino-comparison-table thead {
  background: var(--red-brand);
  color: var(--white);
}

.casino-comparison-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.casino-comparison-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
  white-space: nowrap;
}

.casino-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.casino-comparison-table tbody tr:hover {
  background: var(--red-50);
}

.comparison-highlight {
  background: linear-gradient(90deg, rgba(37,99,235,0.06), rgba(96,165,250,0.04)) !important;
  border-left: 3px solid var(--red-brand);
}

.comparison-highlight td {
  font-weight: 600;
  color: var(--gray-900);
}

.table-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.78rem;
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
  background: var(--gray-50);
}

.table-score.best {
  border-color: var(--red-brand);
  color: var(--red-brand);
  background: var(--red-50);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* ─── HOW WE RATE ────────────────────────────────────────────── */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.criteria-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.criteria-card:hover {
  border-color: var(--red-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.criteria-icon {
  width: 56px;
  height: 56px;
  background: var(--red-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-brand);
  margin-bottom: 1rem;
}

.criteria-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.criteria-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ─── TWO COLUMN ────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: start;
}

.col-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.col-text p {
  color: var(--gray-700);
  margin-bottom: 0.85rem;
  font-size: 0.925rem;
  line-height: 1.75;
}

.styled-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 1rem 0;
}

.styled-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.styled-list li iconify-icon {
  color: var(--red-brand);
  margin-top: 1px;
  flex-shrink: 0;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: var(--red-50);
  border: 1px solid var(--red-200);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: var(--red-dark);
  font-size: 0.85rem;
  line-height: 1.6;
}

.info-box iconify-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.info-box p { margin: 0; color: inherit; }

.warning-box {
  background: #fffbeb;
  border-color: #fcd34d;
  color: #92400e;
}

/* Comparison table */
.visual-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.visual-card h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--gray-200);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 0.55rem 0.5rem;
  text-align: left;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
  font-weight: 700;
  color: var(--gray-700);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comparison-table td:first-child {
  color: var(--gray-600);
}

.comparison-table td:last-child {
  font-weight: 600;
  color: var(--gray-900);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}


/* ─── BONUS GRID ─────────────────────────────────────────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bonus-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.bonus-card:hover {
  border-color: var(--red-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.bonus-icon {
  width: 50px;
  height: 50px;
  background: var(--red-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-brand);
  margin-bottom: 0.9rem;
}

.bonus-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
  color: var(--gray-900);
}

.bonus-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ─── GAMES GRID ─────────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.game-cat {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transition: var(--transition);
}

.game-cat:hover {
  border-color: var(--red-200);
  box-shadow: var(--shadow-md);
}

.game-cat-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--red-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-brand);
}

.game-cat-body h3 {
  font-size: 0.975rem;
  margin-bottom: 0.35rem;
  color: var(--gray-900);
}

.game-cat-body p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ─── PAYMENTS ───────────────────────────────────────────────── */
.payments-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.payment-group {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.payment-group h3 {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.payment-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.withdrawal-times h3 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--gray-900);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.time-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.time-item iconify-icon {
  color: var(--red-brand);
}

.time-method {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.time-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-900);
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--red-200);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--gray-900);
  text-align: left;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--red-50);
}

.faq-question[aria-expanded="true"] {
  background: var(--red-50);
  color: var(--red-brand);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
  border-top: 1px solid var(--red-100);
  padding-top: 1rem;
}

/* ─── RESPONSIBLE SECTION ── */
.responsible-section {
  background: linear-gradient(135deg, var(--red-brand) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 3rem 0;
}

.responsible-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.responsible-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.responsible-text h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.responsible-text p {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.responsible-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.responsible-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  transition: var(--transition);
}

.responsible-link:hover {
  background: rgba(255,255,255,0.25);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  margin-bottom: 2rem;
}

.logo-footer .logo-text {
  color: rgba(255,255,255,0.9);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
  max-width: 300px;
  line-height: 1.65;
}

.footer-nav h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--red-400);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 900px;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cc {
    grid-template-columns: 140px 60px 1fr 1.2fr 140px;
    gap: 1rem;
  }

  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: 1fr; }
  .payments-wrap { grid-template-columns: repeat(2, 1fr); }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 3rem;
  }

  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  /* Compact hero mobile */
  .hero-compact { padding: 1.25rem 0 0; }
  .hero-h1 { font-size: 1.2rem; }
  .author-bar {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.85rem;
  }

  .author-avatar {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .author-meta {
    font-size: 0.75rem;
    line-height: 1.55;
  }

  .author-divider {
    margin: 0 0.2rem;
  }

  /* Casino card mobile — stacked */
  .cc {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 1.1rem 1rem;
    text-align: center;
  }

  .cc-logo {
    justify-content: center;
  }

  .cc-logo img {
    width: 140px;
    height: 56px;
  }

  .cc-rating {
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }

  .cc-score {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .cc-cta {
    width: 100%;
    padding: 0.7rem;
  }

  .criteria-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .payments-wrap { grid-template-columns: 1fr 1fr; }
  .time-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }

  .responsible-inner {
    flex-direction: column;
    text-align: center;
  }

  .responsible-links { justify-content: center; }
}

@media (max-width: 480px) {
  .payments-wrap { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: 1fr 1fr; }
  .author-avatar { width: 40px; height: 40px; }
  .author-meta { font-size: 0.78rem; }
}

/* ─── STICKY BOTTOM BANNER ──────────────────────────────────── */
.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #0a1628, #0f1f3d);
  border-top: 2px solid var(--red-brand);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  padding: 1rem 1.5rem;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.sticky-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.sticky-banner-left {
  flex-shrink: 0;
}

.sticky-banner-logo {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  border-radius: 6px;
}

.sticky-banner-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.sticky-banner-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-banner-text strong {
  color: #fff;
  font-weight: 700;
}

.sticky-banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 3.5rem;
  min-width: 200px;
  background: linear-gradient(135deg, var(--red-brand), #4f8cf7);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 3px 12px rgba(37,99,235,0.35);
  flex-shrink: 0;
}

.sticky-banner-cta:hover {
  background: linear-gradient(135deg, var(--red-dark), #2563eb);
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(37,99,235,0.5);
}

.sticky-banner-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.3rem;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}

.sticky-banner-close:hover {
  color: #fff;
}

/* Add bottom padding to footer so banner doesn't overlap */
.site-footer {
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .sticky-banner {
    padding: 0.75rem 0.85rem;
  }

  .sticky-banner-inner {
    gap: 0.7rem;
  }

  .sticky-banner-logo {
    height: 42px;
    max-width: 100px;
  }

  .sticky-banner-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .sticky-banner-text {
    font-size: 0.8rem;
    white-space: normal;
    line-height: 1.35;
  }

  .sticky-banner-cta {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
    min-width: unset;
    width: 100%;
    justify-content: center;
  }
}
