/* Shared hub base (casinos / bonuses / games). */
/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Design tokens: see ./css/tokens.css */

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  background-image: radial-gradient(ellipse 80% 50% at 50% -20%, var(--color-primary-a08), transparent);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
}

h1 { font-size: var(--text-5xl); font-weight: 800; }
h2 { font-size: var(--text-4xl); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
p {
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* === UTILITIES === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-3xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  position: relative;
}

.section-title h2 {
  margin-bottom: var(--spacing-md);
}

.section-title p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-text-faint);
  font-size: var(--text-md);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 21, 16, 0.72);
  backdrop-filter: blur(30px) saturate(1.6);
  -webkit-backdrop-filter: blur(30px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(5, 21, 16, 0.97);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.02);
  border-bottom-color: rgba(255,255,255,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  gap: var(--spacing-sm);
}

.logo {
  font-family: var(--font-logo);
  font-size: 1.2rem;
  font-weight: 800;
  font-style: normal;
  font-synthesis: none;
  letter-spacing: -0.04em;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  min-height: auto;
  border-radius: 0;
  overflow: visible;
  transition: opacity var(--transition-fast);
}

.logo:hover {
  opacity: 0.88;
  filter: none;
}

.logo span {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: currentColor;
}

.logo span.logo-text {
  display: inline-block;
  font-family: var(--font-logo);
  font-weight: 800;
  font-style: normal;
  font-synthesis: none;
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-gold-light);
  -webkit-text-fill-color: var(--color-gold-light);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  padding: 0 0.12em 0 0;
  margin-left: -0.04em;
  border-radius: 0;
}

.logo span.logo-text::after {
  content: '\2009';
}

.logo-icon {
  display: inline;
  padding: 0;
  background: none;
  border-radius: 0;
  font-family: var(--font-logo);
  font-size: 1.2rem;
  font-weight: 800;
  font-style: normal;
  font-synthesis: none;
  line-height: 1;
  color: #fff;
  box-shadow: none;
  letter-spacing: -0.04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  padding: 4px;
  flex-shrink: 1;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-menu a {
  color: var(--color-text-faint);
  font-weight: 500;
  font-size: var(--text-sm);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  position: relative;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-menu a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

.nav-menu a.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary-a25), rgba(38,184,110,0.15));
  box-shadow: 0 1px 8px var(--color-primary-a20), inset 0 0 0 1px var(--color-primary-a25);
  font-weight: 600;
  border: none;
}

/* === HEADER BONUS BUTTON === */
.header-bonus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--header-control-h, 40px);
  height: var(--header-control-h, 40px);
  padding: 0 16px;
  background: var(--gradient-gold);
  color: var(--color-gold-ink);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--radius-btn, 10px);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid var(--color-gold-a35);
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  letter-spacing: 0.02em;
  text-transform: none;
  text-shadow: none;
}

.header-bonus-btn::before {
  /* Shine animation: see css/components.css */
}

.header-bonus-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 6px 24px rgba(224, 184, 58, 0.4);
  color: var(--color-gold-ink);
}

.btn-text-short {
  display: none;
}

@keyframes btnShine {
  0% { left: -100%; }
  40% { left: 120%; }
  100% { left: 120%; }
}

@keyframes bonusPulse {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(255,255,255,0.05);
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO === */
.hero {
  padding: calc(64px + var(--spacing-4xl)) 0 var(--spacing-4xl);
  background: linear-gradient(165deg, #051510 0%, #0a1f16 40%, #0e2a1c 100%);
  position: relative;
  overflow-x: clip;
}

.hero::before {
  content: '';
  position: absolute;
  top: -250px;
  right: -150px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--color-primary-a10) 0%, var(--color-primary-a03) 40%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 25s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 30s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  margin-bottom: var(--spacing-lg);
  font-size: 3.2rem;
  line-height: 1.1;
  letter-spacing: -0.03em; padding-right: 0.05em;
  font-weight: 800;
}

.hero-text h1 span {
  display: inline;
}

.hero-text h1 span.gold-text,
.page-hero h1 span.gold-text,
h1 .gold-text,
h2 .gold-text,
h3 .gold-text,
.hero-text h1 .gold-text,
.page-hero h1 .gold-text {
  display: inline-block;
  color: var(--color-gold-light);
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--color-gold-light);
  padding: 0 0.06em;
  filter: none;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: var(--spacing-xl);
  max-width: 480px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--spacing-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: background 0.25s ease, transform 0.2s ease;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge:hover { /* no decorative hover */ }

.badge-icon {
  font-size: var(--text-sm);
  filter: saturate(1.3);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: linear-gradient(160deg, rgba(14, 42, 28, 0.85), rgba(8, 28, 20, 0.95));
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 1px 0 rgba(255,255,255,0.06) inset;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.35s ease;
}

.hero-card:hover { /* no decorative hover */ }

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-success), var(--color-primary), transparent);
  background-size: 200% 100%;
  animation: gradientShift 4s ease-in-out infinite;
}

.hero-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(38,184,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-card-logo {
  padding: 12px 20px;
  background: var(--gradient-btn-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  font-size: var(--text-3xl);
  color: var(--color-gold-ink);
  box-shadow: var(--shadow-gold);
}

.hero-card-info h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
}

.hero-card-info .rating {
  color: rgba(255,224,122,0.9);
  font-size: var(--text-sm);
  margin-top: 4px;
}

.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.stat-item {
  text-align: center;
  padding: 18px 12px;
  background: linear-gradient(160deg, rgba(10, 31, 22, 0.8), rgba(5, 21, 16, 0.9));
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.25s cubic-bezier(0.2,0,0,1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.stat-item:hover { /* no decorative hover */ }

.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary-soft), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  letter-spacing: -0.02em; padding-right: 0.1em;
}

.stat-label {
  font-size: var(--text-2xs);
  color: var(--color-text-faint);
  margin-top: 4px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gradient-btn-primary);
  color: var(--color-gold-ink);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240, 196, 58, 0.45);
  color: var(--color-gold-ink);
  background: var(--gradient-btn-primary-hover);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(240, 196, 58, 0.28);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(240, 196, 58, 0.35);
  color: var(--color-gold-light);
}

.btn-secondary:hover {
  border-color: rgba(240, 196, 58, 0.55);
  color: var(--color-gold-light);
  background: rgba(240, 196, 58, 0.08);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--color-success), var(--color-success-dark));
  color: #fff;
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(16,185,129,0.3);
  color: #fff;
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--text-sm);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

/* === CARDS === */
.card {
  background: linear-gradient(160deg, rgba(16, 42, 32, 0.75) 0%, rgba(9, 13, 26, 0.92) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-xl);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(38,184,110,0.5), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(38,184,110,0.07) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.card:hover { /* no decorative hover */ }
.card:hover::before { /* no decorative hover */ }
.card:hover::after { /* no decorative hover */ }

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, rgba(38,184,110,0.18) 0%, var(--color-primary-a06) 100%);
  border: 1px solid rgba(38,184,110,0.22);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  margin-bottom: var(--spacing-lg);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, background 0.35s ease;
  box-shadow: 0 4px 16px var(--color-primary-a10);
  flex-shrink: 0;
}
.card:hover .card-icon { /* no decorative hover */ }

.card h3 { margin-bottom: var(--spacing-sm); font-size: 1.12rem; font-weight: 700; letter-spacing: -0.015em; padding-right: 0.05em; color: var(--color-text-primary); transition: color 0.25s ease; }
.card:hover h3 { /* no decorative hover */ }
.card p { font-size: var(--text-sm); line-height: 1.75; color: var(--color-text-faint); margin-bottom: var(--spacing-md); flex: 1; transition: color 0.25s ease; }
.card:hover p { /* no decorative hover */ }
.card a { color: rgba(255, 224, 122, 0.9); font-size: var(--text-sm); font-weight: 500; transition: color 0.2s ease; }
.card a:hover { color: #fff; }

/* === FEATURE GRID === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

/* === REVIEW PROCESS GRID === */
.feature-grid--process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  counter-reset: process-step;
}

.feature-grid--process .process-card {
  counter-increment: process-step;
  padding: 1.45rem 1.35rem 1.35rem;
  background:
    linear-gradient(155deg, rgba(19, 48, 35, 0.88) 0%, rgba(8, 12, 22, 0.96) 72%),
    radial-gradient(120% 80% at 100% 0%, rgba(38, 184, 110, 0.1), transparent 55%);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: none;
}

.feature-grid--process .process-card::before {
  width: 2px;
  height: auto;
  top: 18%;
  bottom: 18%;
  left: 0;
  right: auto;
  background: linear-gradient(180deg, transparent, rgba(78, 224, 148, 0.85), transparent);
  opacity: 0.35;
}

.feature-grid--process .process-card::after {
  content: counter(process-step, decimal-leading-zero);
  bottom: auto;
  right: 1rem;
  top: 0.95rem;
  width: auto;
  height: auto;
  background: none;
  font-family: var(--font-display, "Segoe UI", sans-serif);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(78, 224, 148, 0.1);
  opacity: 1;
  pointer-events: none;
  transition: color 0.35s ease, transform 0.35s ease;
}

.feature-grid--process .process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(78, 224, 148, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.35);
}

.feature-grid--process .process-card:hover::before { opacity: 1; }
.feature-grid--process .process-card:hover::after {
  color: rgba(78, 224, 148, 0.18);
  transform: translateY(-2px);
}

.feature-grid--process .process-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.feature-grid--process .card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  border-radius: 12px;
  font-size: 1.35rem;
  background: rgba(9, 14, 28, 0.85);
  border: 1px solid rgba(78, 224, 148, 0.22);
  box-shadow: none;
}

.feature-grid--process .process-card:hover .card-icon {
  transform: translateY(-2px) scale(1.04);
  background: rgba(10, 31, 22, 0.95);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.feature-grid--process .process-card-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 224, 122, 0.62);
  margin-bottom: 0.2rem;
}

.feature-grid--process .process-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  padding-right: 2.5rem;
}

.feature-grid--process .process-card p {
  margin: 0;
  position: relative;
  z-index: 1;
  color: rgba(203, 213, 225, 0.78);
  line-height: 1.7;
}

.feature-grid--process .process-card:hover p {
  color: rgba(226, 232, 240, 0.9);
}

@media (max-width: 1024px) {
  .feature-grid--process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .feature-grid--process {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .feature-grid--process .process-card {
    padding: 1.25rem 1.15rem;
  }
}

/* === CASINO TYPES GRID === */
.feature-grid--types {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.feature-grid--types .type-card {
  padding: 1.4rem 1.3rem 1.3rem;
  background:
    linear-gradient(165deg, rgba(18, 46, 34, 0.9) 0%, rgba(8, 12, 22, 0.97) 75%),
    radial-gradient(110% 70% at 0% 100%, rgba(38, 184, 110, 0.08), transparent 55%);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: none;
}

.feature-grid--types .type-card::before {
  height: 2px;
  width: auto;
  top: 0;
  left: 1.1rem;
  right: 1.1rem;
  bottom: auto;
  background: linear-gradient(90deg, transparent, rgba(78, 224, 148, 0.75), transparent);
  opacity: 0.55;
}

.feature-grid--types .type-card::after {
  content: '';
  bottom: -50px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(38, 184, 110, 0.09) 0%, transparent 70%);
  opacity: 0.6;
}

.feature-grid--types .type-card:hover {
  transform: translateY(-6px);
  border-color: rgba(78, 224, 148, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.35);
}

.feature-grid--types .type-card:hover::before { opacity: 1; }
.feature-grid--types .type-card:hover::after { opacity: 1; }

.feature-grid--types .type-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.feature-grid--types .card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  border-radius: 12px;
  font-size: 1.35rem;
  background: rgba(9, 14, 28, 0.85);
  border: 1px solid rgba(78, 224, 148, 0.22);
  box-shadow: none;
}

.feature-grid--types .type-card:hover .card-icon {
  transform: translateY(-2px) scale(1.04);
  background: rgba(10, 31, 22, 0.95);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.feature-grid--types .type-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 224, 122, 0.75);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(38, 184, 110, 0.1);
  border: 1px solid rgba(78, 224, 148, 0.2);
  white-space: nowrap;
}

.feature-grid--types .type-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.feature-grid--types .type-card p {
  margin: 0;
  position: relative;
  z-index: 1;
  color: rgba(203, 213, 225, 0.78);
  line-height: 1.7;
}

.feature-grid--types .type-card:hover h3 { color: #dbeafe; }
.feature-grid--types .type-card:hover p { color: rgba(226, 232, 240, 0.9); }

@media (max-width: 1024px) {
  .feature-grid--types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .feature-grid--types {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .feature-grid--types .type-card {
    padding: 1.25rem 1.15rem;
  }
}

/* === RATING === */
.rating-display {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.stars {
  color: var(--color-warning);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-number {
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-primary-light);
}

/* === PROS & CONS === */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.pros-list, .cons-list {
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.pros-list {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.cons-list {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.pros-list h3 {
  color: var(--color-success);
  margin-bottom: var(--spacing-md);
}

.cons-list h3 {
  color: var(--color-error);
  margin-bottom: var(--spacing-md);
}

.pros-list li, .cons-list li {
  padding: var(--spacing-sm) 0;
  padding-left: var(--spacing-lg);
  position: relative;
  color: var(--color-text-secondary);
  font-size: var(--text-md);
}

.pros-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.cons-list li::before {
  content: '-';
  position: absolute;
  left: 4px;
  color: var(--color-error);
  font-weight: 700;
}

/* === CHECKLIST FLAGS (casinos) === */
.pros-cons--flags {
  gap: 1.15rem;
  align-items: stretch;
}

.pros-cons--flags .flags-panel {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 1.35rem 1.25rem;
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pros-cons--flags .flags-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  border-radius: 0 0 2px 2px;
  opacity: 0.85;
  pointer-events: none;
}

.pros-cons--flags .pros-list.flags-panel {
  background:
    radial-gradient(120% 70% at 0% 0%, rgba(16, 185, 129, 0.14), transparent 55%),
    linear-gradient(160deg, rgba(12, 28, 24, 0.92) 0%, rgba(8, 12, 22, 0.96) 100%);
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.pros-cons--flags .pros-list.flags-panel::before {
  background: linear-gradient(90deg, transparent, #34d399, transparent);
}

.pros-cons--flags .cons-list.flags-panel {
  background:
    radial-gradient(120% 70% at 100% 0%, rgba(239, 68, 68, 0.14), transparent 55%),
    linear-gradient(160deg, rgba(32, 14, 18, 0.92) 0%, rgba(8, 12, 22, 0.96) 100%);
  border: 1px solid rgba(248, 113, 113, 0.22);
}

.pros-cons--flags .cons-list.flags-panel::before {
  background: linear-gradient(90deg, transparent, #f87171, transparent);
}

.pros-cons--flags .flags-panel:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 36px rgba(0, 0, 0, 0.3);
}

.pros-cons--flags .pros-list.flags-panel:hover {
  border-color: rgba(52, 211, 153, 0.38);
}

.pros-cons--flags .cons-list.flags-panel:hover {
  border-color: rgba(248, 113, 113, 0.38);
}

.pros-cons--flags .flags-panel-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.pros-cons--flags .flags-panel-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

.pros-cons--flags .pros-list .flags-panel-badge {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.pros-cons--flags .cons-list .flags-panel-badge {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.pros-cons--flags .flags-panel-copy {
  flex: 1;
  min-width: 0;
}

.pros-cons--flags .flags-panel-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.pros-cons--flags .pros-list .flags-panel-label { color: rgba(110, 231, 183, 0.7); }
.pros-cons--flags .cons-list .flags-panel-label { color: rgba(252, 165, 165, 0.7); }

.pros-cons--flags .flags-panel h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pros-cons--flags .flags-panel-count {
  font-family: var(--font-display, "Segoe UI", sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.pros-cons--flags .pros-list .flags-panel-count {
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.pros-cons--flags .cons-list .flags-panel-count {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.22);
}

.pros-cons--flags .flags-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
  z-index: 1;
}

.pros-cons--flags .flags-panel li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.7rem 0.8rem;
  padding-left: 0.8rem;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.82);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.pros-cons--flags .flags-panel li::before {
  content: none;
}

.pros-cons--flags .flags-mark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 0.1rem;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
}

.pros-cons--flags .pros-list .flags-mark {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(52, 211, 153, 0.28);
}

.pros-cons--flags .cons-list .flags-mark {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(248, 113, 113, 0.28);
}

.pros-cons--flags .pros-list li:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(52, 211, 153, 0.18);
  color: #f8fafc;
}

.pros-cons--flags .cons-list li:hover {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(248, 113, 113, 0.18);
  color: #f8fafc;
}

@media (max-width: 640px) {
  .pros-cons--flags .flags-panel {
    padding: 1.2rem 1.1rem 1.1rem;
  }

  .pros-cons--flags .flags-panel li {
    padding: 0.65rem 0.7rem;
    font-size: 0.88rem;
  }
}

/* === TABLES === */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
}

.info-table th,
.info-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.info-table th,
.info-table thead th {
  background: linear-gradient(135deg, var(--color-primary-a15), var(--color-primary-a06));
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  white-space: nowrap;
  border-bottom: 1px solid var(--color-primary-a20);
}

.info-table td {
  background: rgba(5, 21, 16, 0.55);
  color: rgba(226, 232, 240, 0.88);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
  border-left: 2px solid transparent;
}

.info-table td:first-child {
  font-weight: 600;
  color: var(--color-text-primary);
}

.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:hover td,
.info-table tbody tr:hover td {
  background: rgba(38, 184, 110, 0.08);
  color: #ffffff;
}

.info-table tr:hover td:first-child,
.info-table tbody tr:hover td:first-child {
  border-left-color: rgba(78, 224, 148, 0.65);
  color: var(--color-primary-light);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(38, 184, 110, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(16, 185, 129, 0.05), transparent 50%),
    linear-gradient(170deg, rgba(8, 28, 20, 0.92) 0%, rgba(6, 9, 18, 0.97) 100%);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.table-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, #ffe07a, var(--color-primary), #34d399);
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}

.table-wrapper:hover { /* no decorative hover */ }

/* === CTA SECTION === */
.cta-section {
  border-radius: var(--radius-xl);
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #080e1e 0%, #0b1428 40%, #091222 70%, #060c1a 100%);
  border: 1px solid rgba(255,255,255,0.06);
  isolation: isolate;
}
.cta-section-inner {
  padding: var(--spacing-4xl) var(--spacing-3xl);
  position: relative;
  z-index: 2;
}

.section > .container > .cta-section {
  margin-top: var(--spacing-3xl);
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(38,184,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,184,110,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.cta-orb-left {
  position: absolute;
  left: -180px; top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(38,184,110,0.14) 0%, rgba(38,184,110,0.04) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: ctaOrbPulse 7s ease-in-out infinite alternate;
}
.cta-orb-right {
  position: absolute;
  right: -160px; top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, rgba(16,185,129,0.03) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: ctaOrbPulse 9s ease-in-out infinite alternate-reverse;
}
.cta-orb-top {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, var(--color-primary-a10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: ctaOrbPulse 5s ease-in-out infinite alternate;
}
@keyframes ctaOrbPulse {
  0% { opacity: 0.7; transform: translateY(-50%) scale(1); }
  100% { opacity: 1; transform: translateY(-50%) scale(1.12); }
}
.cta-glow-line {
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38,184,110,0.6) 30%, rgba(16,185,129,0.5) 70%, transparent);
  z-index: 2;
}
.cta-glow-line-bottom {
  position: absolute;
  bottom: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary-a20) 50%, transparent);
  z-index: 2;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary-a15), rgba(38,184,110,0.05));
  border: 1px solid var(--color-primary-a25);
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary-soft);
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px var(--color-primary-a10);
}
.cta-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 8px rgba(16,185,129,0.7);
  animation: ctaDotPulse 2s ease-in-out infinite;
}
@keyframes ctaDotPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}
.cta-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.03em; padding-right: 0.05em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: var(--spacing-lg);
  padding-bottom: 0.1em;
  position: relative;
  z-index: 2;
}
.cta-headline strong {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-soft) 50%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  padding: 0.12em 0.2em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.cta-subtext {
  margin: 0 auto var(--spacing-2xl);
  max-width: 500px;
  font-size: var(--text-lg);
  color: var(--color-text-faint);
  line-height: 1.75;
  position: relative;
  z-index: 2;
}
.cta-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-divider {
  color: rgba(255,255,255,0.2);
  font-size: var(--text-md);
}
.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}
.cta-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.cta-feature-chip-icon {
  color: var(--color-success-light);
  font-size: var(--text-2xs);
  font-weight: 700;
}

.cta-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: var(--gradient-btn-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-md);
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 20px var(--color-primary-a40), 0 0 0 1px var(--color-primary-a30), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.cta-btn-main::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
}

.cta-btn-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.cta-btn-main:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(38,184,110,0.55), 0 0 0 1px var(--color-primary-a40), inset 0 1px 0 rgba(255,255,255,0.25);
  filter: brightness(1.06);
  color: #fff;
}

.cta-btn-main:hover::after {
  transform: translateX(100%);
}

.cta-btn-main svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 22px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-text-faint);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
  white-space: nowrap;
}

.cta-btn-secondary:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  position: relative;
}

/* === FOOTER === */
.site-footer {
  background: #030509;
  border-top: none;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(38,184,110,0.35) 30%, rgba(16,185,129,0.2) 50%, rgba(38,184,110,0.35) 70%, transparent 95%);
}

.site-footer .container {
  padding-top: 72px;
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.footer-brand .logo {
  display: inline-flex;
  align-items: baseline;
  align-self: flex-start;
  width: fit-content;
  gap: 0;
  min-height: auto;
  border-radius: 0;
  overflow: visible;
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 320px;
  color: var(--color-text-faint);
  font-weight: 400;
}

.footer-stats {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: all 0.25s ease;
  flex: 1;
  position: relative;
}

.footer-stat:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--color-primary-a20);
  transform: translateY(-1px);
}

.footer-stat-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-stat strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.footer-stat span {
  font-size: var(--text-2xs);
  color: rgba(148,163,184,0.6);
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-links h4 {
  font-size: var(--text-2xs);
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: var(--color-text-faint);
  font-size: var(--text-sm);
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.85);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.01em;
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.footer-badge {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: var(--text-2xs);
  color: var(--color-text-faint);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.footer-badge:hover { /* no decorative hover */ }

/* === RESPONSIBLE GAMBLING BANNER === */
.rg-banner {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-xl);
  margin: var(--spacing-2xl) 0;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.rg-banner-icon {
  font-size: var(--text-3xl);
  flex-shrink: 0;
}

.rg-banner p {
  font-size: var(--text-sm);
}

.rg-banner a {
  font-weight: 600;
}

/* === PAGE HERO === */
.page-hero {
  padding: calc(68px + 1.25rem) 0 1.5rem;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  display: none;
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(38,184,110,0.12) 0%, rgba(38,184,110,0.04) 35%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 20s ease-in-out infinite;
}

.page-hero::after {
  display: none;
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(38,184,110,0.07) 0%, transparent 55%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 25s ease-in-out infinite reverse;
}

.page-hero h1 {
  margin-bottom: var(--spacing-md);
  position: relative;
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  line-height: 1.15;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  color: var(--color-text-secondary);
  position: relative;
  font-size: 0.92rem;
  line-height: 1.65;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--color-primary-a08);
  border: 1px solid var(--color-primary-a20);
  border-radius: var(--radius-full);
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary-light);
  margin-bottom: var(--spacing-lg);
  position: relative;
}
.page-hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 8px rgba(16,185,129,0.6);
  animation: eyebrowPulse 2s ease-in-out infinite;
}
@keyframes eyebrowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.page-hero-chips {
  border: none;
  outline: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--spacing-xl);
  position: relative;
}
.page-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.page-hero-chip:hover { /* no decorative hover */ }
.chip-icon { font-size: var(--text-lg); filter: saturate(1.2); }

/* === GAME HERO BADGE === */
.game-hero-badge {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  background: linear-gradient(165deg, rgba(8, 28, 20, 0.85) 0%, rgba(5, 21, 16, 0.95) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 32px;
  padding: 0;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(30px);
  box-shadow:
    0 30px 100px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 1px 0 rgba(255,255,255,0.06) inset;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease;
}
.game-hero-badge:hover { /* no decorative hover */ }
.game-hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38,184,110,0.7) 30%, rgba(16,185,129,0.6) 70%, transparent);
  opacity: 0.8;
}
.game-hero-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(38,184,110,0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 50%, rgba(16,185,129,0.04) 0%, transparent 45%);
  pointer-events: none;
}

.game-hero-score {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 22px 22px 22px 26px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  align-self: stretch;
}
.game-hero-score::before,
.game-hero-score::after {
  content: '';
  position: absolute;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(148, 163, 184, 0.28) 20%,
    rgba(148, 163, 184, 0.28) 80%,
    transparent 100%
  );
  pointer-events: none;
}
.game-hero-score::before {
  left: calc(26px + 118px + 18px);
}
.game-hero-score::after {
  right: 0;
}

.game-hero-ring {
  position: relative;
  width: 118px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.game-hero-ring::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,184,110,0.14) 0%, rgba(16,185,129,0.06) 45%, transparent 72%);
  animation: gameRingPulse 3s ease-in-out infinite;
}
@keyframes gameRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.06); opacity: 1; }
}
.game-hero-ring svg {
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 0 10px rgba(38,184,110,0.35)) drop-shadow(0 0 22px rgba(16,185,129,0.2));
  animation: gameRingGlow 4s ease-in-out infinite;
}
@keyframes gameRingGlow {
  0%, 100% { filter: drop-shadow(0 0 8px var(--color-primary-a30)) drop-shadow(0 0 18px rgba(16,185,129,0.15)); }
  50% { filter: drop-shadow(0 0 12px rgba(38,184,110,0.45)) drop-shadow(0 0 26px rgba(16,185,129,0.22)); }
}
