/* ============================================================
   TOWER RUSH - FOREST / NATURE / ORGANIC THEME
   Deep forest aesthetic with emerald glow & golden amber accents
   ============================================================ */

/* ── Self-Hosted Fonts ── */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Variables ── */
:root {
  --bg-primary: #0d1f0d;
  --bg-secondary: #0a1a0a;
  --bg-card: rgba(15, 40, 15, 0.6);
  --bg-card-hover: rgba(20, 55, 20, 0.75);
  --primary: #50c878;
  --primary-dim: rgba(80, 200, 120, 0.15);
  --secondary: #2d8a4e;
  --accent: #d4a017;
  --accent-dim: rgba(212, 160, 23, 0.15);
  --text: #e8f5e8;
  --text-muted: #a8c8a8;
  --text-dark: #6b8f6b;
  --border: rgba(80, 200, 120, 0.25);
  --border-strong: rgba(80, 200, 120, 0.45);
  --glow-green: 0 0 20px rgba(80, 200, 120, 0.3);
  --glow-green-strong: 0 0 35px rgba(80, 200, 120, 0.5);
  --glow-amber: 0 0 20px rgba(212, 160, 23, 0.35);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.5);
  --radius-organic-sm: 12px 20px 12px 20px;
  --radius-organic-md: 20px 30px 20px 30px;
  --radius-organic-lg: 30px 45px 30px 45px;
  --radius-leaf: 4px 24px 4px 24px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Orbitron', 'Inter', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s ease;
  --container-max: 1200px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(45, 138, 78, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(80, 200, 120, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(15, 40, 15, 0.3) 0%, transparent 70%);
}

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

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

a:hover {
  color: var(--accent);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Leaf Overlay (pseudo-element mixin) ── */
.leaf-overlay {
  position: relative;
}

.leaf-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 2px 6px at 15% 20%, rgba(80, 200, 120, 0.06) 0%, transparent 100%),
    radial-gradient(ellipse 3px 8px at 45% 60%, rgba(45, 138, 78, 0.05) 0%, transparent 100%),
    radial-gradient(ellipse 2px 5px at 75% 35%, rgba(80, 200, 120, 0.04) 0%, transparent 100%),
    radial-gradient(ellipse 4px 7px at 90% 80%, rgba(45, 138, 78, 0.06) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.header-top-bar {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(13, 31, 13, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.header-top-bar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 0 var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--glow-green);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.05);
  box-shadow: var(--glow-green-strong);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}

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

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(80, 200, 120, 0.15);
  border-radius: var(--radius-leaf);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.lang-btn:hover {
  color: var(--primary);
  border-color: var(--border-strong);
  background: var(--primary-dim);
}

.lang-btn.active {
  color: var(--bg-secondary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: var(--primary);
  font-weight: 600;
  box-shadow: var(--glow-green);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg-secondary);
  background: linear-gradient(135deg, var(--accent), #b8900f);
  border: none;
  border-radius: var(--radius-leaf);
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-base);
  box-shadow: var(--glow-amber);
  flex-shrink: 0;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.5);
  color: var(--bg-secondary);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 80% at 30% 20%, rgba(45, 138, 78, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 70% 70%, rgba(80, 200, 120, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Organic blob divider at bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--bg-primary);
  clip-path: ellipse(55% 70% at 50% 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-content h1 .highlight {
  color: var(--primary);
  text-shadow: 0 0 30px rgba(80, 200, 120, 0.4);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

.hero-game {
  position: relative;
  z-index: 3;
  border-radius: var(--radius-organic-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--glow-green), var(--shadow-elevated);
  background: var(--bg-card);
}

.hero-game iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-leaf);
}

/* ============================================================
   CTA BUTTONS
   ============================================================ */
.cta-button,
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.cta-primary {
  color: var(--bg-secondary);
  background: linear-gradient(135deg, var(--accent), #c49510, var(--accent));
  background-size: 200% 200%;
  border-radius: var(--radius-leaf);
  box-shadow: var(--glow-amber), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(212, 160, 23, 0.5), 0 8px 24px rgba(0, 0, 0, 0.4);
  color: var(--bg-secondary);
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-button {
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-leaf);
}

.cta-button:hover {
  background: var(--primary-dim);
  border-color: var(--primary);
  box-shadow: var(--glow-green);
  color: var(--primary);
  transform: translateY(-2px);
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   SECTIONS - General
   ============================================================ */
section {
  position: relative;
  padding: 80px 0;
}

section:nth-child(even) {
  background:
    radial-gradient(ellipse 70% 40% at 80% 20%, rgba(45, 138, 78, 0.06) 0%, transparent 60%),
    var(--bg-secondary);
}

/* Organic curved section dividers */
.section-divider-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
}

.section-divider-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: var(--bg-primary);
  border-radius: 0 0 50% 50%;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text);
  position: relative;
}

.section-title .highlight {
  color: var(--primary);
  text-shadow: 0 0 25px rgba(80, 200, 120, 0.35);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-intro,
.section-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================================
   CARDS - Forest / Nature Cards
   ============================================================ */
.forest-card,
.nature-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-organic-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

/* Moss/vine decorative gradient on top edge */
.forest-card::before,
.nature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent), var(--primary), var(--secondary));
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.forest-card:hover,
.nature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  box-shadow: var(--glow-green), var(--shadow-elevated);
  transform: translateY(-4px);
}

.forest-card:hover::before,
.nature-card:hover::before {
  opacity: 1;
}

/* Leaf corner decoration */
.forest-card::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(80, 200, 120, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform var(--transition-slow);
}

.forest-card:hover::after {
  transform: scale(1.5);
}

/* Card icon container */
.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-leaf);
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

.forest-card:hover .card-icon,
.nature-card:hover .card-icon {
  box-shadow: var(--glow-green);
  border-color: var(--primary);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Feature Cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-organic-md);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--glow-green), var(--shadow-elevated);
  background: var(--bg-card-hover);
}

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

.feature-card .card-icon {
  margin: 0 auto 20px;
}

/* ── Character Cards ── */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.char-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-organic-lg);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.char-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(80, 200, 120, 0.03), transparent, rgba(45, 138, 78, 0.03), transparent);
  animation: sway 8s linear infinite;
  z-index: 0;
}

.char-card > * {
  position: relative;
  z-index: 1;
}

.char-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--border-strong);
  box-shadow: var(--glow-green), var(--shadow-elevated);
}

.char-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--border);
  margin: 0 auto 16px;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.char-card:hover img {
  border-color: var(--primary);
  box-shadow: var(--glow-green);
}

/* ── Bonus Cards ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.bonus-card {
  background: linear-gradient(145deg, var(--bg-card), rgba(20, 50, 20, 0.5));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-organic-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.bonus-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: var(--glow-amber), var(--shadow-elevated);
}

.bonus-card .bonus-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}

/* ── Step Cards ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step-counter;
}

.step-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-organic-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
  counter-increment: step-counter;
}

.step-card::before {
  content: counter(step-counter);
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(80, 200, 120, 0.08);
  line-height: 1;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--glow-green), var(--shadow-elevated);
}

/* ── Error Cards ── */
.error-card {
  background: rgba(40, 15, 15, 0.5);
  border: 1px solid rgba(200, 80, 80, 0.3);
  border-radius: var(--radius-organic-md);
  padding: 24px;
  transition: all var(--transition-base);
}

.error-card:hover {
  border-color: rgba(200, 80, 80, 0.5);
  box-shadow: 0 0 20px rgba(200, 80, 80, 0.15);
}

/* ============================================================
   TABLES
   ============================================================ */
.info-table,
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}

.info-table th,
.comparison-table th {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(80, 200, 120, 0.08);
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.info-table td,
.comparison-table td {
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(80, 200, 120, 0.08);
  transition: background var(--transition-fast);
}

.info-table tr:last-child td,
.comparison-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:hover td,
.comparison-table tr:hover td {
  background: rgba(80, 200, 120, 0.04);
}

.info-table td:first-child {
  font-weight: 500;
  color: var(--text);
}

/* ============================================================
   TESTIMONIALS / REVIEWS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.review-card,
.testimonial-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-organic-md);
  padding: 28px;
  position: relative;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.review-card::before,
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(80, 200, 120, 0.12);
  font-family: Georgia, serif;
}

.review-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--glow-green), var(--shadow-elevated);
}

.review-card .review-text,
.testimonial-card .testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card .review-author,
.testimonial-card .testimonial-author {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.review-card .review-rating,
.testimonial-card .testimonial-rating {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-organic-sm);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--glow-green);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: grow 0.3s ease-out;
}

/* ============================================================
   IMAGES
   ============================================================ */
.content-image,
.section-image {
  border-radius: var(--radius-organic-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-base);
}

.content-image:hover,
.section-image:hover {
  border-color: var(--border-strong);
  box-shadow: var(--glow-green), var(--shadow-elevated);
  transform: scale(1.01);
}

.content-image img,
.section-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.content-image:hover img,
.section-image:hover img {
  transform: scale(1.03);
}

/* Image with caption */
.image-with-caption {
  text-align: center;
}

.image-with-caption figcaption {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-top: 12px;
  font-style: italic;
}

/* ============================================================
   ALERT BOX / VERDICT / RATING
   ============================================================ */
.alert-box {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(212, 160, 23, 0.03));
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-left: 4px solid var(--accent);
  border-radius: 4px 16px 16px 4px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.alert-box strong {
  color: var(--accent);
}

.verdict-card {
  background: linear-gradient(145deg, var(--bg-card), rgba(20, 50, 20, 0.7));
  border: 2px solid var(--primary);
  border-radius: var(--radius-organic-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-green), var(--shadow-elevated);
}

.verdict-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(80, 200, 120, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 160, 23, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.verdict-card > * {
  position: relative;
  z-index: 1;
}

.verdict-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: var(--radius-leaf);
  box-shadow: var(--glow-amber);
}

.rating-badge .stars {
  letter-spacing: 3px;
}

/* ============================================================
   LEAF PARTICLES (for JS)
   ============================================================ */
.leaf-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  font-size: 1.2rem;
  animation: leaf-fall linear forwards;
  will-change: transform, opacity;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(45, 138, 78, 0.08) 0%, transparent 60%),
    var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  opacity: 0.5;
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-content p {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-content a {
  color: var(--primary);
  transition: color var(--transition-fast);
}

.footer-content a:hover {
  color: var(--accent);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--primary);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

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

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

.responsible-gaming {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(80, 200, 120, 0.1);
}

.responsible-gaming p {
  font-size: 0.78rem;
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.responsible-gaming .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #c85050;
  color: #c85050;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes leaf-fall {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(0deg) translateX(0);
  }
  10% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.6;
    transform: translateY(45vh) rotate(180deg) translateX(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(360deg) translateX(-20px);
  }
}

@keyframes forest-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(80, 200, 120, 0.2), 0 0 30px rgba(80, 200, 120, 0.1);
  }
  50% {
    box-shadow: 0 0 25px rgba(80, 200, 120, 0.4), 0 0 50px rgba(80, 200, 120, 0.2);
  }
}

@keyframes grow {
  0% {
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

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

@keyframes pulse-green {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Utility classes for animations */
.animate-glow {
  animation: forest-glow 3s ease-in-out infinite;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-sway {
  animation: sway 8s linear infinite;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 36px; }

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}

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

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) var(--bg-secondary);
}

/* ============================================================
   RESPONSIVE - Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 60px 0 50px;
  }

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

  section {
    padding: 60px 0;
  }
}

/* ============================================================
   RESPONSIVE - Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --container-max: 100%;
  }

  .container {
    padding: 0 16px;
  }

  .header-content {
    flex-wrap: wrap;
    padding: 0 16px;
    gap: 10px;
  }

  .header-cta {
    padding: 6px 14px;
    font-size: 0.72rem;
  }

  .lang-btn {
    padding: 4px 8px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 30px;
    text-align: center;
  }

  .hero::after {
    height: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero-badges {
    justify-content: center;
  }

  .cta-group {
    justify-content: center;
  }

  .cta-primary,
  .cta-button {
    padding: 12px 24px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  section {
    padding: 48px 0;
  }

  .section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .section-intro,
  .section-text {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .features-grid,
  .bonus-grid,
  .testimonials-grid,
  .steps-grid,
  .char-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .forest-card,
  .nature-card,
  .feature-card,
  .char-card,
  .bonus-card,
  .step-card,
  .review-card,
  .testimonial-card {
    padding: 24px 20px;
  }

  .verdict-card {
    padding: 28px 20px;
  }

  .info-table,
  .comparison-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .info-table th,
  .comparison-table th,
  .info-table td,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 20px 16px;
    font-size: 0.88rem;
  }

  .footer {
    padding: 40px 0 24px;
  }

  .footer-links {
    gap: 16px;
  }
}

/* ============================================================
   RESPONSIVE - Small Mobile (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .header-content {
    padding: 0 12px;
  }

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

  .logo-icon {
    width: 34px;
    height: 34px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .section-title::after {
    width: 50px;
  }

  .forest-card,
  .nature-card,
  .feature-card {
    padding: 20px 16px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .alert-box {
    padding: 16px;
  }

  .rating-badge {
    font-size: 1.1rem;
    padding: 8px 18px;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  body {
    background: white;
    color: #1a1a1a;
  }

  .header-top-bar,
  .leaf-particle,
  .hero-game,
  .cta-primary,
  .cta-button,
  .header-cta,
  .lang-selector {
    display: none !important;
  }

  .forest-card,
  .nature-card,
  .feature-card,
  .review-card,
  .testimonial-card {
    border: 1px solid #ccc;
    box-shadow: none;
    background: white;
    page-break-inside: avoid;
  }

  a {
    color: #1a1a1a;
    text-decoration: underline;
  }
}

/* ============================================================
   SUPPLEMENTARY STYLES - Homepage Specific
   ============================================================ */

/* ── Top Banner ── */
.top-banner {
  background: linear-gradient(90deg, var(--secondary), #3da85e, var(--secondary));
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 1001;
  animation: bannerShimmer 8s ease-in-out infinite;
  background-size: 200% 100%;
}

@keyframes bannerShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.top-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.banner-leaf {
  font-size: 18px;
  animation: leafSway 3s ease-in-out infinite;
}

@keyframes leafSway {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  75% { transform: rotate(-8deg); }
}

.banner-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.banner-cta {
  background: var(--accent);
  color: #1a1a1a;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  transition: all var(--transition-base);
}

.banner-cta:hover {
  background: #e8b830;
  color: #1a1a1a;
  transform: scale(1.05);
}

/* ── Header (element-based) ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 26, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-base);
  height: 70px;
}

header.scrolled {
  background: rgba(10, 26, 10, 0.95);
  box-shadow: 0 4px 30px rgba(80, 200, 120, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-link {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.lang-link:hover {
  color: var(--primary);
  border-color: var(--border);
}

.lang-link.active {
  color: var(--bg-secondary);
  background: var(--primary);
  border-color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

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

/* ── Hero Supplementary ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 60px;
  overflow: hidden;
  background: linear-gradient(175deg, var(--bg-secondary) 0%, #0d2a0d 30%, #0a200a 60%, var(--bg-primary) 100%);
}

.hero::after {
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(80, 200, 120, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(45, 138, 78, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(212, 160, 23, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-leaves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.leaf-particle {
  position: absolute;
  top: -20px;
  border-radius: 50% 0 50% 0;
  background: var(--primary);
  opacity: 0.3;
  animation: leafFallHero linear forwards;
  pointer-events: none;
}

@keyframes leafFallHero {
  0% { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0.4; }
  25% { transform: translateY(25vh) rotate(90deg) translateX(30px); }
  50% { transform: translateY(50vh) rotate(180deg) translateX(-20px); }
  75% { transform: translateY(75vh) rotate(270deg) translateX(40px); }
  100% { transform: translateY(100vh) rotate(360deg) translateX(0); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientMove 6s ease-in-out infinite;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius-leaf);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--border-strong);
  transition: all var(--transition-base);
  text-decoration: none;
}

.cta-secondary:hover {
  background: var(--primary-dim);
  color: var(--primary);
  border-color: var(--primary);
}

.cta-primary.cta-large {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* Pulse animation for CTAs */
.pulse {
  animation: pulseAnim 1s ease-out;
}

@keyframes pulseAnim {
  0% { box-shadow: 0 0 0 0 rgba(80, 200, 120, 0.4); }
  100% { box-shadow: 0 0 0 15px rgba(80, 200, 120, 0); }
}

/* ── Iframe ── */
.iframe-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.game-iframe-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-organic-md);
  overflow: hidden;
  box-shadow: var(--shadow-elevated), 0 0 60px rgba(80, 200, 120, 0.08);
}

.game-iframe-container iframe {
  display: block;
  width: 100%;
  min-height: 500px;
  border: none;
}

/* ── Organic Dividers ── */
.organic-divider-top {
  height: 60px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.organic-divider-top::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  right: -5%;
  height: 60px;
  background: currentColor;
  opacity: 0.03;
  border-radius: 50% 50% 0 0;
}

/* ── Section H2 styling ── */
section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary);
  position: relative;
}

section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 16px auto 0;
  border-radius: 3px;
}

/* ── Section Intro (override for centered) ── */
.section-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* ── Section Image as img class ── */
img.section-image {
  max-width: 700px;
  margin: 40px auto 0;
  border-radius: var(--radius-organic-md);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(80, 200, 120, 0.1);
  display: block;
}

/* ── Info Table Wrapper ── */
.info-table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

/* ── Rating Badge (homepage variant) ── */
.rating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(80, 200, 120, 0.05));
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 30px;
  text-align: center;
}

.rating-stars {
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 2px;
}

.rating-score {
  font-size: 16px;
  color: var(--text);
}

.rating-text {
  color: var(--text-muted);
  font-size: 14px;
}

/* ── Bonus Overview Grid ── */
.bonus-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.card-type {
  display: inline-block;
  background: var(--primary-dim);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

/* ── Content With Image ── */
.content-with-image {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.content-with-image.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.content-with-image.reverse .content-text {
  order: 2;
}

.content-with-image.reverse .content-image {
  order: 1;
}

.content-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

.content-text strong {
  color: var(--text);
}

.content-image img {
  border-radius: var(--radius-organic-md);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(80, 200, 120, 0.1);
  position: sticky;
  top: 100px;
}

/* ── Example & Strategy Boxes ── */
.example-box,
.strategy-box {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  border-left: 4px solid var(--accent);
  position: relative;
}

.example-box {
  border-left-color: var(--accent);
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.06), rgba(212, 160, 23, 0.02));
}

.strategy-box {
  border-left-color: var(--primary);
  background: linear-gradient(135deg, rgba(80, 200, 120, 0.06), rgba(80, 200, 120, 0.02));
}

.example-box h4,
.strategy-box h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.example-box p,
.strategy-box p {
  margin-bottom: 0;
  font-size: 15px;
}

/* ── Timing Grid ── */
.timing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.timing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition-base);
}

.timing-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.timing-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 8px;
}

.timing-stage {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.timing-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* ── Compare Table ── */
.compare-table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-table th {
  background: rgba(80, 200, 120, 0.08);
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}

.compare-table th:first-child {
  text-align: left;
}

.compare-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(80, 200, 120, 0.08);
  font-size: 14px;
  color: var(--text-muted);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

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

.compare-table tr:hover td {
  background: rgba(80, 200, 120, 0.04);
}

/* ── Stats Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all var(--transition-base);
}

.stat-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 20px rgba(80, 200, 120, 0.1);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.5;
}

.frequency-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.frequency-content strong {
  color: var(--text);
}

/* ── Errors Grid ── */
.errors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.error-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.error-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.error-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #c09415);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

/* ── CTA Break Section ── */
.section-cta-break {
  background: linear-gradient(135deg, rgba(80, 200, 120, 0.08), rgba(45, 138, 78, 0.05), rgba(212, 160, 23, 0.04));
  text-align: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.section-cta-break::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(80, 200, 120, 0.04), transparent 60%);
  pointer-events: none;
}

.section-cta-break h2 {
  color: var(--text);
  margin-bottom: 16px;
}

.section-cta-break h2::after {
  display: none;
}

.section-cta-break p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.7;
}

/* ── Reviews Grid ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  padding: 28px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
}

.review-meta strong {
  display: block;
  color: var(--text);
  font-size: 15px;
}

.review-meta span {
  color: var(--text-dark);
  font-size: 12px;
}

.review-stars {
  color: var(--accent);
  font-size: 16px;
  white-space: nowrap;
}

.review-stars span {
  font-size: 12px;
  color: var(--text-dark);
  margin-left: 4px;
}

.review-card blockquote {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
}

/* ── Verdict Section ── */
.section-verdict {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.section-verdict h2::after {
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.verdict-content {
  display: flex;
  align-items: start;
  gap: 40px;
  text-align: left;
  margin: 40px 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-organic-md);
  padding: 40px;
}

.verdict-score {
  flex-shrink: 0;
  text-align: center;
  padding: 20px;
}

.verdict-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.verdict-max {
  font-size: 20px;
  color: var(--text-dark);
}

.verdict-stars {
  color: var(--accent);
  font-size: 22px;
  margin-top: 8px;
  letter-spacing: 3px;
}

.verdict-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 15px;
}

.verdict-text strong {
  color: var(--primary);
}

.section-verdict .cta-primary {
  margin-top: 30px;
}

.section-verdict img.section-image {
  margin: 30px auto;
}

/* ── Responsible Gaming Section ── */
.section-responsible {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.04), rgba(10, 26, 10, 0.9));
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid rgba(212, 160, 23, 0.15);
}

.section-responsible h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-responsible p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 16px;
  font-size: 14px;
  line-height: 1.7;
}

.responsible-phone {
  margin-top: 20px;
}

.responsible-phone a {
  color: var(--accent);
  font-size: 18px;
}

/* ── Footer (element-based) ── */
footer {
  background: #060e06;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(80, 200, 120, 0.1);
}

.footer-brand .logo-icon {
  font-size: 24px;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.footer-brand p {
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-links h4,
.footer-info h4 {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-dark);
  font-size: 14px;
  transition: color var(--transition-fast);
}

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

.footer-info p {
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-info a {
  color: var(--accent);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-dark);
  font-size: 13px;
}

/* ── Badge Type (for feature cards) ── */
.badge-type {
  display: inline-block;
  background: var(--primary-dim);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Responsive Supplementary ── */
@media (max-width: 1024px) {
  .bonus-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-with-image,
  .content-with-image.reverse {
    grid-template-columns: 1fr;
  }

  .content-with-image.reverse .content-text,
  .content-with-image.reverse .content-image {
    order: unset;
  }

  .content-image img {
    position: static;
  }

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

@media (max-width: 768px) {
  header {
    height: 60px;
  }

  .header-inner {
    height: 60px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 1050;
  }

  .header-nav.active {
    display: flex;
  }

  .lang-selector {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lang-link {
    padding: 10px 18px;
    font-size: 16px;
  }

  .hero {
    padding: 100px 0 40px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .bonus-overview-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .verdict-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 24px;
  }

  .verdict-text {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .game-iframe-container iframe {
    min-height: 350px;
  }

  .banner-text {
    font-size: 12px;
  }

  .top-banner .container {
    gap: 8px;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  img.section-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .verdict-number {
    font-size: 44px;
  }
}
