/* ==========================================================================
   BEST-EVERES.COM - LUXURY FRENCH DESIGN SYSTEM
   Geo: FR (France) | Theme: Royal French Prestige & Imperial Gold
   Distinct Color Palette: Deep Obsidian Violet & Radiant Imperial Amber Gold
   ========================================================================== */

:root {
  /* Typography */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Distinct Color Palette (Royal French Prestige Theme: Violet, Amber Gold, Marble White) */
  --bg-dark: #0f0817;
  --bg-card: #180d24;
  --bg-card-hover: #221332;
  --bg-header: rgba(15, 8, 23, 0.94);
  --bg-modal: #1a0e28;
  
  --gold-primary: #e5b842;
  --gold-light: #ffe67c;
  --gold-dark: #b8860b;
  --gold-gradient: linear-gradient(135deg, #ffe67c 0%, #e5b842 50%, #b8860b 100%);
  --gold-btn-gradient: linear-gradient(180deg, #ffe066 0%, #d49400 100%);
  
  --purple-glow: rgba(184, 134, 11, 0.25);
  --border-gold: rgba(229, 184, 66, 0.35);
  --border-gold-hover: rgba(255, 230, 124, 0.7);
  
  --text-main: #f8f6f0;
  --text-muted: #bdaece;
  --text-gold: #ffd700;
  
  --accent-red: #e63946;
  --accent-green: #2a9d8f;

  /* Spacing & Radii */
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --max-width: 1200px;

  /* Shadows */
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(229, 184, 66, 0.08);
  --shadow-gold: 0 4px 20px rgba(229, 184, 66, 0.3);
}

/* Reset & Accessibility */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 50% 0%, #29153c 0%, transparent 60%),
    radial-gradient(circle at 100% 100%, #1e092b 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, #170924 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: var(--gold-primary);
  color: #000;
  padding: 8px 16px;
  z-index: 10000;
  font-weight: bold;
  border-radius: 4px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 10px;
}

/* Regulatory Top Notice Bar (GEO FR) */
.top-notice-bar {
  background: linear-gradient(90deg, #1d0713 0%, #360c23 50%, #1d0713 100%);
  border-bottom: 1px solid rgba(230, 57, 70, 0.4);
  padding: 8px 16px;
  font-size: 0.85rem;
  color: #f8f6f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.top-notice-bar p {
  margin: 0;
}

.top-notice-bar strong {
  color: var(--gold-light);
}

/* Header & Navbar */
header[role="banner"] {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(229, 184, 66, 0.3);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: var(--bg-modal);
  border-left: 1px solid var(--border-gold);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  padding: 60px 24px 24px;
  gap: 20px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);
}

.mobile-nav-overlay.active {
  right: 0;
}

.close-mobile-menu {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-overlay .nav-link {
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(229, 184, 66, 0.1);
  padding-bottom: 12px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 65px 20px 50px;
  text-align: center;
  background: 
    linear-gradient(180deg, rgba(15, 8, 23, 0.75) 0%, rgba(15, 8, 23, 0.95) 100%),
    url('../images/french-hero-bg.webp') center/cover no-repeat;
  border-bottom: 1px solid var(--border-gold);
}

.hero-container {
  max-width: 860px;
  margin: 0 auto;
}

.french-quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 184, 66, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 30px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 13, 36, 0.8);
  border: 1px solid var(--border-gold);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.88rem;
  color: var(--text-main);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-primary);
}

/* Cards Grid Main Section */
.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.cards-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

/* Card Styling (Exact logic as best-top-es.com & slotsplus.fr pattern) */
.exact-casino-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 140px 1fr 220px;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  cursor: pointer;
}

.exact-casino-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(229, 184, 66, 0.2);
}

/* Ribbon badge */
.card-ribbon {
  position: absolute;
  top: 14px;
  left: -32px;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 34px;
  transform: rotate(-45deg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.card-number-badge {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(229, 184, 66, 0.15);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-number-badge p {
  color: var(--gold-light);
  font-weight: 800;
  font-size: 0.95rem;
}

/* Card Brand Box */
.card-brand-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.brand-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%, #2f1747 0%, #150a21 100%);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.brand-icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-score-box {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(229, 184, 66, 0.1);
  border: 1px solid rgba(229, 184, 66, 0.25);
  padding: 4px 10px;
  border-radius: 12px;
}

.star-icon {
  width: 16px;
  height: 16px;
  fill: var(--gold-primary);
}

.score-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-light);
}

.score-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Card Body Content */
.card-body-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-description {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.5;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  background: rgba(229, 184, 66, 0.08);
  border: 1px solid rgba(229, 184, 66, 0.2);
  color: var(--gold-light);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Card Action Box & Hidden Link Styles (Requirement 5 & 6) */
.card-action-box {
  width: 100%;
  margin-top: auto;
}

.btn-acceder {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  border: none;
  overflow: hidden;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-acceder p {
  position: relative;
  z-index: 2;
  margin: 0;
  border-radius: 12px;
  background: var(--gold-btn-gradient);
  box-shadow: 3px 3px 0 0 #ffffff;
  text-wrap: nowrap;
  color: #0b0512;
  font-family: var(--font-sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: -0.38px;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Hidden Link Style (Requirement 6 - matching best-top-es.com) */
.shdewenrhwer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}

.btn-acceder:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* French Features & Editorial Section */
.french-features-section {
  background: rgba(24, 13, 36, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  margin-bottom: 50px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(15, 8, 23, 0.6);
  border: 1px solid rgba(229, 184, 66, 0.2);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  fill: var(--gold-primary);
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Partner Badges Section (Requirement 8 - GEO FR Badges) */
.partner-badges-section {
  background: rgba(15, 8, 23, 0.9);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 30px 20px;
}

.partner-badges-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}

.badge-item:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.badge-img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* Footer Section (Requirement 7 - Almost identical to best-top-es.com) */
.footer {
  background: #0a040f;
  color: var(--text-muted);
  padding: 50px 20px 30px;
  font-size: 0.9rem;
  border-top: 1px solid var(--border-gold);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-warning-line {
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.35);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  color: #f8f6f0;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-warning-line strong {
  color: var(--gold-light);
}

.footer-transparency-box {
  background: rgba(24, 13, 36, 0.6);
  border: 1px solid rgba(229, 184, 66, 0.2);
  border-radius: var(--border-radius-md);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.transparency-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.transparency-item h3,
.transparency-item h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.transparency-item p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

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

.footer-help-links a {
  color: var(--gold-primary);
  text-decoration: underline;
  font-size: 0.88rem;
}

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

.footer-divider {
  height: 1px;
  background: rgba(229, 184, 66, 0.2);
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.copyright-text {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.footer-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-nav-links a:hover {
  color: var(--gold-primary);
}

/* Modals & Banners (18+ Age Modal & Cookie Banner) */
.age-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 4, 15, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.age-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.age-modal-box {
  background: var(--bg-modal);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 20px 60px rgba(0,0,0,0.9), 0 0 30px rgba(229, 184, 66, 0.3);
  border-radius: var(--border-radius-lg);
  padding: 36px 30px;
  max-width: 480px;
  width: 90%;
  text-align: center;
}

.age-modal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.age-modal-body p {
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 16px;
}

.age-modal-help-links {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.age-modal-help-links a {
  color: var(--gold-light);
  text-decoration: underline;
}

.age-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.age-btn {
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.age-btn-accept {
  background: var(--gold-btn-gradient);
  color: #000;
  box-shadow: 0 4px 15px rgba(229, 184, 66, 0.4);
}

.age-btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.underage-screen {
  display: none;
  padding-top: 10px;
}

.underage-screen.active {
  display: block;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 760px;
  background: var(--bg-modal);
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  border-radius: var(--border-radius-md);
  padding: 18px 24px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-banner.show {
  bottom: 20px;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.cookie-title {
  font-weight: 800;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 4px;
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.cookie-btn-accept {
  background: var(--gold-btn-gradient);
  color: #000;
}

.cookie-btn-settings {
  background: rgba(255,255,255,0.1);
  color: var(--text-main);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .exact-casino-card {
    grid-template-columns: 120px 1fr;
    gap: 20px;
  }
  
  .card-action-box {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .top-notice-bar {
    padding: 5px 10px;
    font-size: 0.75rem;
    gap: 6px;
  }

  .top-notice-bar img {
    width: 18px;
    height: 18px;
  }

  .navbar {
    padding: 8px 14px;
  }

  .brand-logo-img {
    height: 32px;
  }

  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
    padding: 6px;
  }

  .hero-section {
    padding: 16px 12px 14px;
  }

  .french-quality-badge {
    padding: 3px 10px;
    font-size: 0.7rem;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
  }

  .hero-title {
    font-size: 1.3rem;
    line-height: 1.25;
    margin-bottom: 6px;
  }
  
  .hero-subtitle {
    font-size: 0.82rem;
    line-height: 1.3;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .main-content {
    padding: 12px 10px 30px;
  }

  .cards-container {
    gap: 12px;
    margin-bottom: 30px;
  }

  /* Compact Mobile Cards: Ensures 2+ cards are fully visible above fold */
  .exact-casino-card {
    grid-template-columns: 75px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 12px;
    padding: 12px 14px;
    border-radius: 14px;
    text-align: left;
  }

  .card-brand-box {
    grid-column: 1;
    grid-row: 1;
    gap: 6px;
  }

  .brand-icon-box {
    width: 65px;
    height: 65px;
    padding: 6px;
    border-radius: 12px;
  }

  .card-score-box {
    padding: 2px 6px;
    border-radius: 8px;
  }

  .star-icon {
    width: 13px;
    height: 13px;
  }

  .score-text {
    font-size: 0.8rem;
  }

  .score-text span {
    font-size: 0.68rem;
  }

  .card-body-text {
    grid-column: 2;
    grid-row: 1;
    gap: 6px;
    justify-content: center;
  }

  .card-description {
    font-size: 0.82rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-tags {
    gap: 4px;
    justify-content: flex-start;
  }

  .tag-item {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
  }

  .card-action-box {
    grid-column: 1 / span 2;
    grid-row: 2;
    margin-top: 2px;
  }

  .btn-acceder p {
    padding: 9px 0;
    font-size: 14px;
    line-height: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 0 0 #ffffff;
  }

  .card-ribbon {
    font-size: 0.58rem;
    padding: 2px 24px;
    top: 8px;
    left: -28px;
  }

  .card-number-badge {
    width: 24px;
    height: 24px;
    top: 8px;
    right: 8px;
  }

  .card-number-badge p {
    font-size: 0.78rem;
  }
  
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 14px 16px;
    gap: 12px;
  }
  
  .cookie-actions {
    justify-content: center;
  }
}

/* Editorial & Content Pages */
.editorial-container {
  background: rgba(24, 13, 36, 0.75);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  max-width: 900px;
  margin: 0 auto 50px;
  box-shadow: var(--shadow-card);
}

.editorial-container h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 12px;
}

.editorial-container h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #ffffff;
  margin: 28px 0 14px;
}

.editorial-container p {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.editorial-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.editorial-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.editorial-list strong {
  color: var(--gold-light);
}

