/* ==========================================================================
   SUOMALAINEN NETTIKASINO - LUXURY CASINO DESIGN SYSTEM
   Premium dark theme with gold accents and glassmorphism
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
  /* Base blacks */
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-tertiary: #1A1A1A;
  --bg-card: rgba(26, 26, 26, 0.6);

  /* Gold accents */
  --gold-primary: #D4AF37;
  --gold-light: #F4E4BA;
  --gold-dark: #8B7355;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E4BA 50%, #D4AF37 100%);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.3);
  --gold-rgb: 212, 175, 55;

  /* Glassmorphism */
  --glass-bg: rgba(26, 26, 26, 0.4);
  --glass-border: rgba(212, 175, 55, 0.2);
  --glass-blur: blur(20px);

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-gold: #D4AF37;

  /* Legacy compatibility */
  --color-bg: var(--bg-primary);
  --color-bg-secondary: var(--bg-secondary);
  --color-bg-tertiary: var(--bg-tertiary);
  --color-primary: var(--gold-primary);
  --color-primary-hover: var(--gold-light);
  --color-primary-dark: var(--gold-dark);
  --color-primary-rgb: var(--gold-rgb);
  --color-text: var(--text-primary);
  --color-text-secondary: var(--text-secondary);
  --color-text-muted: var(--text-muted);

  /* Functional Colors */
  --color-success: #2d7a4f;
  --color-warning: var(--gold-primary);
  --color-error: #a83232;
  --color-info: #3a6a8a;

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

  /* Font Sizes - Fluid */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.4vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.8vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.6rem + 1.4vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.9rem + 1.8vw, 3rem);
  --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 5rem);

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

  /* Layout */
  --container-max: 1400px;
  --container-narrow: 900px;
  --sidebar-width: 300px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);
  --shadow-glow: var(--gold-glow);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index layers */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
}

/* ==========================================================================
   CSS RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.site-wrapper {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: var(--radius);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

ul, ol {
  list-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Section */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--dark {
  background: var(--bg-secondary);
}

/* Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--text-secondary); }
.text-gold { color: var(--gold-primary); }
.text-sm { font-size: var(--text-sm); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* Flexbox Utilities */
.flex { display: flex; }
.flex--gap { gap: var(--space-lg); }
.flex--center { justify-content: center; align-items: center; }
.items-center { align-items: center; }

/* ==========================================================================
   HEADER - Glassmorphism
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--space-md) 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition);
}

.site-header.scrolled {
  padding: var(--space-sm) 0;
  background: rgba(10, 10, 10, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.logo-text .gold {
  color: var(--gold-primary);
}

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

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-list {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition);
}

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

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  z-index: 1000;
  position: relative;
}

/* Burger lines */
.burger-line {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #D4AF37;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Burger animation to X */
.mobile-menu-btn.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================================================
   HERO SECTION - PREMIUM GOLD PARTICLES & 3D SPHERES
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px var(--space-lg) 80px;
  background: var(--bg-primary);
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Hero gradient background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% -10%, rgba(212, 175, 55, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Hero grid pattern */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
}

/* Canvas for gold particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* 3D Gold Spheres Container */
.hero-spheres {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

/* 3D Gold Sphere Base Style */
.gold-sphere {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    #F4E4BA 0%,
    #D4AF37 25%,
    #8B7355 60%,
    #5C4A2A 100%
  );
  box-shadow:
    inset -8px -8px 20px rgba(0, 0, 0, 0.4),
    inset 4px 4px 10px rgba(244, 228, 186, 0.6),
    0 0 30px rgba(212, 175, 55, 0.3),
    0 10px 40px rgba(0, 0, 0, 0.3);
  animation: sphereFloat 8s ease-in-out infinite;
}

/* Highlight on spheres */
.gold-sphere::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 30%;
  height: 25%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  transform: rotate(-30deg);
}

/* Secondary highlight */
.gold-sphere::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 15%;
  height: 12%;
  border-radius: 50%;
  background: rgba(244, 228, 186, 0.4);
  filter: blur(2px);
}

@keyframes sphereFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  25% {
    transform: translateY(-15px) translateX(8px) scale(1.02);
  }
  50% {
    transform: translateY(-25px) translateX(-5px) scale(0.98);
  }
  75% {
    transform: translateY(-10px) translateX(-10px) scale(1.01);
  }
}

/* Decorative Star */
.hero-star {
  position: absolute;
  top: 12%;
  right: 18%;
  width: 60px;
  height: 60px;
  z-index: 4;
  animation: starRotate 20s linear infinite, starPulse 3s ease-in-out infinite;
  opacity: 0.8;
}

.hero-star svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

@keyframes starRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes starPulse {
  0%, 100% { opacity: 0.6; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.1) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  transition: transform 0.1s ease-out;
}

/* Glowing button effect */
.btn--glow {
  position: relative;
  overflow: visible;
}

.btn--glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gold-gradient);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.3s ease;
}

.btn--glow:hover::before {
  opacity: 0.6;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; filter: blur(8px); }
  50% { opacity: 0.7; filter: blur(12px); }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease;
}

.badge-icon {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.badge-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* Hero Title */
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

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

/* Hero Subtitle */
.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* Hero Compact Variant (for category pages) */
.hero--compact {
  min-height: 60vh;
  padding: 100px var(--space-lg) 60px;
}

.hero--compact .hero__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

.hero--compact .hero__subtitle {
  font-size: var(--text-base);
  max-width: 500px;
}

.hero--compact .hero-star {
  width: 45px;
  height: 45px;
}

.hero--compact .gold-sphere {
  opacity: 0.8;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
  border: none;
}

.btn--primary {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  box-shadow: var(--gold-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  color: var(--bg-primary);
}

.btn--primary .btn-arrow {
  transition: transform var(--transition);
}

.btn--primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn--secondary {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.btn--secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
  color: var(--gold-primary);
}

.btn--lg {
  padding: var(--space-md) var(--space-2xl);
  min-height: 56px;
  font-size: var(--text-lg);
}

.btn--sm {
  padding: var(--space-sm) var(--space-lg);
  min-height: 40px;
  font-size: var(--text-sm);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn--ghost:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn--lg svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   BENTO GRID CATEGORIES
   ========================================================================== */
.categories {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
}

.categories::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

/* ============================================
   КАРТОЧКИ КАТЕГОРИЙ — ИСПРАВЛЕННЫЕ СТИЛИ
   ============================================ */

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  padding-bottom: 4.5rem; /* Добавляем место для стрелки снизу */
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 180px; /* Минимальная высота для маленьких карточек */
  --mouse-x: 50%;
  --mouse-y: 50%;
}

/* Большие карточки */
.bento-large {
  grid-column: span 2;
  min-height: 220px;
  padding-bottom: 5rem;
}

/* Средние карточки */
.bento-medium {
  grid-column: span 1;
  min-height: 200px;
}

/* Маленькие карточки */
.bento-small {
  grid-column: span 1;
  min-height: 180px;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
              rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.bento-card:hover .card-glow {
  opacity: 1;
}

.bento-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Контент карточки */
.card-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Иконка */
.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  margin-bottom: 1.25rem;
  color: var(--gold-primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.bento-card:hover .card-icon {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.05);
}

/* Заголовок */
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.bento-card:hover .card-title {
  color: var(--gold-primary);
}

/* Счетчик статей */
.card-count {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

/* Описание (только для больших карточек) */
.card-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: auto;
  padding-right: 50px; /* Отступ от стрелки */
}

/* ============================================
   СТРЕЛКА — ФИКСИРОВАННАЯ ПОЗИЦИЯ СНИЗУ СПРАВА
   ============================================ */

.card-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--gold-primary);
  transition: all 0.3s ease;
  z-index: 2;
  flex-shrink: 0;
}

.card-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

/* Hover эффект для стрелки */
.bento-card:hover .card-arrow {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-primary);
  transform: scale(1.1);
}

.bento-card:hover .card-arrow svg {
  transform: translateX(3px);
}

/* Scroll Animation */
.bento-card {
  opacity: 0;
  transform: translateY(30px);
}

.bento-card.animate-in {
  animation: cardFadeIn 0.6s ease forwards;
}

.bento-card:nth-child(1) { animation-delay: 0.1s; }
.bento-card:nth-child(2) { animation-delay: 0.15s; }
.bento-card:nth-child(3) { animation-delay: 0.2s; }
.bento-card:nth-child(4) { animation-delay: 0.25s; }
.bento-card:nth-child(5) { animation-delay: 0.3s; }
.bento-card:nth-child(6) { animation-delay: 0.35s; }

/* ============================================
   КАРТОЧКИ СТАТЕЙ — СТРАНИЦЫ КАТЕГОРИЙ
   ============================================ */

/* Заголовок страницы категории */
.category-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.category-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.category-count {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--gold-primary);
}

/* Сетка карточек */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Карточка статьи */
.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem;
  padding-bottom: 4.5rem;
  min-height: 220px;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover эффект карточки */
.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(212, 175, 55, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.article-card:hover::before {
  opacity: 1;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(212, 175, 55, 0.1);
}

/* Контент статьи */
.article-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Заголовок статьи */
.article-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.article-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: var(--gold-primary);
}

/* Превью текст */
.article-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Кнопка "Lue lisää" — БЕЗ стрелки, В углу */
.article-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 2;
}

.article-btn:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Состояния карточек */
.article-card.new::after {
  content: 'Uusi';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.article-card.popular::after {
  content: 'Suosittu';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--gold-primary);
}

/* Article Card Scroll Animation */
.articles-grid .article-card {
  opacity: 0;
  transform: translateY(20px);
}

.articles-grid .article-card.animate-in {
  animation: cardFadeIn 0.5s ease forwards;
}

.articles-grid .article-card:nth-child(1) { animation-delay: 0.05s; }
.articles-grid .article-card:nth-child(2) { animation-delay: 0.1s; }
.articles-grid .article-card:nth-child(3) { animation-delay: 0.15s; }
.articles-grid .article-card:nth-child(4) { animation-delay: 0.2s; }
.articles-grid .article-card:nth-child(5) { animation-delay: 0.25s; }
.articles-grid .article-card:nth-child(6) { animation-delay: 0.3s; }
.articles-grid .article-card:nth-child(7) { animation-delay: 0.35s; }
.articles-grid .article-card:nth-child(8) { animation-delay: 0.4s; }
.articles-grid .article-card:nth-child(9) { animation-delay: 0.45s; }

/* Legacy category card support */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all var(--transition);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.category-card svg {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-md);
  color: var(--gold-primary);
}

.category-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  transition: color var(--transition);
}

.category-card:hover .category-card__title {
  color: var(--gold-primary);
}

.category-card__count {
  font-size: var(--text-sm);
  color: var(--gold-primary);
}

.category-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border-radius: 16px;
  flex-shrink: 0;
}

.category-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
}

/* Tag Header */
.tag-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  margin-bottom: var(--space-lg);
}

.tag-header__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border-radius: 12px;
  flex-shrink: 0;
}

.tag-header__icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
}

.tag-header__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin: 0 0 4px 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-tertiary);
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-seo {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

.seo-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.seo-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-section__title {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

.footer-disclaimer {
  max-width: 600px;
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.6;
}

.responsible-gaming {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.responsible-gaming .age-badge {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1rem;
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: var(--z-modal-backdrop);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: calc(100% - 2rem);
  max-width: 800px;
  max-height: calc(100vh - 4rem);
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--glass-border);
}

.modal__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gold-primary);
}

.modal__close {
  background: none;
  border: none;
  padding: var(--space-sm);
  cursor: pointer;
  color: var(--text-secondary);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}

.modal__close:hover {
  background: var(--bg-tertiary);
  color: var(--gold-primary);
}

.modal__body {
  padding: var(--space-lg);
  overflow-y: auto;
  flex: 1;
}

/* ==========================================================================
   ARTICLE & CARDS (for other pages)
   ========================================================================== */
.card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.card__body {
  padding: var(--space-lg);
}

.card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.card__title--with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card__title svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.card__title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
}

.card__title a:hover {
  color: var(--gold-primary);
}

.card__title a {
  color: var(--text-primary);
}

.card__title a:hover {
  color: var(--gold-primary);
}

.card__excerpt {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Icon Sizes */
.icon-sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.icon-md {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-lg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Card Modifiers */
.card--bordered {
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(20, 16, 32, 0.6);
  backdrop-filter: blur(10px);
}

.card--bordered:hover {
  transform: none;
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Two Column Layout */
.layout-two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.layout-two-col aside {
  position: sticky;
  top: 100px;
  height: fit-content;
}

@media (max-width: 1024px) {
  .layout-two-col {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .layout-two-col aside {
    position: static;
  }
}

/* Article Content */
.article-content {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-primary);
}

.article-content h2 {
  font-size: var(--text-2xl);
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--gold-primary);
}

.article-content h3 {
  font-size: var(--text-xl);
  margin: var(--space-xl) 0 var(--space-md);
}

.article-content p {
  margin-bottom: var(--space-lg);
}

.article-content ul,
.article-content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
  margin-bottom: var(--space-sm);
}

.article-content blockquote {
  margin: var(--space-lg) 0;
  padding: var(--space-lg);
  background: var(--bg-secondary);
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-content table {
  width: 100%;
  margin: var(--space-lg) 0;
  border-collapse: collapse;
}

.article-content th,
.article-content td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.article-content th {
  background: var(--bg-secondary);
  color: var(--gold-primary);
  font-weight: 600;
}

/* Tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.tag:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-primary);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.breadcrumbs__separator {
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs a:hover {
  color: var(--gold-primary);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: var(--space-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.pagination__link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.pagination__link--active {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  color: var(--bg-primary);
}

.pagination__link--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.pagination__link svg {
  width: 20px;
  height: 20px;
}

/* Forms */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

/* Alerts */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  margin-bottom: var(--space-lg);
}

.alert--success {
  background: rgba(45, 122, 79, 0.2);
  border: 1px solid var(--color-success);
  color: #7dd3a0;
}

.alert--error {
  background: rgba(168, 50, 50, 0.2);
  border: 1px solid var(--color-error);
  color: #f5a5a5;
}

/* ==========================================================================
   CONTACT PAGE - HERO WITH FORM
   ========================================================================== */

/* Contact Hero Variant */
.hero--contact {
  min-height: 100vh;
  padding: 120px var(--space-lg) 60px;
}

.hero-contact-layout {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Left side - Text content */
.hero-contact-text {
  text-align: left;
}

.hero-contact-text .hero-badge {
  margin-bottom: var(--space-lg);
}

.hero-contact-text .hero__title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.hero-contact-text .hero__subtitle {
  text-align: left;
  margin: 0 0 var(--space-2xl);
  max-width: 100%;
}

/* Contact Info Items */
.hero-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-info-item .contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.contact-info-item .info-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-info-item .info-value {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: 500;
}

/* Right side - Form */
.hero-contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  backdrop-filter: var(--glass-blur);
}

.hero-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.hero-contact-form .form-group {
  margin-bottom: var(--space-md);
}

.hero-contact-form .required {
  color: var(--gold-primary);
}

.hero-contact-form .form-input,
.hero-contact-form .form-textarea,
.hero-contact-form .form-select {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-contact-form .form-input:hover,
.hero-contact-form .form-textarea:hover,
.hero-contact-form .form-select:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.hero-contact-form .form-input::placeholder,
.hero-contact-form .form-textarea::placeholder {
  color: var(--text-muted);
}

.hero-contact-form .form-textarea {
  min-height: 120px;
}

.hero-contact-form .btn {
  margin-top: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.hero-contact-form .btn svg {
  transition: transform var(--transition);
}

.hero-contact-form .btn:hover svg {
  transform: translate(3px, -3px);
}

.hero-contact-form .alert {
  margin-bottom: var(--space-lg);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold-light) 50%,
    var(--gold-dark) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* ============================================
   MOBILE FIRST - Base styles (< 768px)
   ============================================ */
@media (max-width: 767px) {
  /* Mobile Navigation */
  .main-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: #111111;
    flex-direction: column;
    padding: 100px var(--space-lg) var(--space-lg);
    transition: right var(--transition);
    z-index: var(--z-modal);
    border-left: 1px solid var(--glass-border);
    overflow-y: auto;
  }

  .main-nav.active {
    right: 0;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    width: 100%;
  }

  .nav-list li {
    display: block;
    width: 100%;
  }

  .nav-link {
    padding: var(--space-md);
    font-size: var(--text-lg);
    display: block;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-primary);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Mobile Header */
  .site-header .container {
    padding: 0 1rem;
  }

  /* Mobile burger button - must be above nav panel */
  .mobile-menu-btn {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 600;
    background: rgba(17, 17, 17, 0.9);
    border-radius: 8px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .logo-icon {
    width: 32px;
    height: 38px;
  }

  /* Mobile Grid */
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bento-large,
  .bento-medium,
  .bento-small {
    grid-column: span 1;
  }

  .bento-card {
    min-height: auto;
    padding: 1.25rem;
    padding-bottom: 3.5rem;
  }

  .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .card-icon svg {
    width: 24px;
    height: 24px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-arrow {
    width: 32px;
    height: 32px;
    bottom: 1rem;
    right: 1rem;
  }

  .card-arrow svg {
    width: 16px;
    height: 16px;
  }

  /* Mobile Article Cards */
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .article-card {
    padding: 1.25rem;
    padding-bottom: 4rem;
    min-height: 180px;
  }

  .article-title {
    font-size: 1.1rem;
  }

  .article-excerpt {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }

  .article-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .category-header {
    padding: 1rem 0;
    margin-bottom: 2rem;
  }

  .category-title {
    font-size: 1.75rem;
  }

  .category-description {
    font-size: 1rem;
  }

  /* Mobile Hero */
  .hero {
    padding: 100px var(--space-md) 60px;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: var(--text-xl);
  }

  .stat-label {
    font-size: 0.65rem;
  }

  /* Mobile Spheres - Much smaller and fewer */
  .hero-spheres {
    opacity: 0.4;
  }

  .gold-sphere {
    transform: scale(0.5) !important;
  }

  .hero-spheres .gold-sphere:nth-child(n+4) {
    display: none;
  }

  .hero-star {
    width: 30px;
    height: 30px;
    top: 15%;
    right: 5%;
    opacity: 0.5;
  }

  .hero-particles {
    opacity: 0.4;
  }

  /* Mobile Contact Page */
  .hero--contact {
    padding: 100px var(--space-md) 40px;
  }

  .hero-contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .hero-contact-text {
    text-align: center;
  }

  .hero-contact-text .hero__title,
  .hero-contact-text .hero__subtitle {
    text-align: center;
  }

  .hero-contact-info {
    justify-content: center;
    align-items: center;
  }

  .contact-info-item {
    justify-content: center;
  }

  .hero-contact-form {
    padding: var(--space-lg);
  }

  .hero-contact-form .form-row {
    grid-template-columns: 1fr;
  }

  /* Mobile Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  /* Mobile TOP 10 */
  .top-casinos {
    padding: var(--space-2xl) var(--space-md);
  }

  .section-title-fancy {
    font-size: 2.5rem;
  }

  .section-subtitle-fancy {
    font-size: 1.1rem;
  }

  .casino-card {
    padding: 1rem;
  }

  .casino-logo {
    width: 50px;
    height: 50px;
  }

  .casino-name {
    font-size: 1rem;
  }

  .casino-rating {
    font-size: 0.8rem;
  }

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

  .feature {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }

  /* Container padding */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ============================================
   VERY SMALL SCREENS (< 480px)
   ============================================ */
@media (max-width: 479px) {
  .hero-spheres,
  .hero-star {
    display: none;
  }

  .hero-particles {
    opacity: 0.3;
  }

  .hero__title {
    font-size: 1.6rem;
  }

  .hero-badge {
    padding: 0.35rem 0.75rem;
  }

  .badge-text {
    font-size: 0.7rem;
  }

  .hero-stats {
    gap: var(--space-sm);
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .section-title-fancy {
    font-size: 2rem;
  }
}

/* ============================================
   TABLETS (768px - 1023px)
   ============================================ */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Tablet Navigation */
  .main-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #111111;
    flex-direction: column;
    padding: 100px var(--space-lg) var(--space-lg);
    transition: right var(--transition);
    z-index: var(--z-modal);
    border-left: 1px solid var(--glass-border);
    overflow-y: auto;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }

  .nav-list li {
    display: block;
    width: 100%;
  }

  .nav-link {
    padding: var(--space-md);
    font-size: var(--text-lg);
    display: block;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-primary);
  }

  .main-nav.active {
    right: 0;
  }

  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large {
    grid-column: span 2;
  }

  .bento-card {
    min-height: 160px;
    padding: 1.5rem;
    padding-bottom: 4rem;
  }

  .card-arrow {
    width: 36px;
    height: 36px;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  /* Tablet Article Cards */
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .article-card {
    padding: 1.5rem;
    padding-bottom: 4.25rem;
    min-height: 200px;
  }

  .article-title {
    font-size: 1.15rem;
  }

  .article-excerpt {
    -webkit-line-clamp: 3;
  }

  .category-header {
    padding: 1.5rem 0;
    margin-bottom: 2.5rem;
  }

  .category-title {
    font-size: 2rem;
  }

  .hero {
    min-height: 100vh;
    padding: 120px var(--space-lg) 80px;
  }

  .stat-divider {
    display: block;
  }

  .hero-stats {
    flex-wrap: nowrap;
  }

  /* Spheres on tablet - reduced */
  .hero-spheres {
    opacity: 0.6;
  }

  .gold-sphere {
    transform: scale(0.7);
  }

  .hero-spheres .gold-sphere:nth-child(n+6) {
    display: none;
  }

  .hero-star {
    width: 45px;
    height: 45px;
    top: 10%;
    right: 10%;
    opacity: 0.7;
  }

  .hero-particles {
    opacity: 0.6;
  }

  /* Tablet Contact Page */
  .hero--contact {
    min-height: 100vh;
    padding: 120px var(--space-lg) 60px;
  }

  .hero-contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    text-align: left;
  }

  .hero-contact-text {
    text-align: left;
  }

  .hero-contact-text .hero__title,
  .hero-contact-text .hero__subtitle {
    text-align: left;
  }

  .hero-contact-info {
    align-items: flex-start;
  }

  .contact-info-item {
    justify-content: flex-start;
  }

  .hero-contact-form {
    padding: var(--space-xl);
  }

  .hero-contact-form .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* ============================================
   DESKTOP (>= 768px) - Shared styles
   ============================================ */
@media (min-width: 768px) {
  .hero__title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
  }

  .hero-cta {
    flex-direction: row;
  }
}

/* ============================================
   DESKTOP (>= 1024px)
   ============================================ */
@media (min-width: 1024px) {
  /* Desktop Navigation - No burger menu */
  .mobile-menu-btn {
    display: none;
  }

  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    flex-direction: row;
    padding: 0;
    border: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    right: auto;
  }

  .nav-list {
    flex-direction: row;
    gap: var(--space-lg);
  }

  .nav-link {
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    display: inline-block;
    text-align: left;
    border-bottom: none;
  }

  /* Desktop Grid */
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bento-card {
    min-height: 180px;
    padding: 2rem;
    padding-bottom: 4.5rem;
  }

  .bento-large {
    min-height: 220px;
    padding-bottom: 5rem;
  }

  .bento-medium {
    min-height: 200px;
  }

  .card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }

  .card-icon svg {
    width: 28px;
    height: 28px;
  }

  .card-title {
    font-size: 1.35rem;
  }

  .card-arrow {
    width: 40px;
    height: 40px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .card-arrow svg {
    width: 18px;
    height: 18px;
  }

  /* Desktop Hero - Full spheres */
  .hero-spheres {
    opacity: 1;
  }

  .gold-sphere {
    transform: scale(1);
  }

  .hero-spheres .gold-sphere:nth-child(n+6) {
    display: block;
  }

  .hero-star {
    width: 60px;
    height: 60px;
    top: 12%;
    right: 18%;
    opacity: 0.8;
  }

  .hero-particles {
    opacity: 1;
  }

  /* Desktop Article Cards */
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .article-card {
    padding: 1.75rem;
    padding-bottom: 4.5rem;
    min-height: 220px;
  }

  .article-title {
    font-size: 1.25rem;
  }

  .article-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
  }

  .category-header {
    padding: 2rem 0;
    margin-bottom: 3rem;
  }

  .category-title {
    font-size: 2.5rem;
  }

  /* Desktop Hero Spheres - Full size */
  .gold-sphere {
    transform: scale(1);
  }

  .hero-star {
    width: 60px;
    height: 60px;
    top: 12%;
    right: 18%;
  }

}

/* Large Desktop (>= 1280px) */
@media (min-width: 1280px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  
.hero-particles {
    display: none;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .mobile-menu-btn,
  .main-nav,
  
body {
    background: white;
    color: black;
  }

  .container {
    max-width: 100%;
  }
}

/* ==========================================================================
   TOP 10 CASINOS SECTION
   ========================================================================== */
.top-casinos {
  padding: 80px 0;
  background: var(--bg-primary);
  text-align: center;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.badge-star {
  color: var(--gold-primary);
  font-size: 1rem;
}

.section-badge span:last-child {
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Section Titles */
.section-title-fancy {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.section-subtitle-fancy {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.section-description {
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 3rem;
}

/* Casinos List */
.casinos-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

/* ==========================================================================
   CASINO CARD - FIXED LAYOUT
   ========================================================================== */
.casino-card {
  display: grid;
  grid-template-columns: 60px 60px 180px 1fr auto auto;
  grid-template-areas: "rank logo info bonus features cta";
  align-items: center;
  gap: 1.5rem;

  padding: 1.25rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;

  transition: all 0.3s ease;
}

.casino-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(4px);
}

/* Featured Card (1st place) */
.casino-card.casino-featured {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

/* ==========================================================================
   CASINO CARD ELEMENTS
   ========================================================================== */

/* Rank/Position */
.casino-rank {
  grid-area: rank;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.rank-star {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.rank-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.casino-featured .rank-number {
  color: var(--gold-primary);
}

/* Casino Logo */
.casino-logo {
  grid-area: logo;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.logo-letter {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Casino Info */
.casino-info {
  grid-area: info;
  min-width: 150px;
}

.casino-name {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.casino-rating .stars {
  color: var(--gold-primary);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.casino-rating .score {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-primary);
}

/* ==========================================================================
   BONUS - SEPARATE COLUMN
   ========================================================================== */
.casino-bonus {
  grid-area: bonus;
  display: flex;
  justify-content: center;
}

.bonus-text {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--gold-primary);
  border-radius: 6px;

  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-primary);

  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   FEATURES - SEPARATE COLUMN
   ========================================================================== */
.casino-features {
  grid-area: features;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 180px;
}

.feature {
  font-family: var(--font-main);
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* ==========================================================================
   CTA BUTTON
   ========================================================================== */
.casino-cta {
  grid-area: cta;

  padding: 0.75rem 1.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  border-radius: 8px;

  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-decoration: none;

  white-space: nowrap;
  transition: all 0.3s ease;
}

.casino-cta:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

/* ==========================================================================
   DISCLAIMER
   ========================================================================== */
.casinos-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE - KEY FIX
   ========================================================================== */

/* Tablets */
@media (max-width: 1100px) {
  .casino-card {
    grid-template-columns: 50px 50px 1fr auto;
    grid-template-areas:
      "rank logo info cta"
      "rank logo bonus bonus"
      "rank logo features features";
    gap: 0.75rem 1rem;
    padding: 1rem;
  }

  .casino-bonus {
    justify-content: flex-start;
  }

  .bonus-text {
    max-width: 100%;
  }

  .casino-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    min-width: auto;
  }

  .section-title-fancy {
    font-size: 3rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .top-casinos {
    padding: 60px 0;
  }

  .casino-card {
    grid-template-columns: 40px 1fr auto;
    grid-template-areas:
      "rank info cta"
      "logo bonus bonus"
      "logo features features";
    gap: 0.5rem 0.75rem;
    padding: 1rem;
  }

  .casino-logo {
    width: 40px;
    height: 40px;
  }

  .logo-letter {
    font-size: 1.25rem;
  }

  .casino-name {
    font-size: 0.9rem;
  }

  .rank-number {
    font-size: 1.25rem;
  }

  .bonus-text {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .casino-cta {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .feature {
    font-size: 0.7rem;
  }

  .section-title-fancy {
    font-size: 2.5rem;
  }

  .section-subtitle-fancy {
    font-size: 1.25rem;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .casino-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "info"
      "bonus"
      "features"
      "cta";
    text-align: center;
    position: relative;
    padding-top: 2.5rem;
  }

  .casino-rank {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    flex-direction: row;
    gap: 0.25rem;
  }

  .casino-logo {
    display: none;
  }

  .casino-features {
    justify-content: center;
  }

  .casino-cta {
    width: 100%;
  }

  .section-title-fancy {
    font-size: 2rem;
  }

  .section-subtitle-fancy {
    font-size: 1rem;
  }
}

/* ==========================================================================
   CASINO CARD SCROLL ANIMATIONS
   ========================================================================== */
.casino-card.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
}

.casino-card.scroll-reveal.animate-in {
  animation: casinoCardFadeIn 0.5s ease forwards;
}

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

/* Staggered animation delays */
.casinos-list .casino-card:nth-child(1) { animation-delay: 0.05s; }
.casinos-list .casino-card:nth-child(2) { animation-delay: 0.1s; }
.casinos-list .casino-card:nth-child(3) { animation-delay: 0.15s; }
.casinos-list .casino-card:nth-child(4) { animation-delay: 0.2s; }
.casinos-list .casino-card:nth-child(5) { animation-delay: 0.25s; }
.casinos-list .casino-card:nth-child(6) { animation-delay: 0.3s; }
.casinos-list .casino-card:nth-child(7) { animation-delay: 0.35s; }
.casinos-list .casino-card:nth-child(8) { animation-delay: 0.4s; }
.casinos-list .casino-card:nth-child(9) { animation-delay: 0.45s; }
.casinos-list .casino-card:nth-child(10) { animation-delay: 0.5s; }

/* Article image responsiveness */
.article-content img, .art-content img, .art-img img { max-width: 100%; height: auto; }

/* Scrollable tables on mobile */
.table-wrapper, .article-content table { overflow-x: auto; -webkit-overflow-scrolling: touch; }


/* === Audit Fixes === */
.article-content table, .art-content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Mobile overflow prevention */
.site-main { overflow-x: hidden; max-width: 100%; }
.art-layout, .art-content, .container, .top-casinos, .categories, .seo-section, .tags-section {
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 768px) {
  .art-layout { padding: 1rem; max-width: 100vw; box-sizing: border-box; }
  .art-content { max-width: 100%; }
  .art-pullquote { padding: 1rem 1.2rem; font-size: 1rem; }
  .art-stats { grid-template-columns: repeat(2, 1fr); }
  .casino-features { min-width: auto !important; }
  .feature { white-space: normal; }
  .bonus-text { white-space: normal; }
  .casino-cta { white-space: normal; }
}
