/* === base.css — Variables, Fonts, Reset, Typography === */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette */
  --sand: #D4A76A;
  --sand-light: #E8C99B;
  --sand-muted: #B89258;
  --terracotta: #C75B39;
  --terracotta-dark: #A04828;
  --forest: #2D5016;
  --forest-light: #3D6B20;
  --brown-deep: #3B2314;
  --brown-medium: #5C3A24;
  --gold: #DAA520;
  --gold-bright: #F0C040;
  --bg-dark: #1C1208;
  --bg-card: #261A0D;
  --bg-card-hover: #2F2012;
  --bg-surface: #1F150A;
  --text-primary: #F5EDE0;
  --text-secondary: #C4B59A;
  --text-muted: #8A7A64;
  --border-subtle: rgba(212, 167, 106, 0.15);
  --border-accent: rgba(218, 165, 32, 0.3);
  --overlay: rgba(28, 18, 8, 0.85);

  /* Fonts */
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 3rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 20px rgba(218,165,32,0.15);

  /* Container */
  --container-max: 1280px;
  --container-narrow: 1280px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--gold-bright); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
table { border-collapse: collapse; width: 100%; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--sand-light);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: var(--space-lg); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: var(--space-md); margin-top: var(--space-lg); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: var(--space-sm); margin-top: var(--space-lg); }
h4 { font-size: 1.1rem; margin-bottom: var(--space-sm); }
p { margin-bottom: var(--space-md); color: var(--text-secondary); }
strong { color: var(--text-primary); font-weight: 600; }
blockquote {
  border-left: 4px solid var(--gold);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  background: rgba(218,165,32,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-secondary);
}
hr {
  border: none;
  height: 1px;
  background: var(--border-subtle);
  margin: var(--space-xl) 0;
}
::selection {
  background: var(--gold);
  color: var(--bg-dark);
}

/* Utility */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.container--narrow {
  max-width: var(--container-narrow);
}
/* === layout.css — Header, Footer, Grid, Containers === */

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(28, 18, 8, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.75rem var(--space-lg);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}
.site-logo img,
.site-logo-icon {
  height: 28px;
  width: 28px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}
.site-logo span {
  color: var(--sand-light);
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: var(--space-xs); }
.main-nav a {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(218,165,32,0.08);
}
.main-nav .current-page {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--gold-bright);
  background: rgba(218,165,32,0.12);
  pointer-events: none;
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(218,165,32,0.4);
  color: var(--bg-dark);
}

/* ── Bonus CTA — animated glow + shimmer ── */
@keyframes bonusPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(218,165,32,0.4), 0 0 0 0 rgba(218,165,32,0.3); }
  50%      { box-shadow: 0 0 16px rgba(218,165,32,0.6), 0 0 20px 4px rgba(218,165,32,0.15); }
}
@keyframes bonusShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.bonus-cta {
  position: relative;
  padding: 0.55rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(
    110deg,
    var(--terracotta) 0%,
    #e8a020 25%,
    #ffd86e 50%,
    #e8a020 75%,
    var(--terracotta) 100%
  );
  background-size: 200% 100%;
  animation: bonusPulse 2.5s ease-in-out infinite, bonusShimmer 3s linear infinite;
  border-radius: 50px;
  color: #1c1208;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}
.bonus-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(218,165,32,0.5);
  animation: bonusShimmer 1.5s linear infinite;
}
.bonus-cta i {
  font-size: 0.8em;
}

/* ── Mobile fixed bonus bar ── */
.mobile-bonus-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bonus-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    padding: 0.6rem 1rem;
    background: rgba(28,18,8,0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(218,165,32,0.25);
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  }
  .mobile-bonus-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
    padding: 0.85rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    color: #1c1208;
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
    background: linear-gradient(
      110deg,
      var(--terracotta) 0%,
      #e8a020 25%,
      #ffd86e 50%,
      #e8a020 75%,
      var(--terracotta) 100%
    );
    background-size: 200% 100%;
    animation: bonusPulse 2.5s ease-in-out infinite, bonusShimmer 3s linear infinite;
    cursor: pointer;
    border: none;
  }
  .mobile-bonus-btn:hover,
  .mobile-bonus-btn:active {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(218,165,32,0.5);
  }
  body { padding-bottom: 70px; }
}

/* Language Switcher (Header) */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: var(--space-sm);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 2px;
}
.lang-switch a {
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.lang-switch a:hover { color: var(--text-primary); }
.lang-switch a.active,
.lang-switch span.active {
  background: var(--gold);
  color: var(--bg-dark);
  pointer-events: none;
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Burger Button */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sand-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: rgba(28, 18, 8, 0.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: stretch;
  padding-top: 60px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
}
.mobile-menu-scroll {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-lg) var(--space-xl) calc(var(--space-xl) + 60px);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.mobile-menu-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 0 var(--space-md) var(--space-xs);
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
  margin-bottom: var(--space-xs);
}
.mobile-menu-label i {
  margin-right: var(--space-xs);
  width: 1em;
  text-align: center;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(218, 165, 32, 0.08);
}
.mobile-menu .header-cta {
  margin-top: var(--space-md);
  text-align: center;
  align-self: center;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-col h4 i { font-size: 0.8rem; opacity: 0.7; }
.footer-col a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  padding: 0.3rem 0;
  transition: all 0.2s ease;
}
.footer-col a i {
  font-size: 0.55rem;
  opacity: 0.3;
  transition: all 0.2s ease;
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-col a:hover i { opacity: 0.8; color: var(--gold); }

.footer-about {
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg) var(--space-xl);
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}
.footer-about p {
  font-size: 0.8rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0;
}
.footer-about strong {
  color: var(--sand-muted);
  font-weight: 600;
}

.footer-disclaimers {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-xl);
}
.footer-disclaimers .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 3px solid var(--terracotta);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
  color: var(--terracotta);
  margin-bottom: var(--space-md);
}
.footer-disclaimers p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
  line-height: 1.85;
}
.footer-disclaimers a { color: var(--terracotta); }
.footer-disclaimers a:hover { color: var(--sand); }

.footer-bottom {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Page Sections ── */
.page-section {
  padding: var(--space-xl) 0;
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.section-header h2 {
  margin-top: 0;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger-btn { display: flex; }
  .header-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}
@media (max-width: 480px) {
  .header-inner { padding: 0.6rem var(--space-md); }
  .site-logo { font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about p { font-size: 0.72rem; }
}
/* === article.css — Article pages: hero, body, headings, images === */

/* ── Hero ── */
.article-hero {
  position: relative;
  padding: var(--space-2xl) 0 var(--space-xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Homepage Hero ── */
.home-hero {
  padding: 6rem 0 4rem;
  text-align: center;
}
.home-hero-content {
  max-width: 860px;
  margin: 0 auto;
}
.home-hero-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(218,165,32,0.12);
  border: 1px solid rgba(218,165,32,0.3);
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  margin-bottom: var(--space-md);
}
.home-hero-content h1 {
  font-size: 3rem;
  line-height: 1.12;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}
.home-hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}
.home-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-xl);
}
.home-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
}
.home-stat__number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-bright), var(--terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-stat__label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.home-stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), transparent);
  flex-shrink: 0;
}
.home-hero-cta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.home-hero-cta .cta-btn i {
  margin-right: 0.4rem;
}
@media (max-width: 768px) {
  .home-hero { padding: 4rem 0 3rem; }
  .home-hero-content h1 { font-size: 2rem; }
  .home-hero-subtitle { font-size: 0.95rem; }
  .home-stat { padding: 0 1.2rem; }
  .home-stat__number { font-size: 2.2rem; }
  .home-stat__label { font-size: 0.72rem; }
  .home-stat-divider { height: 36px; }
}
@media (max-width: 480px) {
  .home-hero-content h1 { font-size: 1.6rem; }
  .home-stat { padding: 0 0.8rem; }
  .home-stat__number { font-size: 1.8rem; }
  .home-hero-cta { flex-direction: column; align-items: center; }
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(28,18,8,0.55) 40%, var(--bg-dark) 100%);
  z-index: 1;
}
.article-hero-overlay {
  position: relative;
  z-index: 2;
}
.article-hero-content {
  max-width: var(--container-narrow);
}
.article-hero .container { position: relative; z-index: 2; }

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.article-breadcrumb a { color: var(--text-muted); }
.article-breadcrumb a:hover { color: var(--gold); }
.article-breadcrumb .sep { color: var(--text-muted); opacity: 0.5; }
.article-breadcrumb .current { color: var(--sand); }

.article-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.3rem 0.8rem;
  background: rgba(218,165,32,0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}
.article-meta,
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}
.article-meta i,
.article-hero-meta i { margin-right: 4px; color: var(--gold); opacity: 0.7; }

/* ── Article Body ── */
.article-body {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
}
.article-body h2 {
  color: var(--gold);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border-accent);
}
.article-body h3 { color: var(--sand-light); }
.article-body p { font-size: 1.02rem; line-height: 1.8; }
.article-body a {
  color: var(--gold);
  border-bottom: 1px solid rgba(218,165,32,0.3);
  transition: all 0.2s ease;
}
.article-body a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}
.article-body ul, .article-body ol {
  margin: var(--space-md) 0 var(--space-md) var(--space-xl);
  color: var(--text-secondary);
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}
.article-body img {
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
}

/* ── Info Box / Highlight ── */
.info-box {
  background: rgba(218,165,32,0.06);
  border-left: 4px solid var(--gold);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.info-box h4 {
  color: var(--gold);
  font-family: var(--font-display);
  margin-bottom: var(--space-sm);
}
.warning-box {
  background: rgba(199, 91, 57, 0.08);
  border-left: 4px solid var(--terracotta);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.warning-box h4 { color: var(--terracotta); }

/* ── Image Block ── */
.article-img-block {
  margin: var(--space-xl) 0;
  text-align: center;
}
.article-img-block img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}
.img-caption {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  font-style: italic;
  line-height: 1.5;
}

/* ── Tables: Premium Responsive ── */

/* Wrapper */
.info-table,
.spec-table {
  margin: var(--space-xl) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(218,165,32,0.25);
  background: var(--bg-card);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18), 0 0 0 1px rgba(218,165,32,0.08);
}

/* Inner table */
.info-table table,
.spec-table table {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
}

/* Header row */
.info-table thead th,
.spec-table thead th {
  background: linear-gradient(135deg, rgba(218,165,32,0.15), rgba(218,165,32,0.06));
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85rem var(--space-lg);
  text-align: left;
  border-bottom: 2px solid rgba(218,165,32,0.3);
  border-right: 1px solid rgba(218,165,32,0.10);
  white-space: nowrap;
}

/* Key-value tables (th + td per row) */
.info-table th,
.spec-table th {
  background: rgba(218,165,32,0.08);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem var(--space-lg);
  text-align: left;
  width: 38%;
  vertical-align: top;
  border-bottom: 1px solid rgba(218,165,32,0.12);
  border-right: 1px solid rgba(218,165,32,0.10);
}

.info-table td,
.spec-table td {
  color: var(--sand-light);
  font-size: 0.9rem;
  padding: 0.85rem var(--space-lg);
  border-bottom: 1px solid rgba(218,165,32,0.10);
  line-height: 1.6;
  vertical-align: top;
}

/* Zebra striping */
.info-table tr:nth-child(even),
.spec-table tr:nth-child(even) {
  background: rgba(255,255,255,0.015);
}

/* Hover */
.info-table tr:hover,
.spec-table tr:hover {
  background: rgba(218,165,32,0.04);
}

/* Last row — no border */
.info-table tr:last-child th,
.info-table tr:last-child td,
.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

/* Bold/highlight values */
.info-table td strong,
.spec-table td strong {
  color: var(--sand-light);
  font-weight: 600;
}

/* Mobile: scrollable wrapper for bare tables in articles */
@media (max-width: 768px) {
  .info-table,
  .spec-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .info-table table,
  .spec-table table {
    min-width: 480px;
  }
  .info-table th,
  .info-table td,
  .spec-table th,
  .spec-table td {
    padding: 0.7rem var(--space-md);
    font-size: 0.85rem;
  }
  .info-table th,
  .spec-table th {
    width: 42%;
  }
  .article-body > table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
}

/* ── Pros / Cons ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}
.pros-list, .pros,
.cons-list, .cons {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}
.pros-list, .pros {
  background: rgba(45,80,22,0.1);
  border: 1px solid rgba(45,80,22,0.3);
}
.cons-list, .cons {
  background: rgba(199,91,57,0.08);
  border: 1px solid rgba(199,91,57,0.25);
}
.pros-list h3, .pros h3 { color: var(--forest-light); margin-top: 0; }
.cons-list h3, .cons h3 { color: var(--terracotta); margin-top: 0; }
.pros-list h4, .pros h4 { color: var(--forest-light); }
.cons-list h4, .cons h4 { color: var(--terracotta); }
.pros-list ul, .pros ul,
.cons-list ul, .cons ul {
  list-style: none;
  margin: var(--space-sm) 0 0 0;
}
.pros-list li::before, .pros li::before { content: '✓ '; color: var(--forest-light); font-weight: 700; }
.cons-list li::before, .cons li::before { content: '✗ '; color: var(--terracotta); font-weight: 700; }

/* ── Screenshot Gallery ── */
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}
.screenshot-gallery img {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease;
  cursor: pointer;
  margin: 0;
}
.screenshot-gallery img:hover {
  transform: scale(1.02);
}
.screenshot-gallery figcaption {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  padding-top: var(--space-xs);
}

/* Rating badge */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.9rem;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  color: var(--bg-dark);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
}
.rating-badge i { font-size: 0.85rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .article-hero { padding: var(--space-2xl) 0 var(--space-xl); }
  .article-body { padding: var(--space-xl) var(--space-md); }
  .pros-cons { grid-template-columns: 1fr; }
  .screenshot-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .article-meta, .article-hero-meta { gap: var(--space-sm); font-size: 0.8rem; }
  .screenshot-gallery { grid-template-columns: 1fr; }
}
/* === cards.css — Slot & Casino Cards, Card Grids === */

/* ── Shared Card Grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Base Card ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--border-accent);
}

/* Fully clickable card (wrapped in <a>) */
a.card-clickable,
a.card-clickable:link,
a.card-clickable:visited {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-secondary);
  cursor: pointer;
}
a.card-clickable:hover { color: var(--text-secondary); }
a.card-clickable h3 { color: var(--sand-light); transition: color 0.2s; }
a.card-clickable:hover h3 { color: var(--gold); }
a.card-clickable .card-provider { color: var(--text-muted); }
a.card-clickable .card-excerpt { color: var(--text-secondary); }
a.card-clickable .casino-bonus { color: var(--text-secondary); }
a.card-clickable .casino-bonus strong { color: var(--gold); }
a.card-clickable .casino-features span { color: var(--forest-light); }
.card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img img { transform: scale(1.05); }

.card-img .card-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 0.2rem 0.6rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-img .card-rating {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 0.2rem 0.5rem;
  background: rgba(28,18,8,0.85);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-accent);
}

.card-body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 var(--space-xs);
  color: var(--sand-light);
}
.card-body h3 a {
  color: inherit;
  border-bottom: none;
}
.card-body h3 a:hover { color: var(--gold); }

/* card-link as span inside clickable card */
span.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
span.card-link::after { content: ' →'; transition: transform 0.2s; }
.card-clickable:hover span.card-link::after { transform: translateX(3px); }
.card-provider {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.card-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-md);
}
.card-tags span {
  padding: 0.15rem 0.5rem;
  background: rgba(218,165,32,0.08);
  color: var(--text-muted);
  font-size: 0.72rem;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-lg) var(--space-md);
}
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link::after { content: ' →'; transition: transform 0.2s; }
.card:hover .card-link::after { transform: translateX(3px); }

/* ── Section Cards ── */
.section-cards {
  padding: var(--space-xl) 0;
}

/* ── Casino Grid Variant ── */
.card-grid--casinos {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ── Guide Cards ── */
.card-grid--guides {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.guide-card,
a.guide-card:link,
a.guide-card:visited {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-muted);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--border-accent);
}
.guide-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.guide-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.guide-card:hover .guide-card-img img {
  transform: scale(1.06);
}
.guide-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  line-height: 1;
}
.guide-card h3 {
  font-family: var(--font-display);
  color: var(--sand-light);
  font-size: 1.05rem;
  margin: 0 0 var(--space-sm);
  padding: var(--space-md) var(--space-lg) 0;
}
.guide-card:hover h3 { color: var(--gold); }
.guide-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  padding: 0 var(--space-lg) var(--space-lg);
}

/* ── Casino Card Specific ── */
.casino-card .card-img {
  aspect-ratio: 2 / 1;
  background: linear-gradient(135deg, var(--brown-deep), var(--bg-card));
}
.casino-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.casino-bonus {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(218,165,32,0.06);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  font-size: 0.85rem;
}
.casino-bonus strong { color: var(--gold); }
.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-sm);
}
.casino-features span {
  font-size: 0.72rem;
  padding: 0.15rem 0.45rem;
  background: rgba(45,80,22,0.1);
  color: var(--forest-light);
  border-radius: 20px;
}

/* ── Related Article Card (compact) ── */
.related-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  cursor: pointer;
}
.related-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}
.related-card-img {
  flex-shrink: 0;
  width: 100px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-card-body h4 {
  font-size: 0.9rem;
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--sand-light);
}
a.related-card,
a.related-card:link,
a.related-card:visited {
  text-decoration: none;
  color: var(--text-muted);
}
a.related-card h4 { color: var(--sand-light); transition: color 0.2s; }
a.related-card:hover h4 { color: var(--gold); }
a.related-card p { color: var(--text-muted); }
.related-card-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Screenshot Gallery ── */
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}
.screenshot-gallery a {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.screenshot-gallery a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}
.screenshot-gallery img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.screenshot-gallery figcaption {
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-card);
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .screenshot-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .screenshot-gallery { grid-template-columns: 1fr; gap: var(--space-sm); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--guides { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .section-cards { padding: var(--space-2xl) 0; }
}
@media (max-width: 480px) {
  .card-grid, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
  .card-grid--guides { grid-template-columns: 1fr; }
  .card-grid--casinos { grid-template-columns: 1fr; }
  .related-card-img { width: 80px; height: 60px; }
  .guide-card { padding: 0; }
}
/* === components.css — CTA, FAQ, Tables, Breadcrumbs, Badges, Cookie Bar === */

/* ── Skip Link (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10000;
  transition: top 0.25s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold-bright);
  outline-offset: 2px;
}

/* ── Focus Styles (Accessibility) ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* CTA button styles moved to css/buttons.css (loaded last for proper cascade) */

/* ── FAQ Accordion ── */
.faq-section {
  margin: var(--space-xl) 0;
  max-width: var(--container-max);
}
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item:hover { border-color: var(--border-accent); }
.faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: rgba(218,165,32,0.04);
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--sand-light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: background 0.25s ease;
}
.faq-question:hover { background: rgba(218,165,32,0.08); }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: var(--space-md);
  position: relative;
  transition: transform 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
}
.faq-icon::before {
  top: 50%; left: 0;
  width: 100%; height: 2px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%; top: 0;
  width: 2px; height: 100%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
}
.faq-item.open .faq-icon::after { opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 var(--space-lg) var(--space-lg);
}
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  padding-top: var(--space-sm);
}

/* ── Comparison Table ── */
.comparison-table {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(218,165,32,0.25);
  background: var(--bg-card);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18), 0 0 0 1px rgba(218,165,32,0.08);
}
.comparison-table table {
  min-width: 600px;
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th {
  background: linear-gradient(135deg, rgba(218,165,32,0.15), rgba(218,165,32,0.06));
  color: var(--gold);
  padding: 0.85rem var(--space-lg);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  border-bottom: 2px solid rgba(218,165,32,0.3);
  border-right: 1px solid rgba(218,165,32,0.10);
  white-space: nowrap;
}
.comparison-table td {
  padding: 0.8rem var(--space-lg);
  color: var(--sand-light);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(218,165,32,0.10);
  border-right: 1px solid rgba(218,165,32,0.06);
  line-height: 1.6;
}
.comparison-table tr:nth-child(even) { background: rgba(255,255,255,0.015); }
.comparison-table tr:hover td { background: rgba(218,165,32,0.04); }
.comparison-table td strong { color: var(--sand-light); font-weight: 600; }
@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    padding: 0.7rem var(--space-md);
    font-size: 0.85rem;
  }
}

/* ── Breadcrumb (shared) ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  padding: var(--space-md) 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-muted); opacity: 0.5; }
.breadcrumb .current { color: var(--sand); }

/* ── Badge Variants ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge--gold { background: rgba(218,165,32,0.15); color: var(--gold); }
.badge--green { background: rgba(45,80,22,0.15); color: var(--forest-light); }
.badge--red { background: rgba(199,91,57,0.12); color: var(--terracotta); }
.badge--neutral { background: rgba(255,255,255,0.06); color: var(--text-muted); }

/* ── Stars ── */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.9rem;
}
.stars .empty { color: var(--text-muted); opacity: 0.3; }

/* ── Cookie Consent Banner ── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(28,18,8,0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-accent);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.cookie-consent.visible { transform: translateY(0); }
.cookie-consent__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem var(--space-lg);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-consent__text {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex: 1;
  min-width: 280px;
}
.cookie-consent__icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.cookie-consent__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sand-light);
  margin: 0 0 0.3rem;
}
.cookie-consent__desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.cookie-consent__desc a { color: var(--gold); text-decoration: underline; }
.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-consent__btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.cookie-consent__btn--accept {
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  color: var(--bg-dark);
}
.cookie-consent__btn--accept:hover { box-shadow: 0 4px 16px rgba(218,165,32,0.4); transform: translateY(-1px); }
.cookie-consent__btn--essential {
  background: rgba(255,255,255,0.08);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}
.cookie-consent__btn--essential:hover { background: rgba(255,255,255,0.12); color: var(--text-primary); }
.cookie-consent__btn--manage {
  background: transparent;
  color: var(--text-muted);
  text-decoration: underline;
  padding: 0.55rem 0.6rem;
}
.cookie-consent__btn--manage:hover { color: var(--gold); }
.cookie-consent__btn--save {
  background: var(--gold);
  color: var(--bg-dark);
  margin-top: 0.5rem;
}
.cookie-consent__btn--save:hover { background: var(--gold-bright); }
.cookie-consent__prefs {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg) 1.25rem;
  border-top: 1px solid var(--border-subtle);
}
.cookie-consent__pref-row {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cookie-consent__pref-row label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}
.cookie-consent__pref-row input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}
.cookie-consent__pref-row strong { color: var(--sand-light); font-size: 0.85rem; }
.cookie-consent__pref-row span { font-size: 0.78rem; color: var(--text-muted); }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 900;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--gold-bright); }

/* ── Related Articles Section ── */
.related-section {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border-subtle);
}
.related-section h2 {
  font-family: var(--font-display);
  color: var(--gold);
  text-align: center;
  margin-bottom: var(--space-xl);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* ── Sitemap Grid ── */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}
.sitemap-section h2 {
  font-size: 1.15rem;
  color: var(--gold);
  border-bottom: 2px solid var(--gold-dark);
  padding-bottom: var(--space-xs);
  margin-bottom: var(--space-sm);
}
.sitemap-section h2 i {
  margin-right: 0.5rem;
  opacity: 0.8;
}
.sitemap-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-section ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sitemap-section ul li:last-child {
  border-bottom: none;
}
.sitemap-section ul li a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}
.sitemap-section ul li a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cta-btn { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
  .faq-question { font-size: 0.92rem; padding: var(--space-sm) var(--space-md); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .cookie-bar { flex-direction: column; text-align: center; gap: var(--space-sm); }
  .sitemap-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr; }
}
/* === animations.css — Premium scroll & interaction animations === */

/* ── Keyframes ── */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.7; }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(218,165,32,0.15); box-shadow: 0 0 0 rgba(218,165,32,0); }
  50%      { border-color: rgba(218,165,32,0.35); box-shadow: 0 0 12px rgba(218,165,32,0.08); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes revealLine {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll-triggered Reveal ── */
.anim-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.anim-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.anim-reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.anim-reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.anim-reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for card grids */
.anim-stagger > *:nth-child(1) { transition-delay: 0s; }
.anim-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.anim-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.anim-stagger > *:nth-child(4) { transition-delay: 0.24s; }
.anim-stagger > *:nth-child(5) { transition-delay: 0.32s; }
.anim-stagger > *:nth-child(6) { transition-delay: 0.40s; }
.anim-stagger > *:nth-child(7) { transition-delay: 0.48s; }
.anim-stagger > *:nth-child(8) { transition-delay: 0.56s; }

/* ── Card Premium Hover ── */
.slot-card,
.casino-card,
.guide-card {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
}
.slot-card:hover,
.casino-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 20px rgba(218,165,32,0.08);
  border-color: rgba(218,165,32,0.3);
}
.guide-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3), 0 0 16px rgba(218,165,32,0.06);
}

/* Card image zoom on hover */
.slot-card img,
.casino-card img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.slot-card:hover img,
.casino-card:hover img {
  transform: scale(1.06);
}

/* Guide card image zoom on hover */
.guide-card-img img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.guide-card:hover .guide-card-img img {
  transform: scale(1.06);
}

/* ── Gold Shimmer on Headings ── */
.article-hero h1 {
  background: linear-gradient(
    110deg,
    var(--sand-light) 0%,
    var(--gold-bright) 40%,
    #fff 50%,
    var(--gold-bright) 60%,
    var(--sand-light) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 6s linear infinite;
}

/* ── Section Headers Animation ── */
.section-cards h2 {
  position: relative;
  display: inline-block;
}
.section-cards h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-cards:hover h2::after,
.section-cards h2.visible::after {
  width: 80%;
}

/* ── Article Body H2 reveal line ── */
.article-body h2 {
  position: relative;
  overflow: hidden;
}
.article-body h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.article-body h2.visible::after {
  width: 100%;
}

/* ── CTA Button Shine ── */
.cta-btn {
  position: relative;
  overflow: hidden;
}
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}
.cta-btn:hover::before {
  left: 125%;
}

/* ── FAQ Smooth Open ── */
.faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.open {
  box-shadow: 0 4px 16px rgba(218,165,32,0.06);
}

/* ── Info Table Row Hover ── */
.info-table tr,
.spec-table tr,
.comparison-table tr {
  transition: background 0.25s ease;
}
.info-table tr:hover,
.spec-table tr:hover {
  background: rgba(218,165,32,0.04);
}

/* ── Article Image Hover ── */
.article-img-block img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease;
}
.article-img-block:hover img {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ── Footer Link Underline Sweep ── */
.footer-col a {
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-col a:hover::after {
  width: 100%;
}

/* ── Badge Pulse on Hover ── */
.badge:hover {
  animation: subtlePulse 0.8s ease-in-out;
}

/* ── Rating Badge Glow ── */
.rating-badge {
  transition: box-shadow 0.3s ease;
}
.rating-badge:hover {
  box-shadow: 0 0 16px rgba(218,165,32,0.3);
}

/* ── Pros/Cons Border Glow ── */
.pros-list, .pros,
.cons-list, .cons {
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.pros-list:hover, .pros:hover {
  box-shadow: 0 4px 20px rgba(45,80,22,0.12);
  border-color: rgba(45,80,22,0.5);
}
.cons-list:hover, .cons:hover {
  box-shadow: 0 4px 20px rgba(199,91,57,0.12);
  border-color: rgba(199,91,57,0.4);
}

/* ── Back to Top Entrance ── */
.back-to-top {
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.4s,
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.25s ease;
}

/* ── Header Entrance ── */
.site-header {
  animation: slideInDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Hero Content Entrance ── */
.article-hero-content {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.article-hero-meta span {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.article-hero-meta span:nth-child(1) { animation-delay: 0.4s; }
.article-hero-meta span:nth-child(2) { animation-delay: 0.5s; }
.article-hero-meta span:nth-child(3) { animation-delay: 0.6s; }

/* ── Link Hover Gold Glow ── */
.article-body a {
  transition: color 0.25s ease,
              border-bottom-color 0.25s ease,
              text-shadow 0.25s ease;
}
.article-body a:hover {
  text-shadow: 0 0 8px rgba(218,165,32,0.2);
}

/* ── Cookie Consent Entrance ── */
.cookie-consent {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Age Badge Pulse ── */
.age-badge {
  animation: borderGlow 3s ease-in-out infinite;
}

/* ── Smooth Page Load ── */
body {
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Prefers Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .anim-reveal,
  .anim-reveal-left,
  .anim-reveal-scale {
    opacity: 1;
    transform: none;
  }
  .article-hero h1 {
    -webkit-text-fill-color: var(--sand-light);
    background: none;
  }
}
/* === buttons.css — Unified button styles, loaded LAST to override all cascading issues === */

@keyframes btn-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}
@keyframes btn-glow-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(218,165,32,0.3); }
  50% { box-shadow: 0 4px 28px rgba(218,165,32,0.55); }
}
@keyframes bonus-bounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-3px); }
  60% { transform: translateY(-1px); }
}

/* ── Primary CTA Button (gold gradient, dark text) ── */
.cta-btn,
a.cta-btn,
a.cta-btn:link,
a.cta-btn:visited,
.article-body a.cta-btn,
.article-body a.cta-btn:link,
.article-body a.cta-btn:visited,
.cta-block a.cta-btn,
.cta-block a.cta-btn:link,
.cta-block a.cta-btn:visited,
section a.cta-btn,
div a.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #DAA520, #C75B39);
  color: #1a1409 !important;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  border-bottom: none !important;
  cursor: pointer;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(218,165,32,0.3);
  line-height: 1.4;
  animation: btn-glow-pulse 3s ease-in-out infinite;
}

.cta-btn:hover,
a.cta-btn:hover,
.article-body a.cta-btn:hover,
.cta-block a.cta-btn:hover,
section a.cta-btn:hover,
div a.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(218,165,32,0.5);
  color: #1a1409 !important;
  border-bottom: none !important;
  animation: none;
}

.cta-btn:active,
a.cta-btn:active {
  transform: translateY(0) scale(0.98);
  color: #1a1409 !important;
  transition-duration: 0.1s;
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: btn-shimmer 4s ease-in-out infinite;
  animation-delay: 1s;
  pointer-events: none;
}
.cta-btn:hover::after {
  animation: btn-shimmer 0.6s ease-out forwards;
}

/* ── Secondary CTA Button (outline, gold text) ── */
.cta-btn.cta-btn--secondary,
a.cta-btn.cta-btn--secondary,
a.cta-btn.cta-btn--secondary:link,
a.cta-btn.cta-btn--secondary:visited,
.article-body a.cta-btn.cta-btn--secondary,
.article-body a.cta-btn.cta-btn--secondary:link,
.article-body a.cta-btn.cta-btn--secondary:visited {
  background: transparent;
  border: 2px solid #DAA520 !important;
  color: #DAA520 !important;
  box-shadow: none;
}

.cta-btn.cta-btn--secondary:hover,
a.cta-btn.cta-btn--secondary:hover,
.article-body a.cta-btn.cta-btn--secondary:hover {
  background: rgba(218,165,32,0.1);
  color: #F0C040 !important;
  border: 2px solid #DAA520 !important;
  box-shadow: 0 0 20px rgba(218,165,32,0.25);
  transform: translateY(-3px) scale(1.03);
}

/* ── CTA Block container ── */
.cta-block {
  text-align: center;
  padding: 1.5rem;
  margin: 1.5rem 0;
  background: linear-gradient(135deg, rgba(218,165,32,0.06), rgba(199,91,57,0.06));
  border: 1px solid rgba(218,165,32,0.3);
  border-radius: 16px;
}
.cta-block p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* ── Header CTA color guarantee ── */
.header-cta,
a.header-cta,
a.header-cta:link,
a.header-cta:visited,
a.header-cta:hover {
  color: #1c1208 !important;
  text-decoration: none !important;
  border-bottom: none !important;
  animation: bonus-bounce 2.5s ease-in-out infinite;
  animation-delay: 3s;
}
.header-cta:hover,
a.header-cta:hover {
  animation: none;
  transform: scale(1.06);
}

.mobile-bonus-btn,
a.mobile-bonus-btn,
a.mobile-bonus-btn:link,
a.mobile-bonus-btn:visited,
a.mobile-bonus-btn:hover {
  color: #1c1208 !important;
  text-decoration: none !important;
  border-bottom: none !important;
  animation: bonus-bounce 2.5s ease-in-out infinite;
  animation-delay: 4s;
}
.mobile-bonus-btn:hover,
a.mobile-bonus-btn:hover {
  animation: none;
  transform: scale(1.04);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cta-btn,
  a.cta-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* === byline.css — Article Author & Date Byline === */

.article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
  background: linear-gradient(135deg, rgba(218,165,32,0.05), rgba(199,91,57,0.03));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
}
.article-byline__credits {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.article-byline__person {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.article-byline__person--translator {
  padding-left: var(--space-md);
  border-left: 1px solid var(--border-subtle);
}
.article-byline__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.article-byline__avatar--sm {
  width: 32px;
  height: 32px;
  font-size: 0.65rem;
}
.article-byline__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sand-light);
  border-bottom: none !important;
}
.article-byline__name:hover { color: var(--gold); }
.article-byline__role {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.article-byline__dates {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.article-byline__dates i {
  color: var(--gold);
  opacity: 0.6;
  margin-right: 3px;
}
.article-byline__sep { opacity: .4; }
.article-byline__updated {
  color: var(--gold);
  font-weight: 500;
}
.article-byline__updated i { opacity: 0.8; }
@media (max-width: 768px) {
  .article-byline {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-md);
    gap: var(--space-sm);
  }
  .article-byline__person--translator {
    padding-left: 0;
    border-left: none;
  }
}

/* === About Person (About Us page) === */
.about-person {
  margin-bottom: var(--space-xl);
}
.about-person__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.about-person__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.about-person__name {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: var(--sand-light);
}
.about-person__role {
  font-size: 0.88rem;
  color: var(--gold);
  margin: 0.15rem 0 0;
  font-weight: 500;
}
.about-person__bio {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.about-person__bio p {
  margin: 0 0 0.9rem;
}
.about-person__bio p:last-child {
  margin-bottom: 0;
}
