/* deslop-ignore-file 06 09 10 19 33 */
/* CSS Design System for Top5SitesDePokerEnLigne.com */
/* Theme: Royal Poker Emerald & Gold */


:root {
  --bg-dark: #030b08;
  --bg-deep: #010604;
  --card-bg: linear-gradient(135deg, #071911 0%, #020906 100%);
  --card-hover-bg: linear-gradient(135deg, #0b2519 0%, #030f0a 100%);
  --accent-gold: #D4AF37;
  --accent-gold-light: #f3d05a;
  --accent-gold-dark: #997c20;
  --accent-gold-glow: rgba(212, 175, 55, 0.3);
  --text-light: #ffffff;
  --text-muted: #8fa39a;
  --border-gold: rgba(212, 175, 55, 0.2);
  --border-gold-hover: rgba(212, 175, 55, 0.5);
  --red-alert: #ff4d4d;
  --red-glow: rgba(255, 77, 77, 0.25);
  --green-success: #00E676;
}

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

body {
  background-image: radial-gradient(rgba(1, 6, 4, 0.45) 0%, rgba(1, 6, 4, 0.85) 100%), url('/uploads/background.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: cover;
  color: var(--text-light);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(3, 11, 8, 0.95);
  backdrop-filter: blur(8px);
  border-left: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-gold);
}

p a, .popup-text a, .footer-resp-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* Visually Hidden for SEO accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ── POPUPS ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 6, 4, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
}

.popup-overlay.hidden {
  display: none;
}

.popup-box {
  background: linear-gradient(160deg, #091a13 0%, #020906 100%);
  border: 1px solid var(--accent-gold);
  border-radius: 20px;
  padding: 44px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px var(--accent-gold-glow);
  animation: fadeInUp 0.3s ease;
}

.popup-icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-gold);
  box-shadow: 0 0 32px var(--accent-gold-glow);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.popup-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.popup-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  width: 100%;
}

.btn-ghost:hover {
  border-color: var(--accent-gold);
  color: var(--text-light);
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 11, 8, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
}

.header-inner {
  width: 100%;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.logo:hover {
  color: var(--accent-gold);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: 6px;
  color: #000;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 0 10px var(--accent-gold-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text-light);
  background: rgba(212, 175, 55, 0.08);
}

.nav-links a.active {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.age-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red-alert);
  white-space: nowrap;
}

.age-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--red-glow);
}

.age-text {
  color: var(--text-muted);
  font-weight: 500;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 6px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  display: block;
  transition: all 0.2s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  background: #020906;
  border-top: 1px solid var(--border-gold);
  padding: 12px 24px 20px;
  flex-direction: column;
  gap: 2px;
  display: none;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-menu a:hover {
  color: var(--accent-gold);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  background: var(--bg-deep);
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}

.hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(214, 175, 85, 0.15) 0%, rgba(7, 25, 17, 0.3) 45%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.fr-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.fr-flag {
  display: flex;
  width: 24px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.fr-flag span {
  flex: 1;
  height: 100%;
}

.fr-flag .blue { background: #002395; }
.fr-flag .white { background: #ffffff; }
.fr-flag .red { background: #ED2939; }

.fr-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 span.gold {
  color: var(--accent-gold);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.65;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(212, 175, 55, 0.03);
  transition: all 0.2s ease;
}

.hero-badge svg {
  color: var(--accent-gold);
}

.hero-badge:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.poker-cards-graphic {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.poker-card-shape {
  position: absolute;
  width: 150px;
  height: 220px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  color: #111;
  font-weight: 700;
  font-size: 24px;
  transition: all 0.3s ease;
}

.poker-card-shape.card-1 {
  transform: rotate(-15deg) translateX(-40px);
  z-index: 1;
}

.poker-card-shape.card-2 {
  transform: rotate(5deg) translateY(-10px);
  z-index: 2;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px var(--accent-gold-glow);
}

.poker-card-shape .card-suit {
  font-size: 40px;
  text-align: center;
}

.poker-card-shape .card-suit.red {
  color: #e63946;
}

.poker-card-shape .card-bottom {
  transform: rotate(180deg);
  align-self: flex-end;
}

/* ── HERO REPLICA LISTS & BADGES ── */
.hero-list {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-list li {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
}

.hero-list li .suit-diamond {
  color: var(--accent-gold);
  font-size: 18px;
  text-shadow: 0 0 8px var(--accent-gold-glow);
  font-weight: 800;
}

.hero-trust-bullets {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-trust-bullets span {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 25, 17, 0.6);
  border: 1px solid var(--border-gold);
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--text-light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-trust-bullets span .emoji {
  font-size: 15px;
}

.hero-update-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #000;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px var(--accent-gold-glow);
}

/* ── SECTIONS ── */
.section {
  padding: 70px 24px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 44px;
  max-width: 720px;
  line-height: 1.6;
}

.updated-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Advertiser Disclosure Link */
.disclosure-link {
  color: var(--accent-gold);
  font-size: 13px;
  cursor: pointer;
  border-bottom: 1px dashed var(--accent-gold);
  transition: all 0.2s ease;
  margin-left: auto;
}

.disclosure-link:hover {
  color: var(--accent-gold-light);
  border-bottom-color: var(--accent-gold-light);
}

.disclosure-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.casino-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 60px 180px 140px 1fr 200px;
  align-items: center;
  gap: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.casino-card:hover {
  background: var(--card-hover-bg);
  transform: translateY(-2px);
  border-color: var(--border-gold-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.1);
}

.card-rank {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.top-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  height: 80px;
  width: 100%;
}

.card-logo-wrap a.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.card-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rating-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.rating-num {
  font-size: 24px;
  font-weight: 700;
}

.rating-num span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 16px;
  color: #FFD700;
}

.card-bonus-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.card-bonus {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
}

.card-terms-hint {
  font-size: 11px;
  color: var(--text-muted);
}

.card-action-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.btn-visit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  width: 100%;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-visit:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  transform: translateY(-1px);
  color: #000;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
}

.card-license-hint {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
}

.card-license-hint svg {
  color: var(--green-success);
}

.card-payment-methods {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.card-payment-methods img {
  height: 16px;
  object-fit: contain;
  opacity: 0.6;
}

/* ── COMPACT INFO BLOCKS ── */
.info-blocks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.info-block {
  background: rgba(7, 25, 17, 0.3);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 30px;
  transition: border-color 0.2s ease;
}

.info-block:hover {
  border-color: var(--accent-gold-glow);
}

.info-block-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-gold);
  font-size: 22px;
}

.info-block h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.info-block p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── COMPARISON TABLE BLOCK ── */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  background: rgba(7, 25, 17, 0.2);
  margin-top: 20px;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.comp-table th {
  background: rgba(212, 175, 55, 0.05);
  color: var(--text-light);
  font-weight: 600;
  padding: 16px;
  border-bottom: 1px solid var(--border-gold);
}

.comp-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  color: var(--text-muted);
}

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

.comp-table td strong {
  color: var(--text-light);
}

.comp-table td .highlight-val {
  color: var(--accent-gold);
  font-weight: 600;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: rgba(7, 25, 17, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 26px;
  transition: all 0.2s ease;
}

.testi-card:hover {
  border-color: var(--border-gold);
}

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #FFD700;
}

.testi-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.testi-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
}

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: rgba(7, 25, 17, 0.3);
  border: none;
  padding: 20px 24px;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s ease;
}

.faq-q:hover {
  background: rgba(212, 175, 55, 0.05);
}

.faq-a {
  padding: 0 24px 20px;
  background: #020906;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-a p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-input {
  background: #020906;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus {
  border-color: var(--accent-gold);
}

.form-input::placeholder {
  color: #4c5d55;
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-gold);
}

.contact-info-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.contact-info-text strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
}

.contact-info-text a {
  color: var(--accent-gold);
  font-weight: 500;
}

.contact-info-text a:hover {
  color: var(--accent-gold-light);
}

.map-placeholder {
  background: rgba(7, 25, 17, 0.2);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}

/* ── TEXT PAGE ── */
.text-page {
  padding: 60px 24px;
  max-width: 860px;
  margin: 0 auto;
}

.text-page h1 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.text-page .page-intro {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.65;
}

.text-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--text-light);
  letter-spacing: -0.01em;
}

.text-page p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.text-page ul {
  margin: 8px 0 18px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.text-page li {
  margin-bottom: 8px;
}

.info-box {
  background: rgba(7, 25, 17, 0.3);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.info-box p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-gold);
  padding: 60px 24px 30px;
}

.footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.65;
  max-width: 320px;
}

.footer-col h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-resp-block {
  background: rgba(7, 25, 17, 0.25);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.footer-resp-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-resp-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-resp-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.footer-resp-links a {
  font-size: 12px;
  color: var(--accent-gold);
  font-weight: 600;
}

.footer-resp-links a:hover {
  color: var(--accent-gold-light);
}

/* French Helpline Highlight in Footer */
.helpline-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 77, 77, 0.08);
  border: 1px solid rgba(255, 77, 77, 0.25);
  border-radius: 6px;
  padding: 6px 12px;
  color: var(--red-alert);
  font-weight: 700;
  font-size: 12px;
  margin-top: 8px;
}

/* Footer badges row */
.footer-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-badges-row a {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.2s ease;
}

.footer-badges-row a:hover {
  opacity: 0.8;
}

.footer-badge-item {
  height: 36px;
  object-fit: contain;
  display: block;
}

.footer-badge-item.badge-18 {
  height: 32px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 820px;
}

.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

/* ── 404 ── */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  text-align: center;
  padding: 60px 24px;
  gap: 14px;
}

.not-found-num {
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  text-shadow: 0 0 20px var(--accent-gold-glow);
}

.not-found h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
}

.not-found p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
}

.nf-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* ── INFO GRID ── */
.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-top: 30px;
}

.info-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.info-text {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.info-text:last-child {
  margin-bottom: 0;
}

.info-sidebar {
  background: rgba(7, 25, 17, 0.3);
  border: 1px solid var(--border-gold);
  padding: 30px;
  border-radius: 14px;
  align-self: start;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--accent-gold);
}

.sidebar-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar-list li {
  margin-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sidebar-list li:last-child {
  margin-bottom: 0;
}

.sidebar-num {
  color: var(--accent-gold);
  font-weight: bold;
}

/* ── ANIMATIONS ── */
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .casino-card {
    grid-template-columns: 50px 150px 120px 1fr 180px;
    gap: 16px;
    padding: 20px;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
  }
  .footer-col:last-child {
    grid-column: span 3;
  }
  .info-blocks-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-right {
    margin-top: 20px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .casino-card {
    grid-template-columns: 50px 1fr 1fr;
    gap: 16px;
  }
  .card-logo-wrap {
    grid-column: span 2;
  }
  .card-bonus-info {
    grid-column: span 3;
    text-align: center;
  }
  .rating-column {
    grid-column: span 1;
  }
  .card-action-column {
    grid-column: span 2;
  }
}

@media (max-width: 580px) {
  .hero {
    padding: 50px 16px;
  }
  .section {
    padding: 44px 16px;
  }
  .popup-box {
    padding: 32px 22px;
  }
  .info-sidebar {
    padding: 20px;
  }
  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }
  .age-text {
    display: none;
  }
  .casino-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .card-rank {
    margin: 0 auto;
  }
  .card-logo-wrap {
    grid-column: span 1;
    margin: 0 auto;
  }
  .rating-column {
    grid-column: span 1;
  }
  .card-bonus-info {
    grid-column: span 1;
  }
  .card-action-column {
    grid-column: span 1;
  }
  .disclosure-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .disclosure-link {
    margin-left: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col:last-child, .footer-col {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom-right {
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-dot {
    animation: none;
  }
  * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
