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

:root {
  --clr-nav: #362871;
  --clr-nav-dark: #251c52;
  --clr-nav-light: #4a3890;
  --clr-btn-play: #3b6b1b;
  --clr-btn-play-hover: #4e8f24;
  --clr-btn-bonus: #e76213;
  --clr-btn-bonus-hover: #f5722a;
  --clr-bg: #bc1377;
  --clr-bg-dark: #9a0f62;
  --clr-bg-light: #d01a87;
  --clr-text-light: #ffffff;
  --clr-text-muted: #e8d5ef;
  --clr-gold: #f5c842;
  --clr-gold-dark: #d4a012;
  --clr-card-bg: rgba(54,40,113,0.92);
  --clr-card-border: rgba(245,200,66,0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.25);
  --transition: 0.25s ease;
  --font-main: 'Oswald', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; background: var(--clr-bg); }

body {
  font-family: var(--font-main);
  background: linear-gradient(160deg, #9a0f62 0%, #bc1377 40%, #8c0d58 100%);
  color: var(--clr-text-light);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-dark); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.25;
  color: var(--clr-text-light);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p { margin-bottom: 0.9rem; line-height: 1.6; }

ul, ol { padding-left: 1.4rem; margin-bottom: 0.9rem; }
li { margin-bottom: 0.35rem; }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.box {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  backdrop-filter: blur(8px);
}

.section-gap { margin: 18px auto; }

/* ===== HEADER ===== */
.site-header {
  background: var(--clr-nav);
  border-bottom: 2px solid var(--clr-gold-dark);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 20px rgba(0,0,0,0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.header-logo { flex-shrink: 0; }
.header-logo img { height: 52px; width: auto; object-fit: contain; }

.header-jackpot {
  background: linear-gradient(135deg, var(--clr-nav-dark), var(--clr-nav-light));
  border: 1px solid var(--clr-gold);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: jackpotPulse 3s infinite;
}
.header-jackpot .jk-amount {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-gold);
}

@keyframes jackpotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,200,66,0); }
  50% { box-shadow: 0 0 12px 3px rgba(245,200,66,0.3); }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-nav a {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { background: rgba(245,200,66,0.12); color: var(--clr-gold); }
.header-nav svg { width: 14px; height: 14px; flex-shrink: 0; }

.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  padding: 8px 20px;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-play {
  background: linear-gradient(135deg, var(--clr-btn-play), #4e8f24);
  color: #fff;
  box-shadow: 0 3px 14px rgba(59,107,27,0.5);
}
.btn-play:hover { background: linear-gradient(135deg, #4e8f24, #5fa32b); box-shadow: 0 5px 18px rgba(59,107,27,0.6); color: #fff; }

.btn-bonus {
  background: linear-gradient(135deg, var(--clr-btn-bonus), #f5722a);
  color: #fff;
  box-shadow: 0 3px 14px rgba(231,98,19,0.5);
}
.btn-bonus:hover { background: linear-gradient(135deg, #f5722a, #ff8840); box-shadow: 0 5px 18px rgba(231,98,19,0.6); color: #fff; }

.btn-lg { font-size: 1rem; padding: 12px 28px; }
.btn-xl { font-size: 1.1rem; padding: 15px 36px; }

.btn-secondary {
  background: rgba(245,200,66,0.15);
  color: var(--clr-gold);
  border: 1px solid var(--clr-gold);
}
.btn-secondary:hover { background: rgba(245,200,66,0.28); color: var(--clr-gold); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 7px;
}
.burger span { display: block; height: 2px; background: var(--clr-text-light); border-radius: 2px; transition: var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--clr-nav-dark);
  border-top: 1px solid rgba(245,200,66,0.2);
  padding: 12px 0;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  padding: 10px 20px;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: rgba(245,200,66,0.1); color: var(--clr-gold); }
.mobile-nav svg { width: 16px; height: 16px; }
.mobile-nav-buttons {
  display: flex;
  gap: 8px;
  padding: 12px 20px 4px;
}
.mobile-nav-buttons .btn { flex: 1; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/hero-banner.png');
  background-size: cover;
  background-position: center top;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,15,70,0.88) 0%, rgba(30,15,70,0.7) 50%, rgba(30,15,70,0.3) 100%);
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 60px 0 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,200,66,0.15);
  border: 1px solid rgba(245,200,66,0.4);
  color: var(--clr-gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.hero h1 { color: var(--clr-text-light); margin-bottom: 14px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-subtitle { font-size: 1.05rem; color: var(--clr-text-muted); margin-bottom: 28px; max-width: 480px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .val { font-size: 1.3rem; font-weight: 700; color: var(--clr-gold); display: block; }
.hero-stat .lbl { font-size: 0.75rem; color: var(--clr-text-muted); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 10px 0;
  margin-bottom: 4px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.breadcrumbs li { display: flex; align-items: center; gap: 4px; }
.breadcrumbs li + li::before { content: '/'; color: rgba(255,255,255,0.3); }
.breadcrumbs a { color: var(--clr-text-muted); }
.breadcrumbs a:hover { color: var(--clr-gold); }
.breadcrumbs .current { color: var(--clr-gold); }

/* ===== TABLE OF CONTENTS ===== */
.toc-block {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-left: 4px solid var(--clr-gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 18px;
}
.toc-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.toc-list li a:hover { background: rgba(245,200,66,0.1); color: var(--clr-gold); }
.toc-list li a svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--clr-gold); }

/* ===== DEMO + GAME DETAILS ===== */
.demo-section {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
  margin-bottom: 18px;
  align-items: start;
}

.demo-frame-wrap {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.demo-frame-header {
  background: var(--clr-nav-dark);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(245,200,66,0.2);
}
.demo-frame-header h2 { font-size: 1rem; margin: 0; color: var(--clr-gold); }
.demo-frame-inner {
  position: relative;
  background: #000;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.demo-frame-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.demo-play-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,15,70,0.8), rgba(188,19,119,0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  transition: opacity var(--transition);
}
.demo-play-overlay.hidden { opacity: 0; pointer-events: none; }
.demo-play-icon {
  width: 72px;
  height: 72px;
  background: var(--clr-btn-play);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(59,107,27,0.7);
  animation: playPulse 2s infinite;
}
@keyframes playPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.demo-play-icon svg { width: 30px; height: 30px; color: #fff; margin-left: 4px; }
.demo-play-overlay p { color: #fff; font-size: 0.9rem; font-weight: 500; }
.demo-cta-bar {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(0,0,0,0.25);
  flex-wrap: wrap;
}
.demo-cta-bar span { font-size: 0.82rem; color: var(--clr-text-muted); }

.game-details-card {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gd-header {
  background: var(--clr-nav-dark);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(245,200,66,0.2);
}
.gd-header h3 { font-size: 0.95rem; margin: 0; color: var(--clr-gold); }
.gd-table { width: 100%; border-collapse: collapse; }
.gd-table tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.gd-table td {
  padding: 7px 12px;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.4;
}
.gd-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 500;
  white-space: nowrap;
  width: 45%;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gd-table td:last-child { color: var(--clr-text-light); font-weight: 600; }
.gd-table svg { width: 13px; height: 13px; color: var(--clr-gold); flex-shrink: 0; }
.gd-table tr:last-child td { border-bottom: none; }
.rtp-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(231,98,19,0.2);
  color: #ff9550;
  border: 1px solid rgba(231,98,19,0.4);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ===== PROS CONS ===== */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.pros-card, .cons-card {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.pros-card { border-top: 3px solid #3b6b1b; }
.cons-card { border-top: 3px solid #c0392b; }
.pc-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-card .pc-title { color: #6fcf50; }
.cons-card .pc-title { color: #e74c3c; }
.pc-list { list-style: none; padding: 0; margin: 0; }
.pc-list li {
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.45;
}
.pc-list li:last-child { border-bottom: none; }
.pc-list .pc-icon { flex-shrink: 0; margin-top: 2px; }
.pros-card .pc-icon { color: #6fcf50; }
.cons-card .pc-icon { color: #e74c3c; }

/* ===== BONUSES SLIDER ===== */
.bonus-section { margin-bottom: 18px; }
.bonus-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 2px;
}
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bonus-card {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.bonus-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.4); }
.bonus-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--clr-btn-bonus);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bonus-card-img {
  height: 80px;
  background: linear-gradient(135deg, var(--clr-nav-dark), var(--clr-nav));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: -0.02em;
  text-align: center;
  padding: 0 16px;
  font-style: italic;
}
.bonus-card-body { padding: 16px; }
.bonus-card-name { font-size: 1rem; font-weight: 700; color: var(--clr-text-light); margin-bottom: 4px; }
.bonus-card-offer { font-size: 1.2rem; font-weight: 700; color: var(--clr-gold); margin-bottom: 8px; }
.bonus-card-desc { font-size: 0.8rem; color: var(--clr-text-muted); margin-bottom: 14px; line-height: 1.45; }
.bonus-card-features { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.bonus-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}
.bonus-feat svg { width: 12px; height: 12px; color: var(--clr-gold); flex-shrink: 0; }
.bonus-tc { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 8px; }

/* Mobile slider for bonuses */
.bonus-slider-wrap { display: none; position: relative; }
.bonus-slider { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 6px; }
.bonus-slider::-webkit-scrollbar { display: none; }
.bonus-slider .bonus-card { min-width: 280px; max-width: 280px; scroll-snap-align: start; flex-shrink: 0; }
.slider-dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.slider-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.25); border: none; cursor: pointer; padding: 0; transition: background var(--transition); }
.slider-dot.active { background: var(--clr-gold); }

/* ===== CONTENT BLOCK ===== */
.content-block {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  margin-bottom: 18px;
}
.content-block h2 {
  color: var(--clr-gold);
  font-size: 1.4rem;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245,200,66,0.2);
}
.content-block h3 { color: var(--clr-text-light); font-size: 1.1rem; margin: 18px 0 8px; }
.content-block h4 { color: var(--clr-gold); font-size: 0.95rem; margin: 14px 0 6px; }
.content-block p { color: var(--clr-text-muted); font-size: 0.92rem; }
.content-block ul, .content-block ol { color: var(--clr-text-muted); font-size: 0.92rem; }
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}
.content-block table th {
  background: var(--clr-nav-dark);
  color: var(--clr-gold);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid rgba(245,200,66,0.2);
}
.content-block table td {
  padding: 9px 14px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--clr-text-muted);
}
.content-block table tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.content-block a { color: var(--clr-gold); }
.content-block blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 10px 18px;
  margin: 14px 0;
  background: rgba(245,200,66,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.content-block img { max-width: 100%; border-radius: var(--radius-sm); margin: 10px auto; }
.content-block hr { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 18px 0; }

/* ===== FAQ ===== */
.faq-block {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 18px;
}
.faq-block h2 {
  color: var(--clr-gold);
  font-size: 1.4rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 14px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--clr-text-light);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--clr-gold); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(245,200,66,0.15); display: flex; align-items: center; justify-content: center; transition: background var(--transition), transform var(--transition); }
.faq-item.open .faq-icon { background: var(--clr-gold); transform: rotate(45deg); }
.faq-icon svg { width: 10px; height: 10px; color: var(--clr-gold); }
.faq-item.open .faq-icon svg { color: var(--clr-nav-dark); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.2s ease;
  padding: 0;
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 16px; }
.faq-answer p { color: var(--clr-text-muted); font-size: 0.88rem; margin: 0; line-height: 1.6; }

/* ===== AUTHOR ===== */
.author-block {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 18px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-gold);
  flex-shrink: 0;
}
.author-info { flex: 1; }
.author-name { font-size: 1.1rem; font-weight: 700; color: var(--clr-text-light); margin-bottom: 2px; }
.author-title { font-size: 0.82rem; color: var(--clr-gold); font-weight: 500; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.author-title span { display: flex; align-items: center; gap: 4px; color: var(--clr-text-muted); font-size: 0.8rem; }
.author-bio { font-size: 0.85rem; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 12px; }
.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.author-meta span { display: flex; align-items: center; gap: 4px; }
.author-meta svg { width: 12px; height: 12px; }
.author-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.author-social {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--clr-text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
}
.author-social:hover { background: rgba(245,200,66,0.15); color: var(--clr-gold); }
.author-social svg { width: 13px; height: 13px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-nav-dark);
  border-top: 2px solid var(--clr-gold-dark);
  margin-top: 30px;
  padding: 40px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 44px; margin-bottom: 12px; }
.footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.55; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-gold);
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  display: block;
  padding: 3px 0;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--clr-gold); }

.footer-middle {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-logos-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logos-row span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  margin-right: 4px;
}
.footer-trust-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  transition: background var(--transition);
}
.footer-trust-logo:hover { background: rgba(255,255,255,0.12); color: #fff; }
.footer-trust-logo img { height: 18px; width: auto; }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--clr-btn-bonus);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.footer-socials { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
}
.footer-social:hover { background: var(--clr-gold); color: var(--clr-nav-dark); }
.footer-social svg { width: 15px; height: 15px; }

.footer-bottom {
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-legal { font-size: 0.72rem; color: rgba(255,255,255,0.35); line-height: 1.55; flex: 1; }
.footer-legal a { color: rgba(255,255,255,0.45); }
.footer-legal a:hover { color: var(--clr-gold); }
.footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.35); white-space: nowrap; }
.footer-flag { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ===== BONUS WIDGET ===== */
.bonus-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: linear-gradient(90deg, var(--clr-nav-dark) 0%, var(--clr-nav) 100%);
  border-top: 2px solid var(--clr-gold-dark);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bonus-widget.visible { transform: translateY(0); }
.widget-text { flex: 1; }
.widget-text strong { font-size: 0.95rem; font-weight: 700; color: var(--clr-gold); display: block; line-height: 1.2; }
.widget-text span { font-size: 0.78rem; color: var(--clr-text-muted); }
.widget-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.5);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}
.widget-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
.widget-close svg { width: 12px; height: 12px; }

/* ===== INFO PAGES ===== */
.info-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 30px 0 60px;
}
.info-content h1 { color: var(--clr-gold); margin-bottom: 20px; }
.info-content h2 { color: var(--clr-gold); font-size: 1.2rem; margin: 24px 0 10px; }
.info-content p { color: var(--clr-text-muted); font-size: 0.92rem; line-height: 1.7; }
.info-content ul, .info-content ol { color: var(--clr-text-muted); font-size: 0.92rem; }
.info-content a { color: var(--clr-gold); }

/* ===== SECTION HEADINGS ===== */
.section-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(245,200,66,0.3), transparent);
}

/* ===== WP-STYLE UNUSED ELEMENTS (obfuscation) ===== */
.wp-block-group { display: block; }
.wp-block-cover { display: block; }
.entry-content { display: contents; }
.elementor-widget-container { display: contents; }
.wp-post-navigation { display: none; }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.yoast-seo-mark { display: none; }
.wp-caption { display: none; }
.widget_recent_entries { display: none; }
#wpfooter { display: none; }
.wp-admin-bar { display: none; }
.alignleft { float: left; }
.alignright { float: right; }
.aligncenter { margin: 0 auto; display: block; }
.wp-image-preload-x9b2k { display: none !important; }
.elementor-x7m3q-widget { opacity: 0; pointer-events: none; position: absolute; }
.yoast-title-9f1c { visibility: hidden; height: 0; overflow: hidden; }
#wpadminbar { display: none; }
.wp-embed-responsive { display: none; }
.e-con-inner { display: contents; }
.et_pb_section { display: contents; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--clr-nav);
  border: 1px solid var(--clr-gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
  text-decoration: none;
}
.scroll-top.visible { opacity: 1; transform: scale(1); }
.scroll-top:hover { background: var(--clr-gold); color: var(--clr-nav-dark); }
.scroll-top svg { width: 16px; height: 16px; }

/* ===== UTILITY ===== */
.text-gold { color: var(--clr-gold); }
.text-muted { color: var(--clr-text-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.d-none { display: none; }
.d-block { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .demo-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bonus-cards { grid-template-columns: 1fr 1fr; }
  .bonus-cards .bonus-card:last-child { display: none; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-buttons { display: none; }
  .burger { display: flex; }
  .proscons-grid { grid-template-columns: 1fr; }
  .bonus-cards { display: none; }
  .bonus-slider-wrap { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .author-block { flex-direction: column; }
  .author-photo { width: 70px; height: 70px; }
  .footer-bottom { flex-direction: column; }
  .header-jackpot { display: none; }
}

@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 320px; }
  .hero-content { padding: 36px 0; }
  .content-block { padding: 18px 16px; }
  .faq-block { padding: 18px 16px; }
  .toc-list { grid-template-columns: 1fr; }
  .bonus-widget { padding: 10px 14px; }
  .demo-cta-bar { flex-direction: column; align-items: flex-start; }
}

/* table scrollable on mobile */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ===== UNUSED STYLES (uniqueness) ===== */
.x9b2k-overlay { display: none; }
.m3f7q-gradient { display: none; }
.k4p1r-badge { visibility: hidden; }
.z8n5t-wrapper::before { content: ''; display: none; }
.v2j6m-card { opacity: 0; pointer-events: none; position: absolute; z-index: -1; }
.q7h3s-text { color: transparent; font-size: 0; }
