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

:root {
  --col-hdr: #2B2444;
  --col-hdr-alt: #231e38;
  --col-bg: #110E1B;
  --col-bg-card: #1a1630;
  --col-bg-card2: #1f1a38;
  --col-btn-pri: #4DF2C1;
  --col-btn-sec: #574C7B;
  --col-btn-pri-hov: #35d4a6;
  --col-btn-sec-hov: #6a5e94;
  --col-text: #e8e4f4;
  --col-text-muted: #9e98bc;
  --col-text-dim: #6d678a;
  --col-border: rgba(87,76,123,0.35);
  --col-border-bright: rgba(77,242,193,0.25);
  --col-accent: #4DF2C1;
  --col-accent2: #a78bfa;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 32px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 24px rgba(77,242,193,0.15);
  --font-main: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --transition: 0.22s ease;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--col-bg);
  color: var(--col-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--col-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--col-btn-pri-hov); }
ul { list-style: none; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: 1360px; }

.box { border-radius: var(--radius-md); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }

.btn--pri {
  background: var(--col-btn-pri);
  color: #0d0b17;
}
.btn--pri:hover {
  background: var(--col-btn-pri-hov);
  box-shadow: 0 0 20px rgba(77,242,193,0.4);
  color: #0d0b17;
}

.btn--sec {
  background: var(--col-btn-sec);
  color: #fff;
}
.btn--sec:hover {
  background: var(--col-btn-sec-hov);
  color: #fff;
}

.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--full { width: 100%; }

.section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--col-text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  color: var(--col-text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}
.section-head {
  margin-bottom: 32px;
}
.accent { color: var(--col-accent); }

.xd8f2 { display: none; }
.k3p91 { visibility: hidden; position: absolute; }

/* ===================== HEADER ===================== */
.site-header {
  background: var(--col-hdr);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 38px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: #c8c2e0;
  font-size: 13.5px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.header-nav a:hover, .header-nav a.active {
  background: rgba(77,242,193,0.1);
  color: var(--col-accent);
}
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--col-text-muted);
  background: rgba(77,242,193,0.08);
  border: 1px solid rgba(77,242,193,0.18);
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
}
.online-badge span.dot {
  width: 7px;
  height: 7px;
  background: var(--col-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.online-count { font-weight: 600; color: var(--col-accent); }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(77,242,193,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(77,242,193,0); }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--col-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  background: var(--col-hdr-alt);
  padding: 16px 20px 20px;
  border-top: 1px solid var(--col-border);
}
.mobile-menu.open { display: block; }
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: #c8c2e0;
  font-size: 14px;
  font-weight: 500;
}
.mobile-menu-nav a:hover { background: rgba(77,242,193,0.1); color: var(--col-accent); }
.mobile-menu-nav a svg { width: 18px; height: 18px; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--col-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1035 0%, #0d0b1a 60%, #0e1a2a 100%);
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,14,27,0.92) 0%, rgba(17,14,27,0.55) 60%, rgba(17,14,27,0.2) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(77,242,193,0.12);
  border: 1px solid rgba(77,242,193,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--col-accent);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 640px;
}
.hero-desc {
  font-size: 16px;
  color: var(--col-text-muted);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat-item { text-align: left; }
.hero-stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--col-accent);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 12px;
  color: var(--col-text-muted);
  margin-top: 4px;
}

/* ===================== BREADCRUMBS ===================== */
.breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--col-border);
}
.breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--col-text-muted);
  flex-wrap: wrap;
}
.breadcrumbs-inner a { color: var(--col-text-muted); }
.breadcrumbs-inner a:hover { color: var(--col-accent); }
.breadcrumbs-inner .sep { color: var(--col-text-dim); }
.breadcrumbs-inner .current { color: var(--col-accent); font-weight: 500; }

/* ===================== MAIN CONTENT ===================== */
.main-content { padding: 48px 0 60px; flex: 1; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* ===================== CARD BLOCK ===================== */
.card-block {
  background: var(--col-bg-card);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition);
}
.card-block:hover { box-shadow: var(--shadow-card), var(--shadow-glow); }
.card-block--alt { background: var(--col-bg-card2); }

/* ===================== TABLE OF CONTENTS ===================== */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-sm);
  color: var(--col-text-muted);
  font-size: 13.5px;
  font-weight: 500;
  transition: all var(--transition);
}
.toc-item:hover {
  background: rgba(77,242,193,0.08);
  border-color: rgba(77,242,193,0.3);
  color: var(--col-accent);
  transform: translateY(-2px);
}
.toc-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--col-accent); opacity: 0.8; }

/* ===================== INFO TABLE ===================== */
.info-table-wrap { overflow-x: auto; }
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.info-table tr { border-bottom: 1px solid var(--col-border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td {
  padding: 13px 16px;
  vertical-align: middle;
  line-height: 1.5;
  text-align: left;
}
.info-table td:first-child {
  width: 40%;
  color: var(--col-text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.info-table td:last-child { color: var(--col-text); font-weight: 500; }
.info-table tr:nth-child(odd) { background: rgba(255,255,255,0.025); }
.info-table tr:hover { background: rgba(77,242,193,0.05); }
.td-icon {
  display: flex;
  align-items: center;
  gap: 9px;
}
.td-icon svg { width: 17px; height: 17px; color: var(--col-accent); flex-shrink: 0; }
.td-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(77,242,193,0.15);
  color: var(--col-accent);
}

/* ===================== PROS GRID ===================== */
.pros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.pro-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: all var(--transition);
}
.pro-card:hover {
  border-color: rgba(77,242,193,0.35);
  background: rgba(77,242,193,0.06);
  transform: translateY(-3px);
}
.pro-icon {
  width: 46px;
  height: 46px;
  background: rgba(77,242,193,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pro-icon svg { width: 24px; height: 24px; color: var(--col-accent); }
.pro-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.pro-desc { font-size: 13px; color: var(--col-text-muted); line-height: 1.6; }

/* ===================== JACKPOTS ===================== */
.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.jackpot-card {
  background: linear-gradient(135deg, #1f1840 0%, #2a1f4a 100%);
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.jackpot-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(167,139,250,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.jackpot-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(167,139,250,0.2); }
.jackpot-name { font-size: 13px; font-weight: 600; color: var(--col-text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.jackpot-amount {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #f0c060;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.jackpot-game { font-size: 12px; color: var(--col-text-dim); }

/* ===================== MIRRORS ===================== */
.mirrors-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.mirrors-time {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--col-accent);
  background: rgba(77,242,193,0.1);
  border: 1px solid rgba(77,242,193,0.2);
  border-radius: 20px;
  padding: 5px 14px;
}
.mirrors-time svg { width: 14px; height: 14px; }
.mirrors-table-wrap { overflow-x: auto; }
.mirrors-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 500px;
}
.mirrors-table thead tr { background: rgba(255,255,255,0.05); }
.mirrors-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--col-text-muted);
  border-bottom: 2px solid var(--col-border);
}
.mirrors-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--col-border);
  vertical-align: middle;
  text-align: left;
}
.mirrors-table tr:last-child td { border-bottom: none; }
.mirrors-table tr:hover td { background: rgba(77,242,193,0.04); }
.mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #4DF2C1;
}
.mirror-status .dot { width: 7px; height: 7px; background: #4DF2C1; border-radius: 50%; animation: pulse 2s infinite; }

/* ===================== BONUSES ===================== */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bonus-card {
  background: linear-gradient(135deg, #1d1838 0%, #261e45 100%);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.bonus-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--col-btn-pri), var(--col-accent2));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.bonus-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.bonus-tag--welcome { background: rgba(77,242,193,0.15); color: var(--col-accent); }
.bonus-tag--reload { background: rgba(167,139,250,0.15); color: var(--col-accent2); }
.bonus-tag--fs { background: rgba(240,192,96,0.15); color: #f0c060; }
.bonus-amount {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  line-height: 1;
}
.bonus-title { font-size: 14px; font-weight: 600; color: var(--col-text-muted); margin-bottom: 12px; }
.bonus-features { list-style: none; margin-bottom: 20px; }
.bonus-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--col-text-muted);
  padding: 4px 0;
}
.bonus-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--col-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.bonus-promo {
  font-size: 12px;
  color: var(--col-text-dim);
  margin-top: 10px;
}
.bonus-promo strong { color: var(--col-accent); font-family: monospace; }

/* ===================== GAMES ===================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.game-card {
  background: var(--col-bg-card);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.game-card:hover { transform: translateY(-4px); border-color: rgba(77,242,193,0.3); }
.game-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1d1836 0%, #2a1f45 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.game-card:hover .game-thumb img { transform: scale(1.06); }
.game-thumb-placeholder {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(77,242,193,0.2);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  padding: 16px;
  text-align: center;
  word-break: break-word;
}
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,14,27,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-info { padding: 14px 16px; }
.game-name { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.game-provider { font-size: 12px; color: var(--col-text-muted); }

/* ===================== DEMO ===================== */
.demo-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--col-border);
  background: #0d0b17;
}
.demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--col-border);
}
.demo-game-info { display: flex; align-items: center; gap: 10px; }
.demo-game-name { font-weight: 700; font-size: 15px; }
.demo-game-provider { font-size: 12px; color: var(--col-text-muted); }
.demo-iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0d0b17;
}
.demo-iframe-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================== CONTENT / REVIEW ===================== */
.review-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--col-text);
}
.review-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 32px 0 14px;
  color: var(--col-text);
  letter-spacing: -0.02em;
}
.review-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--col-accent);
}
.review-content h4 { font-size: 1rem; font-weight: 700; margin: 20px 0 8px; }
.review-content p { margin-bottom: 16px; }
.review-content ul, .review-content ol {
  margin: 12px 0 18px 20px;
  list-style: disc;
}
.review-content ol { list-style: decimal; }
.review-content li { margin-bottom: 8px; line-height: 1.7; }
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.review-content th {
  background: rgba(255,255,255,0.06);
  padding: 11px 16px;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--col-border);
  color: var(--col-text-muted);
  font-size: 13px;
  text-transform: uppercase;
}
.review-content td {
  padding: 11px 16px;
  border: 1px solid var(--col-border);
  vertical-align: top;
}
.review-content tr:nth-child(even) td { background: rgba(255,255,255,0.025); }
.review-content a { color: var(--col-accent); text-decoration: underline; text-underline-offset: 3px; }
.review-content blockquote {
  border-left: 3px solid var(--col-accent);
  padding: 12px 20px;
  background: rgba(77,242,193,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  color: var(--col-text-muted);
  font-style: italic;
}
.review-content img { max-width: 100%; border-radius: var(--radius-sm); margin: 16px 0; }
.review-content strong { color: var(--col-text); font-weight: 700; }
.review-content em { color: var(--col-text-muted); }
.review-content code {
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.9em;
  font-family: monospace;
}

/* ===================== COMMENTS ===================== */
.comments-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.comment-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--col-btn-sec), var(--col-accent2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.comment-meta {}
.comment-name { font-weight: 700; font-size: 14px; }
.comment-date { font-size: 12px; color: var(--col-text-dim); }
.comment-stars { display: flex; gap: 2px; margin-bottom: 8px; }
.star { color: #f0c060; font-size: 14px; }
.comment-text { font-size: 14px; color: var(--col-text-muted); line-height: 1.7; }

.comment-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--col-text-muted); }
.form-input, .form-textarea, .form-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--col-text);
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(77,242,193,0.5);
  background: rgba(255,255,255,0.07);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { appearance: none; cursor: pointer; }
.rating-input { display: flex; gap: 6px; }
.rating-input label {
  font-size: 22px;
  color: var(--col-text-dim);
  cursor: pointer;
  transition: color var(--transition);
}
.rating-input input[type=radio] { display: none; }
.rating-input label:hover,
.rating-input label:hover ~ label { color: var(--col-text-dim); }
.rating-input input[type=radio]:checked ~ label { color: var(--col-text-dim); }
.rating-input label:hover, .rating-input label.active { color: #f0c060; }

/* ===================== AUTHOR ===================== */
.author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(77,242,193,0.3);
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--col-btn-sec), var(--col-accent2));
}
.author-avatar-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(77,242,193,0.3);
  background: linear-gradient(135deg, #574C7B, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.author-body { flex: 1; }
.author-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 2px; }
.author-title { font-size: 13px; color: var(--col-accent); font-weight: 600; margin-bottom: 10px; }
.author-bio { font-size: 13.5px; color: var(--col-text-muted); line-height: 1.7; margin-bottom: 14px; }
.author-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--col-text-dim); margin-bottom: 14px; }
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-meta svg { width: 14px; height: 14px; }
.author-socials { display: flex; gap: 10px; }
.author-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-sm);
  color: var(--col-text-muted);
  transition: all var(--transition);
}
.author-social:hover { background: rgba(77,242,193,0.1); border-color: rgba(77,242,193,0.3); color: var(--col-accent); }
.author-social svg { width: 17px; height: 17px; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--col-hdr);
  border-top: 1px solid var(--col-border);
  padding: 48px 0 24px;
  margin-top: auto;
}
.site-footer > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--col-border);
  margin-bottom: 32px;
}
.footer-brand {}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 34px; }
.footer-tagline { font-size: 13px; color: var(--col-text-muted); line-height: 1.7; margin-bottom: 16px; }
.footer-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--col-text-muted);
}
.footer-country img { width: 22px; height: 16px; border-radius: 2px; }
.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--col-text-muted); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13.5px; color: #9e98bc; transition: color var(--transition); }
.footer-links a:hover { color: var(--col-accent); }
.footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.footer-social {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  color: var(--col-text-muted);
  transition: all var(--transition);
}
.footer-social:hover { background: rgba(77,242,193,0.15); color: var(--col-accent); }
.footer-social svg { width: 17px; height: 17px; }

.footer-logos-row {
  margin-bottom: 24px;
}
.footer-logos-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--col-text-dim); margin-bottom: 10px; }
.footer-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--col-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--col-text-muted);
  white-space: nowrap;
}
.footer-logo-badge svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--col-border);
}
.footer-legal {
  font-size: 12px;
  color: var(--col-text-dim);
  line-height: 1.7;
  max-width: 740px;
}
.footer-legal a { color: var(--col-text-dim); text-decoration: underline; }
.footer-legal a:hover { color: var(--col-accent); }
.footer-copyright { font-size: 12.5px; color: var(--col-text-dim); white-space: nowrap; }

/* ===================== STICKY WIDGET ===================== */
.sticky-widget {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(90deg, #1d1838 0%, #261e48 100%);
  border: 1px solid rgba(77,242,193,0.35);
  border-radius: 50px;
  padding: 12px 20px 12px 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 30px rgba(77,242,193,0.12);
  max-width: 90vw;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sticky-widget:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 12px 48px rgba(0,0,0,0.65), 0 0 40px rgba(77,242,193,0.2); }
.widget-promo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.widget-promo-top { font-size: 11px; color: var(--col-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.widget-promo-amount { font-size: 16px; font-weight: 800; color: var(--col-accent); letter-spacing: -0.02em; }
.widget-close {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  background: var(--col-bg-card2);
  border: 1px solid var(--col-border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--col-text-muted);
  transition: all var(--transition);
}
.widget-close:hover { background: rgba(77,242,193,0.15); color: var(--col-accent); }

/* ===================== SLIDERS ===================== */
.slider-outer { position: relative; }
.slider-track-wrap { overflow: hidden; }
.slider-track { display: flex; gap: 16px; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.slider-track .bonus-card, .slider-track .game-card { flex: 0 0 calc(33.333% - 11px); min-width: 0; }
.slider-nav {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 16px;
}
.slider-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--col-border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-text-muted);
  transition: all var(--transition);
}
.slider-btn:hover { background: rgba(77,242,193,0.15); border-color: rgba(77,242,193,0.3); color: var(--col-accent); }
.slider-btn svg { width: 18px; height: 18px; }

/* ===================== FAQ ===================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--col-border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--col-text);
  background: rgba(255,255,255,0.04);
  transition: background var(--transition);
  user-select: none;
  gap: 12px;
}
.faq-question:hover { background: rgba(77,242,193,0.06); }
.faq-question.open { color: var(--col-accent); }
.faq-arrow {
  flex-shrink: 0;
  width: 20px; height: 20px;
  transition: transform var(--transition);
  color: var(--col-text-dim);
}
.faq-question.open .faq-arrow { transform: rotate(180deg); color: var(--col-accent); }
.faq-answer {
  display: none;
  padding: 0 20px;
  font-size: 13.5px;
  color: var(--col-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--col-border);
}
.faq-answer.open { display: block; padding: 16px 20px; }

/* ===================== PAGE / INFO ===================== */
.page-content {
  padding: 48px 0 64px;
  max-width: 800px;
  margin: 0 auto;
}
.page-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.page-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 30px 0 12px;
  color: var(--col-accent);
}
.page-content p { font-size: 15px; line-height: 1.8; color: var(--col-text-muted); margin-bottom: 14px; }
.page-content ul { margin: 10px 0 16px 20px; list-style: disc; }
.page-content li { font-size: 14px; color: var(--col-text-muted); margin-bottom: 7px; line-height: 1.7; }
.page-content a { color: var(--col-accent); text-decoration: underline; }

/* ===================== WP DECOYS ===================== */
#wp-siteground-optimizer-excluded { display: none; }
.elementor-hidden { display: none !important; }
.wp-block-group { display: none; }
.entry-meta { display: none; }
.screen-reader-text { display: none; }
#wpadminbar { display: none !important; }
.yoast-schema-graph { display: none; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.anim-fade-up { animation: fadeInUp 0.55s ease both; }
.anim-fade    { animation: fadeIn 0.45s ease both; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .bonuses-grid { grid-template-columns: repeat(3, 1fr); }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}

/* hide bonus slider arrows on desktop */
#bonuses .slider-nav { display: none; }
@media (max-width: 768px) { #bonuses .slider-nav { display: flex; } }

/* ===== DEMO IFRAME ===== */
.demo-iframe-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}
.demo-iframe-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  /* --- no horizontal scroll --- */
  html, body { overflow-x: hidden; max-width: 100vw; }
  *, *::before, *::after { min-width: 0; box-sizing: border-box; }

  /* --- header --- */
  .header-nav { display: none; }
  .header-actions .btn--sec,
  .header-actions .btn--pri,
  .header-actions a.btn { display: none; }
  .online-badge { display: none; }
  .burger { display: flex; }

  /* --- hero --- */
  .hero { min-height: 400px; }
  .hero-content { padding: 56px 0; }
  .hero-stats { gap: 20px; }

  /* --- grids --- */
  .bonuses-grid { grid-template-columns: 1fr; gap: 14px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-grid { grid-template-columns: 1fr 1fr; }
  .toc-grid { grid-template-columns: repeat(2, 1fr); }
  .jackpot-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .author-card { flex-direction: column; }

  /* --- footer --- */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
  .sticky-widget { bottom: 14px; padding: 10px 16px 10px 14px; }

  /* --- sliders --- */
  .slider-track .bonus-card,
  .slider-track .game-card { flex: 0 0 85%; }

  /* --- demo --- */
  .demo-iframe-container {
    aspect-ratio: unset;
    min-height: 320px;
    height: 56vw;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
  }
  .demo-iframe-container iframe {
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
  }
}

@media (max-width: 480px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .container { padding: 0 14px; }
  .card-block { padding: 20px 16px; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .pros-grid { grid-template-columns: 1fr; }
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .jackpot-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .slider-track .bonus-card,
  .slider-track .game-card { flex: 0 0 92%; }

  /* --- demo mobile small --- */
  .demo-iframe-container {
    min-height: 260px;
    height: 70vw;
  }
  .demo-topbar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .demo-topbar .btn { width: 100%; text-align: center; }
}
