/* ==========================================================================
   online-top-es.com - Hellenic Warm Corinthian & Bronze Design System
   GEO: Denmark (DK) | Theme: Greek Pantheon & Heritage
   ========================================================================== */

:root {
  --bg-primary: #1c130d;
  --bg-secondary: #271a12;
  --bg-card: rgba(38, 25, 17, 0.82);
  --bg-card-hover: rgba(54, 35, 23, 0.92);
  
  --border-gold: rgba(255, 195, 115, 0.45);
  --border-gold-glow: rgba(255, 215, 140, 0.75);
  
  --bronze-primary: #f5a65b;
  --bronze-light: #ffe09e;
  --bronze-dark: #e08328;
  --amber-glow: rgba(255, 186, 102, 0.35);
  
  --teal-accent: #38edf8;
  --teal-dark: #0f766e;
  
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.9);
  --text-dark: #120b07;
  
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --border-radius-xl: 24px;

  --max-width: 1200px;
  --shadow-card: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(245, 166, 91, 0.2);
}

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

/* Accessibility Focus States */
:focus-visible {
  outline: 3px solid var(--teal-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

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

body {
  background-color: #1a110b;
  background-image: 
    linear-gradient(180deg, rgba(22, 14, 9, 0.65) 0%, rgba(35, 22, 14, 0.72) 40%, rgba(22, 14, 9, 0.78) 100%),
    radial-gradient(circle at 50% 25%, rgba(255, 186, 102, 0.2) 0%, transparent 60%),
    url("../images/greek-hero-bg.webp");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

a:hover {
  color: #ffffff;
}

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

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--bronze-primary);
  color: var(--text-dark);
  font-weight: 800;
  padding: 12px 20px;
  border-radius: var(--border-radius-sm);
  z-index: 10000;
  transition: top 0.2s ease;
}

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

/* 18+ Top Regulatory Notice Bar */
.top-notice-bar {
  background: linear-gradient(90deg, #1f120a 0%, #2b180d 50%, #1f120a 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}

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

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

/* Navbar */
header[role="banner"] {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 8, 6, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
}

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

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

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

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

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

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--bronze-light);
  background: rgba(255, 186, 102, 0.1);
  border-color: rgba(255, 186, 102, 0.25);
}

.nav-link.active {
  color: var(--bronze-light);
  background: rgba(255, 186, 102, 0.18);
  border-color: var(--border-gold);
  box-shadow: 0 0 12px rgba(255, 186, 102, 0.2);
}

/* Mobile Menu Button & Drawer System */
.mobile-menu-btn {
  display: none;
  background: rgba(255, 186, 102, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--bronze-light);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
  background: rgba(255, 186, 102, 0.22);
  color: #ffffff;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  display: block;
}

/* Mobile Drawer Overlay */
.mobile-drawer, .mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: rgba(18, 11, 7, 0.98);
  backdrop-filter: blur(24px);
  border-left: 1px solid var(--border-gold);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.75);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.mobile-drawer.active, .mobile-drawer.show, .mobile-nav-overlay.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 195, 115, 0.25);
  margin-bottom: 20px;
}

.drawer-header img {
  height: 36px;
  width: auto;
}

.close-drawer-btn, .close-mobile-menu {
  background: rgba(255, 186, 102, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--bronze-light);
  font-size: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-drawer-btn:hover, .close-mobile-menu:hover {
  background: rgba(255, 186, 102, 0.25);
  color: #ffffff;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.drawer-links li {
  list-style: none;
}

.drawer-links a, .mobile-nav-overlay .nav-link {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 186, 102, 0.12);
  background: rgba(255, 186, 102, 0.05);
  transition: all 0.2s ease;
  text-decoration: none;
}

.drawer-links a:hover, .drawer-links a.active, .mobile-nav-overlay .nav-link:hover, .mobile-nav-overlay .nav-link.active {
  color: var(--bronze-light);
  background: rgba(255, 186, 102, 0.18);
  border-color: var(--border-gold);
  box-shadow: 0 0 12px rgba(255, 186, 102, 0.2);
}

/* Page Editorial Content Layout */
.editorial-container {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(38, 25, 17, 0.92) 0%, rgba(24, 15, 10, 0.96) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-xl);
  padding: 48px 42px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 186, 102, 0.15);
}

.editorial-container h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(180deg, #ffda9e 0%, #f5be6b 50%, #e29d47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid rgba(255, 195, 115, 0.3);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.editorial-container h2 {
  font-family: var(--font-serif);
  color: var(--bronze-light);
  font-size: 1.45rem;
  font-weight: 800;
  margin-top: 36px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.editorial-container h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 10px;
}

.editorial-container .lead-text {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.75;
  border-left: 3px solid var(--bronze-primary);
  margin-bottom: 28px;
  background: rgba(255, 186, 102, 0.05);
  padding: 14px 18px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.editorial-container p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.editorial-container ul, .editorial-container ol {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
}

.editorial-container li {
  position: relative;
  background: rgba(255, 186, 102, 0.05);
  border: 1px solid rgba(255, 186, 102, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 12px 18px;
  margin-bottom: 10px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.editorial-container li:hover {
  background: rgba(255, 186, 102, 0.09);
  border-color: rgba(255, 186, 102, 0.35);
}

.editorial-container a {
  color: var(--bronze-light);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.editorial-container a:hover {
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  padding: 65px 24px 45px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.greek-pillar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 153, 74, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--bronze-light);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  box-shadow: 0 0 15px var(--amber-glow);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: linear-gradient(135deg, #ffba66 0%, #f2994a 50%, #d97724 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 17, 12, 0.7);
  border: 1px solid var(--border-gold);
  padding: 10px 18px;
  border-radius: var(--border-radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

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

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

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

/* Card Component (slotsplus.fr / bulkpressmedia pattern) */
.exact-casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 80px 220px 1fr 220px;
  align-items: center;
  gap: 24px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.exact-casino-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold-glow);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.6), 0 0 25px rgba(242, 153, 74, 0.18);
}

/* Ribbon badge on top card */
.card-ribbon {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(90deg, #d97724 0%, #f2994a 100%);
  color: #0d0806;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(217, 119, 36, 0.4);
}

.card-number-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(242, 153, 74, 0.12);
  border: 2px solid var(--bronze-primary);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--bronze-light);
}

.card-brand-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.brand-icon-box img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 186, 102, 0.5)) brightness(1.25) contrast(1.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.exact-casino-card:hover .brand-icon-box img {
  filter: drop-shadow(0 0 22px rgba(255, 186, 102, 0.85)) brightness(1.4) contrast(1.15);
  transform: scale(1.08);
}

.card-score-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.star-icon {
  width: 20px;
  height: 20px;
  fill: var(--bronze-light);
}

.score-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--bronze-light);
  font-family: var(--font-serif);
}

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

.card-body-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

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

.tag-item {
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.25);
  color: var(--teal-accent);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.card-action-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Card Button & Hidden Link Implementation (exact structure from best-top-es.com) */
.btn-acceder {
  position: relative;
  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: linear-gradient(180deg, #ffe09e 0%, #e08328 100%);
  box-shadow: 3px 3px 0 0 #fff;
  text-wrap: nowrap;
  color: #120b07;
  font-family: var(--font-sans);
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  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;
}

.shdewenrhwer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}

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

/* Editorial & Greek Features Section */
.greek-features-section {
  background: rgba(22, 14, 10, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 48px 36px;
  margin: 60px 0 40px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--bronze-light);
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.feature-card {
  background: rgba(13, 8, 6, 0.8);
  border: 1px solid var(--border-gold);
  padding: 28px 24px;
  border-radius: var(--border-radius-md);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-block;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--bronze-primary);
  margin-bottom: 12px;
}

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

/* FAQ Accordion Section */
.faq-section {
  margin: 40px 0;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 17, 12, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--bronze-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Partner Badges Section */
.partner-badges-section {
  background: rgba(13, 8, 6, 0.95);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 32px 24px;
  margin: 40px 0;
}

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

.badge-item img {
  height: 48px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.badge-item:hover img {
  opacity: 1;
}

/* Legal Footer (Blastcoinitaly style) */
footer[role="contentinfo"] {
  background: rgba(18, 11, 7, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 48px 24px 32px;
  color: var(--text-light);
}

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

.legal-top-warning {
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 8px;
}

.legal-top-warning strong {
  color: var(--bronze-light);
}

.legal-section-title h2 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 800;
  color: var(--bronze-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.legal-content-block h3 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.legal-content-block p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 6px;
}

.legal-links-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}

.legal-links-list a {
  font-size: 13px;
  color: var(--bronze-light);
  text-decoration: underline;
  width: fit-content;
}

.legal-links-list a:hover {
  color: #ffffff;
}

.legal-bottom-bar {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 195, 115, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.legal-policy-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.legal-policy-links a {
  color: var(--text-muted);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.legal-policy-links a:hover {
  color: var(--bronze-light);
}

/* Modal 18+ Age Gate */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 5, 4, 0.94);
  backdrop-filter: blur(18px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

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

.age-modal-box {
  background: #18100b;
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-xl);
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  margin: auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(242, 153, 74, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#ageModalBody {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.age-icon {
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-icon img {
  margin: 0 auto;
}

.age-modal-box h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--bronze-light);
  margin-bottom: 12px;
  text-align: center;
}

.age-modal-box p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
  text-align: center;
}

.age-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.btn-primary-age {
  background: linear-gradient(180deg, #ffba66 0%, #d97724 100%);
  color: #0d0806;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

.btn-secondary-age {
  background: rgba(247, 244, 238, 0.08);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(247, 244, 238, 0.15);
  cursor: pointer;
}

.age-modal-footer-links {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(242, 153, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.age-modal-footer-links a {
  color: var(--bronze-light);
  font-weight: 600;
  transition: color 0.2s ease;
}

.age-modal-footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.underage-screen {
  display: none;
}

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  background: #18100b;
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  z-index: 9000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--bronze-light);
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
}

.btn-cookie-accept {
  flex: 1;
  background: var(--bronze-primary);
  color: #0d0806;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
}

.btn-cookie-settings {
  background: rgba(247, 244, 238, 0.1);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
}

/* Page Editorial Content Layout */
.editorial-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(26, 17, 12, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 40px 36px;
}

.editorial-container h1, .editorial-container h2 {
  font-family: var(--font-serif);
  color: var(--bronze-light);
  margin-bottom: 20px;
}

.editorial-container p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.editorial-container ul {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  padding-left: 24px;
}

.editorial-container li {
  margin-bottom: 8px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .exact-casino-card {
    grid-template-columns: 60px 180px 1fr 180px;
    gap: 18px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }

  /* Ultra-compact Header & Hero for Mobile First Fold */
  .top-notice-bar {
    padding: 4px 12px;
    font-size: 11px;
    gap: 6px;
  }
  .top-notice-bar img {
    width: 16px;
    height: 16px;
  }

  .navbar {
    padding: 8px 16px;
  }
  .brand-logo-img {
    height: 32px;
  }

  .hero-section {
    padding: 12px 16px 10px;
  }
  .greek-pillar-badge {
    padding: 3px 10px;
    font-size: 10px;
    margin-bottom: 4px;
    letter-spacing: 0.8px;
  }
  .hero-title {
    font-size: 1.25rem;
    margin-bottom: 4px;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 11.5px;
    line-height: 1.4;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Compact Cards Container for Mobile */
  .main-content {
    padding: 10px 12px 40px;
  }
  .cards-container {
    gap: 10px;
  }

  /* Centered, Symmetric & Beautiful Compact Card Layout on Mobile */
  .exact-casino-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 14px 16px 16px;
    background: linear-gradient(135deg, rgba(46, 30, 20, 0.9) 0%, rgba(28, 17, 11, 0.95) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 205, 130, 0.45);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 186, 102, 0.2);
    gap: 8px;
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
  }

  /* Top Ribbon & Rank Positioning */
  .card-ribbon {
    position: relative;
    top: 0;
    left: 0;
    align-self: center;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 3px 14px;
    border-radius: 20px;
    background: linear-gradient(90deg, #ffba66 0%, #e08328 100%);
    color: #120b07;
    box-shadow: 0 3px 10px rgba(224, 131, 40, 0.4);
    margin-bottom: 2px;
  }

  .card-number-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
    font-size: 15px;
    font-weight: 900;
    background: rgba(255, 186, 102, 0.15);
    border: 1.5px solid var(--bronze-light);
    color: var(--bronze-light);
    box-shadow: 0 0 10px rgba(255, 186, 102, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Centered Brand & Score Section */
  .card-brand-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    margin-top: 2px;
  }

  .brand-icon-box img {
    width: 54px;
    height: 54px;
    filter: drop-shadow(0 0 12px rgba(255, 186, 102, 0.65)) brightness(1.3);
  }

  .card-score-box {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 186, 102, 0.12);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 186, 102, 0.35);
  }

  .score-text {
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
  }

  .score-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
  }

  .star-icon {
    width: 15px;
    height: 15px;
    fill: #ffd385;
  }

  /* Centered Body Text & Tags */
  .card-body-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    width: 100%;
  }

  .card-description {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.94);
    line-height: 1.4;
    max-width: 95%;
    margin: 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
  }

  .tag-item {
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 10px;
    background: rgba(56, 237, 248, 0.12);
    border: 1px solid rgba(56, 237, 248, 0.35);
    color: #38edf8;
    border-radius: 12px;
  }

  /* Centered Full-Width Action Button */
  .card-action-box {
    width: 100%;
    margin-top: 4px;
  }

  .btn-acceder {
    width: 100%;
    display: block;
  }

  .btn-acceder p {
    width: 100%;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 0;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffe09e 0%, #e08328 100%);
    box-shadow: 2px 2px 0 0 #ffffff;
    color: #120b07;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
