/* ==========================================================================
   BestTop-ES.com - Greek Aesthetic Design & DK Compliance Style
   Theme: Classical Greece & Aegean Luxury (Royal Blue, Gold, Marble White)
   ========================================================================== */

:root {
  --bg-primary: #07111e;
  --bg-secondary: #0a192f;
  --bg-card: rgba(15, 33, 58, 0.85);
  --bg-card-hover: rgba(22, 45, 78, 0.95);
  
  --gold-primary: #ffd700;
  --gold-secondary: #d4af37;
  --gold-gradient: linear-gradient(135deg, #ffe57f 0%, #ffd700 50%, #b8860b 100%);
  --gold-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);

  --aegean-blue: #0077b6;
  --cyan-accent: #00a8e8;
  --cyan-glow: rgba(0, 168, 232, 0.4);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-gold: #ffe066;

  --border-gold: rgba(255, 215, 0, 0.25);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-radius-lg: 16px;
  --border-radius-md: 12px;

  --font-serif: 'Cinzel', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Box Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 0%, #11294a 0%, #07111e 70%);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--gold-primary);
  color: #000;
  padding: 10px 18px;
  font-weight: 700;
  border-radius: 4px;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 15px;
}

/* ==========================================================================
   Top Notice Bar (18+ Regulatory Notice DK)
   ========================================================================== */
.top-notice-bar {
  background: linear-gradient(90deg, #10061d 0%, #1a0826 50%, #10061d 100%);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.top-notice-bar img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

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

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header[role="banner"] {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 17, 30, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
}

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

.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;
  align-items: center;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.mobile-menu-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--gold-primary);
}

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

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

.close-mobile-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--gold-primary);
  font-size: 24px;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section (Greek Temple Motif & Title)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 80px 24px 50px;
  text-align: center;
  background: linear-gradient(180deg, rgba(7, 17, 30, 0.75) 0%, rgba(7, 17, 30, 0.92) 80%, #07111e 100%), url('../images/greek-hero-bg.webp') center/cover no-repeat;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  overflow: hidden;
  box-shadow: inset 0 -30px 40px #07111e;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background-image: radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.greek-pillar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

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

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

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

/* ==========================================================================
   Main Content & Cards Grid (slotsplus.fr action format)
   ========================================================================== */
.main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  width: 100%;
}

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

/* Vibrant & Expressive Casino Card Containers */
.exact-casino-card {
  background: linear-gradient(135deg, rgba(15, 33, 58, 0.95) 0%, rgba(7, 17, 30, 0.98) 100%);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 20px;
  padding: 26px 30px;
  position: relative;
  display: grid;
  grid-template-columns: 80px 180px 1fr 230px;
  align-items: center;
  gap: 24px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  cursor: pointer;
  overflow: hidden;
}

/* Gold Gradient Top Border Accent on Card 1 */
.exact-casino-card:first-child {
  border-color: #ffd700;
  box-shadow: 0 15px 45px rgba(255, 215, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.exact-casino-card:hover {
  background: linear-gradient(135deg, rgba(22, 48, 82, 0.98) 0%, rgba(10, 25, 47, 0.99) 100%);
  border-color: #ffd700;
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25), 0 0 25px rgba(0, 168, 232, 0.2);
}

/* Card Ribbons */
.card-ribbon {
  position: absolute;
  top: 0;
  right: 28px;
  background: linear-gradient(135deg, #ffd700 0%, #ff9900 100%);
  color: #040910;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

/* Card Number Badge */
.card-number-badge {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ffe57f 0%, #ffd700 50%, #b8860b 100%);
  color: #040910;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border: 2px solid #ffffff;
  position: relative;
  z-index: 1;
}

/* Brand Header & Icon Box */
.card-brand-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.brand-icon-box {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

/* Card 1: Vibrant Flame Gold Icon */
.exact-casino-card:nth-child(1) .brand-icon-box {
  background: radial-gradient(circle at 30% 30%, rgba(255, 245, 102, 0.3) 0%, rgba(255, 133, 0, 0.2) 60%, rgba(10, 25, 47, 0.95) 100%);
  border: 2px solid #ffb703;
  box-shadow: 0 8px 25px rgba(255, 183, 3, 0.4), inset 0 0 15px rgba(255, 245, 102, 0.3);
}
.exact-casino-card:nth-child(1):hover .brand-icon-box {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 12px 35px rgba(255, 183, 3, 0.6), 0 0 25px rgba(255, 245, 102, 0.5);
}

/* Card 2: Neon Emerald & Cyan Icon */
.exact-casino-card:nth-child(2) .brand-icon-box {
  background: radial-gradient(circle at 30% 30%, rgba(100, 255, 218, 0.3) 0%, rgba(0, 230, 118, 0.2) 60%, rgba(4, 21, 27, 0.95) 100%);
  border: 2px solid #64ffda;
  box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4), inset 0 0 15px rgba(100, 255, 218, 0.3);
}
.exact-casino-card:nth-child(2):hover .brand-icon-box {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 35px rgba(100, 255, 218, 0.6), 0 0 25px rgba(0, 230, 118, 0.5);
}

/* Card 3: Radiant Magenta & Purple Icon */
.exact-casino-card:nth-child(3) .brand-icon-box {
  background: radial-gradient(circle at 30% 30%, rgba(255, 128, 171, 0.3) 0%, rgba(255, 64, 129, 0.2) 60%, rgba(20, 9, 32, 0.95) 100%);
  border: 2px solid #ff4081;
  box-shadow: 0 8px 25px rgba(255, 64, 129, 0.4), inset 0 0 15px rgba(255, 128, 171, 0.3);
}
.exact-casino-card:nth-child(3):hover .brand-icon-box {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 12px 35px rgba(255, 64, 129, 0.6), 0 0 25px rgba(124, 77, 255, 0.5);
}

/* Card 4: Electric Sapphire & Azure Icon */
.exact-casino-card:nth-child(4) .brand-icon-box {
  background: radial-gradient(circle at 30% 30%, rgba(128, 216, 255, 0.3) 0%, rgba(0, 176, 255, 0.2) 60%, rgba(7, 17, 30, 0.95) 100%);
  border: 2px solid #00b0ff;
  box-shadow: 0 8px 25px rgba(0, 176, 255, 0.4), inset 0 0 15px rgba(128, 216, 255, 0.3);
}
.exact-casino-card:nth-child(4):hover .brand-icon-box {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 35px rgba(0, 176, 255, 0.6), 0 0 25px rgba(41, 121, 255, 0.5);
}

.brand-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.card-score-box {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 215, 0, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.25);
}

.star-icon {
  width: 18px;
  height: 18px;
  fill: #ffd700;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
}

.score-text {
  font-weight: 900;
  font-size: 1.15rem;
  color: #ffffff;
}

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

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

.card-description {
  color: #e2e8f0;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 400;
}

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

.tag-item {
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.18) 0%, rgba(0, 119, 182, 0.25) 100%);
  border: 1px solid rgba(0, 168, 232, 0.4);
  color: #7dd3fc;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0, 168, 232, 0.15);
}

/* Card Button Action Box (Exact match with slotsplus.fr) */
.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: linear-gradient(180deg, #ffec3c 0%, #e39800 100%);
  box-shadow: 3px 3px 0 0 #fff;
  text-wrap: nowrap;
  color: #000000;
  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 Content & Greek Features Section
   ========================================================================== */
.greek-features-section {
  background: rgba(10, 25, 47, 0.6);
  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);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 36px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  border-color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.04);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold-primary);
}

.feature-card h3 {
  font-family: var(--font-serif);
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

/* ==========================================================================
   Detailed Editorial Review Text (DK Language)
   ========================================================================== */
.editorial-container {
  background: rgba(10, 25, 47, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  margin-bottom: 50px;
}

.editorial-container h2 {
  font-family: var(--font-serif);
  color: var(--gold-primary);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.editorial-container p {
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.editorial-container h3 {
  font-family: var(--font-serif);
  color: #ffffff;
  font-size: 1.3rem;
  margin: 24px 0 12px;
}

.editorial-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.editorial-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #e2e8f0;
}

.editorial-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: 900;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  margin-bottom: 50px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(15, 33, 58, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 20px 24px;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 700;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Footer & Transparency (Matching Screenshot Structure)
   ========================================================================== */
footer[role="contentinfo"], .footer {
  background: #040910;
  border-top: 1px solid var(--border-gold);
  padding: 40px 24px 30px;
  margin-top: auto;
  color: #e2e8f0;
}

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

.footer-warning-line {
  color: #94a3b8;
  font-size: 0.86rem;
  line-height: 1.6;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

.footer-warning-line strong {
  color: #ffffff;
}

.footer-transparency-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.transparency-title {
  font-family: var(--font-sans);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.transparency-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.transparency-item h4 {
  font-family: var(--font-sans);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.transparency-item p {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.6;
}

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

.footer-help-links a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 10px 0;
}

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

.copyright-text {
  color: #94a3b8;
  font-size: 0.85rem;
}

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

.footer-nav-links a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

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

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

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

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

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

/* ==========================================================================
   Modals & Banners (18+ Age Gate & Cookies)
   ========================================================================== */
.age-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 16, 0.95);
  backdrop-filter: blur(15px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.age-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.age-modal-box {
  background: #091729;
  border: 1px solid var(--gold-primary);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  position: relative;
}

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

.age-modal-body p {
  color: #e2e8f0;
  font-size: 1rem;
  margin-bottom: 20px;
}

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

.age-modal-help-links a {
  color: var(--cyan-accent);
  text-decoration: none;
}

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

.age-btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

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

.age-btn-reject:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.underage-screen {
  display: none;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 800px;
  background: #0b1a2e;
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9000;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  bottom: 20px;
}

.cookie-title {
  font-family: var(--font-serif);
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 1.05rem;
}

.cookie-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

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

.cookie-btn {
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

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

.cookie-btn-settings {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Media Queries - Sleek Modern Mobile Card Layout */
@media (max-width: 992px) {
  .exact-casino-card {
    grid-template-columns: 50px 100px 1fr 180px;
    gap: 16px;
    padding: 16px 20px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 16px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  
  /* Ultra-polished Hero section on mobile */
  .hero-section {
    padding: 14px 12px 8px;
  }
  .greek-pillar-badge {
    margin-bottom: 4px;
    padding: 2px 10px;
    font-size: 0.68rem;
  }
  .hero-title {
    font-size: 1.25rem;
    margin-bottom: 4px;
  }
  .hero-subtitle {
    display: none;
  }

  /* Compact Trust Badges on Mobile */
  .trust-badges {
    gap: 6px;
    margin-top: 4px;
  }
  .trust-item {
    padding: 2px 8px;
    font-size: 0.68rem;
    gap: 4px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
  }
  .trust-item svg {
    width: 12px;
    height: 12px;
  }

  /* Main content & Cards container */
  .main-content {
    padding-top: 12px;
  }
  .cards-container {
    gap: 12px;
    margin-bottom: 30px;
  }

  /* Mobile Grid Layout - Full Width Button (width: 100%) */
  .exact-casino-card {
    display: grid;
    grid-template-columns: 38px 60px 1fr;
    grid-template-areas:
      "badge brand score"
      "body  body  body"
      "action action action";
    align-items: center;
    gap: 8px 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 33, 58, 0.98) 0%, rgba(7, 17, 30, 0.99) 100%);
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
  }

  .card-ribbon {
    right: 12px;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }

  .card-number-badge {
    grid-area: badge;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    border-width: 1.5px;
    margin: 0;
  }

  .card-brand-box {
    grid-area: brand;
    margin-top: 0;
    gap: 4px;
    align-items: flex-start;
  }

  .brand-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    padding: 4px;
  }

  .card-score-box {
    grid-area: score;
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 14px;
  }

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

  .score-text {
    font-size: 0.9rem;
    font-weight: 800;
  }

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

  .card-body-text {
    grid-area: body;
    gap: 4px;
    text-align: left;
  }

  .card-description {
    font-size: 0.78rem;
    line-height: 1.3;
    color: #cbd5e1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

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

  .tag-item {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 8px;
    white-space: nowrap;
  }

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

  .btn-acceder {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .btn-acceder p {
    width: 100%;
    font-size: 0.95rem;
    padding: 10px 0;
    line-height: 22px;
    border-radius: 12px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .exact-casino-card {
    padding: 10px 10px;
    gap: 6px 8px;
  }
  .brand-icon-box {
    width: 48px;
    height: 48px;
  }
  .btn-acceder p {
    font-size: 0.88rem;
    padding: 9px 0;
  }
  .tag-item:nth-child(n+3) {
    display: none;
  }
}

/* ==========================================================================
   Partner Badges Section (Pre-Footer)
   ========================================================================== */
.partner-badges-section {
  padding: 50px 0 40px 0;
  width: 100%;
  background: rgba(10, 25, 47, 0.5);
  border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.partner-badges-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 50px;
  justify-content: center;
  align-items: center;
}

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

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

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

@media (max-width: 768px) {
  .partner-badges-container {
    gap: 24px;
    padding: 0 16px;
  }
  .badge-img {
    max-height: 50px;
    max-width: 180px;
  }
}

