/* style.css — Lucky Bear Casino Design System */

/* ========== DESIGN TOKENS ========== */
:root {
  /* Colors */
  --bg-main: #0a0a14;
  --bg-surface: #12121e;
  --bg-card: #1a1a2e;
  --bg-card-hover: #222238;
  --bg-elevated: #252540;
  
  --gold: #d4a843;
  --gold-light: #f0c850;
  --gold-dark: #b8922e;
  --gold-gradient: linear-gradient(135deg, #d4a843, #f0c850);
  --gold-gradient-hover: linear-gradient(135deg, #f0c850, #ffe066);
  --gold-glow: 0 0 20px rgba(212, 168, 67, 0.3);
  --gold-border: rgba(212, 168, 67, 0.2);
  
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-dark: #7c3aed;
  --purple-glow: 0 0 20px rgba(139, 92, 246, 0.3);
  
  --green: #22c55e;
  --green-light: #4ade80;
  --red: #ef4444;
  
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b85;
  --text-gold: #d4a843;
  
  --border-color: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(212, 168, 67, 0.15);
  
  /* Typography */
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  --text-lg: clamp(1.05rem, 1rem + 0.25vw, 1.15rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --text-3xl: clamp(1.8rem, 1.4rem + 2vw, 2.5rem);
  --text-hero: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  
  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 20px rgba(212, 168, 67, 0.15);
  
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.3s var(--ease-out);
  --transition-slow: 0.5s var(--ease-out);
  
  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 64px;
}

/* ========== BASE BODY ========== */
body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
}

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

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

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  height: var(--header-height);
  transition: box-shadow var(--transition-normal);
}

.header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo svg {
  width: 32px;
  height: 32px;
}

.header__nav {
  display: none;
}

.header__nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 20, 0.98);
  backdrop-filter: blur(16px);
  padding: var(--space-6);
  overflow-y: auto;
  z-index: 99;
  animation: slideDown 0.3s var(--ease-out);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.header__nav a {
  display: block;
  padding: var(--space-3) 0;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
  border-bottom: 1px solid var(--border-color);
}

.header__nav a:hover,
.header__nav a.is-active {
  color: var(--gold);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--gold-gradient);
  color: #0a0a14;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header__cta:hover {
  background: var(--gold-gradient-hover);
  box-shadow: var(--gold-glow);
  transform: translateY(-1px);
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: 101;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all var(--transition-fast);
}

.header__burger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop nav */
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
  
  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }
  
  .header__nav a {
    display: inline-block;
    padding: var(--space-2) var(--space-3);
    border-bottom: none;
    font-size: var(--text-xs);
    border-radius: var(--radius-sm);
  }
  
  .header__nav a:hover {
    background: rgba(212, 168, 67, 0.08);
  }
  
  .header__nav a.is-active {
    background: rgba(212, 168, 67, 0.12);
    color: var(--gold);
  }
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
  padding: var(--space-4) 0;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

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

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

.breadcrumbs span {
  margin: 0 var(--space-2);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  padding: clamp(var(--space-16), 10vw, var(--space-24)) 0;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: var(--text-xs);
  color: var(--gold);
  margin-bottom: var(--space-6);
  font-family: var(--font-display);
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  line-height: 1.4;
}

.btn--gold {
  background: var(--gold-gradient);
  color: #0a0a14;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: var(--gold-gradient-hover);
  box-shadow: var(--gold-glow), var(--shadow-md);
  transform: translateY(-2px);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

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

.btn--outline:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: var(--gold);
}

.btn--purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
}

.btn--purple:hover {
  box-shadow: var(--purple-glow);
  transform: translateY(-2px);
}

/* ========== CARDS ========== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-normal);
}

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

.card--gold-border {
  border-color: var(--border-gold);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  color: var(--gold);
  font-size: 1.5rem;
}

.card__icon--purple {
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple);
}

.card__icon--green {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== SECTIONS ========== */
.section {
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
}

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

.section__header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}

.section__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: var(--space-3);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.section__subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== GRID ========== */
.grid {
  display: grid;
  gap: var(--space-5);
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

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

@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== TABLES ========== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.table {
  width: 100%;
  font-size: var(--text-sm);
}

.table thead {
  background: var(--bg-card);
}

.table th {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  border-bottom: 1px solid var(--border-gold);
}

.table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.table tbody tr:hover {
  background: rgba(212, 168, 67, 0.03);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

/* ========== STEPS ========== */
.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border-color);
}

.step:last-child {
  border-bottom: none;
}

.step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: #0a0a14;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  border-radius: 50%;
}

.step__content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.step__content p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ========== FAQ ACCORDION ========== */
.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--gold);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform var(--transition-fast);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding-bottom: var(--space-5);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: clamp(var(--space-12), 8vw, var(--space-20)) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.cta-section__text {
  color: var(--text-secondary);
  font-size: var(--text-base);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding: var(--space-12) 0 var(--space-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.footer__brand svg {
  width: 28px;
  height: 28px;
}

.footer__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.footer__bottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer__warning {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: var(--red);
  font-weight: 600;
}

.footer__attribution {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer__attribution a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-decoration-color: rgba(160, 160, 184, 0.3);
  text-underline-offset: 2px;
}

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

/* ========== RATING ========== */
.rating {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--gold);
  font-size: 1.2rem;
}

.rating__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--gold);
}

/* ========== PROS/CONS ========== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.pros, .cons {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
}

.pros {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.cons {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.pros h3, .cons h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.pros h3 { color: var(--green); }
.cons h3 { color: var(--red); }

.pros li, .cons li {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.pros li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.cons li::before {
  content: '✗';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ========== TOC ========== */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-8);
}

.toc__title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toc ol {
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.toc li {
  counter-increment: toc;
}

.toc a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  padding: var(--space-1) 0;
}

.toc a::before {
  content: counter(toc) ".";
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xs);
  min-width: 20px;
}

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

/* ========== CONTENT STYLES ========== */
.content {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.content h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-10);
  margin-bottom: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-color);
}

.content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.content ul, .content ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-5);
}

.content li {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-2);
  position: relative;
}

.content ul li {
  list-style: none;
  padding-left: var(--space-4);
}

.content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.content ol {
  counter-reset: list;
}

.content ol li {
  counter-increment: list;
  list-style: none;
  padding-left: var(--space-6);
}

.content ol li::before {
  content: counter(list) ".";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
}

.content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(212, 168, 67, 0.3);
  text-underline-offset: 2px;
  transition: all var(--transition-fast);
}

.content a:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold);
}

.content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ========== INFO BOX ========== */
.info-box {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-5);
  margin: var(--space-6) 0;
}

.info-box--purple {
  border-left-color: var(--purple);
}

.info-box--green {
  border-left-color: var(--green);
}

.info-box__title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.info-box--purple .info-box__title {
  color: var(--purple);
}

.info-box--green .info-box__title {
  color: var(--green);
}

.info-box p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== STATS ROW ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: var(--space-5);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.stat__value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-1);
}

.stat__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ========== BONUS CARD ========== */
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.bonus-card--featured {
  border-color: var(--gold);
}

.bonus-card--featured::before {
  height: 4px;
}

.bonus-card__badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
}

.bonus-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.bonus-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

/* ========== GAME CARD ========== */
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.game-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.game-card__visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border-bottom: 1px solid var(--border-color);
}

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

.game-card__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.game-card__rtp {
  font-size: var(--text-xs);
  color: var(--green);
  font-weight: 600;
}

.game-card__provider {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== COMPARISON TABLE HIGHLIGHT ========== */
.table .highlight {
  color: var(--gold);
  font-weight: 600;
}

.table .check {
  color: var(--green);
  font-weight: 700;
}

.table .cross {
  color: var(--red);
  font-weight: 700;
}

/* ========== PROMO CODE BOX ========== */
.promo-code {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--bg-card);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

.promo-code__copy {
  padding: var(--space-1) var(--space-3);
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
  font-size: var(--text-xs);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: normal;
}

.promo-code__copy:hover {
  background: rgba(212, 168, 67, 0.25);
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ========== RATING BARS (Reviews Page) ========== */
.rating-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.rating-bar__label {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  min-width: 36px;
  font-weight: 600;
}

.rating-bar__track {
  flex: 1;
  height: 8px;
  background: var(--bg-elevated);
  border-radius: 100px;
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 100px;
  transition: width 0.6s var(--ease-out);
}

.rating-bar__fill--neutral {
  background: linear-gradient(135deg, #6b6b85, #a0a0b8);
}

.rating-bar__fill--low {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.rating-bar__pct {
  font-size: var(--text-xs);
  color: var(--text-muted);
  min-width: 32px;
  text-align: right;
  font-weight: 600;
}

/* ========== REVIEW CARDS ========== */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: all var(--transition-normal);
}

.review-card:hover {
  border-color: var(--border-gold);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.review-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-primary);
}

.review-card__date {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.review-card__stars {
  margin-left: auto;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.review-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== BLOG CARDS ========== */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.blog-card__date {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.blog-card__tag {
  display: inline-block;
  padding: var(--space-1) var(--space-2);
  background: rgba(139, 92, 246, 0.12);
  color: var(--purple-light);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  flex: 1;
}

.blog-card__excerpt a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(212, 168, 67, 0.3);
  text-underline-offset: 2px;
}

.blog-card__link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition-fast);
}

.blog-card__link:hover {
  color: var(--gold-light);
}

/* ========== FAQ CATEGORY ========== */
.faq-category {
  margin-bottom: var(--space-4);
}

/* ========== PRINT ========== */
@media print {
  .header, .footer, .btn {
    display: none;
  }
  body {
    background: #fff;
    color: #000;
  }
}

/* ========== PROMO IMAGES ========== */
.promo-image {
  width: 100%;
  max-width: 700px;
  margin: var(--space-6) auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 168, 67, 0.2);
  display: block;
}
.promo-image-full {
  width: 100%;
  margin: var(--space-8) 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 168, 67, 0.2);
}
.promo-image-caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: var(--space-2);
  margin-bottom: var(--space-6);
}
.promo-image-small {
  width: 100%;
  max-width: 400px;
  margin: var(--space-4) auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 168, 67, 0.2);
  display: block;
}
