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

:root {
  --c-bg: #242630;
  --c-header: #1A1C24;
  --c-btn-primary: #00CC5F;
  --c-btn-secondary: #3D404C;
  --c-text: #E8EAF0;
  --c-text-muted: #9DA3B4;
  --c-text-dark: #1A1C24;
  --c-border: #2E3040;
  --c-card: #1E2030;
  --c-card-alt: #20222E;
  --c-accent: #00CC5F;
  --c-accent-hover: #00B354;
  --c-gold: #F0C040;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.32);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.28);
  --transition: 0.22s ease;
  --font-main: 'Montserrat', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; background: var(--c-bg); }

body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-accent-hover); }

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

ul, ol { padding-left: 1.4em; }

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

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

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

/* ===== HEADER ===== */
.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--c-border);
}

.xq7k2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  min-height: 66px;
}

.xq7k2-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.xq7k2-logo img { height: 40px; width: auto; }

.xq7k2-nav { display: flex; align-items: center; gap: 4px; }

.xq7k2-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.xq7k2-nav a svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.8; }
.xq7k2-nav a:hover { background: rgba(255,255,255,0.07); color: var(--c-accent); }
.xq7k2-nav a:hover svg { opacity: 1; }

.xq7k2-header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.xq7k2-online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  white-space: nowrap;
  background: rgba(0,204,95,0.08);
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0,204,95,0.18);
}

.xq7k2-online-dot {
  width: 7px; height: 7px;
  background: var(--c-accent);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  letter-spacing: 0.03em;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--c-btn-primary);
  color: #fff;
  box-shadow: 0 3px 12px rgba(0,204,95,0.3);
}
.btn--primary:hover { background: var(--c-accent-hover); color: #fff; box-shadow: 0 5px 18px rgba(0,204,95,0.42); }

.btn--secondary {
  background: var(--c-btn-secondary);
  color: var(--c-text);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn--secondary:hover { background: #4A4E5E; color: #fff; }

.btn--lg { font-size: 15px; padding: 13px 28px; border-radius: 10px; }
.btn--sm { font-size: 12px; padding: 6px 14px; }

/* ===== BURGER ===== */
.xq7k2-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: var(--c-btn-secondary);
  border: none;
  flex-shrink: 0;
}

.xq7k2-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.xq7k2-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.xq7k2-burger.active span:nth-child(2) { opacity: 0; }
.xq7k2-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.xq7k2-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
}

.xq7k2-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/hero-banner.png') center/cover no-repeat;
  z-index: 0;
}

.xq7k2-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,28,36,0.92) 40%, rgba(26,28,36,0.5) 80%, transparent 100%);
}

.xq7k2-hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 60px 0;
}

.xq7k2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,204,95,0.12);
  border: 1px solid rgba(0,204,95,0.35);
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.xq7k2-hero h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.xq7k2-hero h1 em { font-style: normal; color: var(--c-accent); }

.xq7k2-hero-desc {
  font-size: 15px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.xq7k2-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.xq7k2-hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.xq7k2-hero-stat { text-align: center; }
.xq7k2-hero-stat strong { display: block; font-size: 22px; font-weight: 800; color: #fff; }
.xq7k2-hero-stat span { font-size: 11px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== BREADCRUMBS ===== */
.xq7k2-breadcrumbs {
  background: var(--c-card);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}

.xq7k2-breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--c-text-muted);
}

.xq7k2-breadcrumbs-inner a { color: var(--c-text-muted); }
.xq7k2-breadcrumbs-inner a:hover { color: var(--c-accent); }

.xq7k2-breadcrumbs-inner span.sep { opacity: 0.4; }
.xq7k2-breadcrumbs-inner span.current { color: var(--c-text); }

/* ===== SECTION COMMON ===== */
.xq7k2-section { padding: 56px 0; }
.xq7k2-section + .xq7k2-section { padding-top: 0; }

.xq7k2-section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.xq7k2-section-sub {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
  max-width: 560px;
}

/* ===== TABLE OF CONTENTS ===== */
.xq7k2-toc {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 40px;
}

.xq7k2-toc-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.xq7k2-toc-title svg { color: var(--c-accent); }

.xq7k2-toc-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
  list-style: none;
  padding: 0;
}

.xq7k2-toc-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.xq7k2-toc-list li a svg { width: 14px; height: 14px; color: var(--c-accent); flex-shrink: 0; }
.xq7k2-toc-list li a:hover { background: rgba(0,204,95,0.08); color: var(--c-accent); }
.xq7k2-toc-list li a .toc-num {
  background: rgba(0,204,95,0.1);
  color: var(--c-accent);
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== FEATURES ===== */
.xq7k2-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.xq7k2-feature-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-align: center;
}

.xq7k2-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,204,95,0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.xq7k2-feature-icon {
  width: 52px; height: 52px;
  background: rgba(0,204,95,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--c-accent);
}

.xq7k2-feature-icon svg { width: 26px; height: 26px; }

.xq7k2-feature-card h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.xq7k2-feature-card p { font-size: 12px; color: var(--c-text-muted); line-height: 1.55; }

/* ===== BONUSES ===== */
.xq7k2-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.xq7k2-slider-track-el { display: contents; }

.xq7k2-bonus-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.xq7k2-bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.xq7k2-bonus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }

.xq7k2-bonus-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0,204,95,0.12);
  color: var(--c-accent);
  border: 1px solid rgba(0,204,95,0.25);
  margin-bottom: 14px;
}

.xq7k2-bonus-amount {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.xq7k2-bonus-amount small { font-size: 15px; font-weight: 600; color: var(--c-text-muted); }

.xq7k2-bonus-card h3 { font-size: 15px; font-weight: 700; color: var(--c-text); margin-bottom: 10px; }
.xq7k2-bonus-card p { font-size: 13px; color: var(--c-text-muted); line-height: 1.55; margin-bottom: 18px; }
.xq7k2-bonus-card .btn { width: 100%; }

/* ===== GAMES ===== */
.xq7k2-games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.xq7k2-game-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
  cursor: pointer;
}

.xq7k2-game-card:hover { transform: translateY(-3px); border-color: rgba(0,204,95,0.4); }

.xq7k2-game-thumb {
  width: 100%;
  aspect-ratio: 3/2;
  background: var(--c-card-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
  overflow: hidden;
}

.xq7k2-game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,204,95,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.xq7k2-game-card:hover .xq7k2-game-overlay { opacity: 1; }

.xq7k2-game-overlay a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(0,0,0,0.3);
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.xq7k2-game-card-body { padding: 10px 8px; }
.xq7k2-game-card-body h4 { font-size: 12px; font-weight: 700; color: var(--c-text); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xq7k2-game-card-body span { font-size: 10px; color: var(--c-text-muted); }

.xq7k2-game-emoji { font-size: 36px; line-height: 1; }

/* ===== SLOT MINI GAME ===== */
.xq7k2-slot-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.xq7k2-slot-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.xq7k2-slot-sub { font-size: 13px; color: var(--c-text-muted); margin-bottom: 28px; }

.xq7k2-reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.xq7k2-reel {
  width: 80px;
  height: 90px;
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s;
}

.xq7k2-reel.spin { border-color: var(--c-accent); animation: reel-spin 0.5s ease infinite; }

@keyframes reel-spin {
  0% { transform: scaleY(1); }
  50% { transform: scaleY(0.92); }
  100% { transform: scaleY(1); }
}

.xq7k2-reel.win { border-color: var(--c-accent); box-shadow: 0 0 16px rgba(0,204,95,0.35); }

.xq7k2-slot-result {
  min-height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.xq7k2-slot-win-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-accent);
  animation: fadeInUp 0.4s ease;
}

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

.xq7k2-slot-lose-text { font-size: 14px; color: var(--c-text-muted); }

/* ===== CONTENT BLOCK ===== */
.xq7k2-content-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  line-height: 1.75;
}

.xq7k2-content-block h2 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: #fff;
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
}

.xq7k2-content-block h2:first-child { margin-top: 0; }

.xq7k2-content-block h3 {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  color: var(--c-text);
  margin: 20px 0 8px;
}

.xq7k2-content-block h4 { font-size: 15px; font-weight: 700; color: var(--c-text); margin: 16px 0 6px; }

.xq7k2-content-block p { margin-bottom: 14px; color: var(--c-text); font-size: 15px; }

.xq7k2-content-block ul, .xq7k2-content-block ol {
  margin: 10px 0 16px 1.5em;
  color: var(--c-text);
  font-size: 15px;
}

.xq7k2-content-block li { margin-bottom: 5px; }

.xq7k2-content-block a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 2px; }

.xq7k2-content-block strong { color: #fff; font-weight: 700; }

.xq7k2-content-block em { color: var(--c-text-muted); font-style: italic; }

.xq7k2-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.xq7k2-content-block table th {
  background: rgba(0,204,95,0.1);
  color: var(--c-accent);
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  white-space: nowrap;
}

.xq7k2-content-block table td {
  padding: 9px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  vertical-align: top;
}

.xq7k2-content-block table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }

.xq7k2-content-block blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 12px 18px;
  margin: 16px 0;
  background: rgba(0,204,95,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.xq7k2-content-block hr { border: none; border-top: 1px solid var(--c-border); margin: 24px 0; }

.xq7k2-content-block img { border-radius: var(--radius-sm); max-width: 100%; margin: 12px 0; }

/* ===== AUTHOR ===== */
.xq7k2-author-box {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 24px;
}

.xq7k2-author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--c-accent);
  object-fit: cover;
  flex-shrink: 0;
}

.xq7k2-author-info h4 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.xq7k2-author-info .xq7k2-author-role {
  font-size: 12px;
  color: var(--c-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.xq7k2-author-info p { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 12px; }

.xq7k2-author-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}

.xq7k2-author-meta span { display: flex; align-items: center; gap: 5px; }

.xq7k2-author-links { display: flex; gap: 8px; }

.xq7k2-author-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--c-text-muted);
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  transition: border-color var(--transition), color var(--transition);
}

.xq7k2-author-links a:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}

.xq7k2-footer-top { padding: 48px 0 32px; }

.xq7k2-footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 32px;
}

.xq7k2-footer-brand .xq7k2-logo img { height: 36px; margin-bottom: 12px; }
.xq7k2-footer-brand p { font-size: 13px; color: var(--c-text-muted); line-height: 1.65; margin-bottom: 14px; }

.xq7k2-footer-country { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--c-text-muted); margin-bottom: 12px; }

.xq7k2-footer-socials { display: flex; gap: 8px; }

.xq7k2-footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.xq7k2-footer-socials a:hover { border-color: var(--c-accent); color: var(--c-accent); background: rgba(0,204,95,0.08); }
.xq7k2-footer-socials a svg { width: 16px; height: 16px; }

.xq7k2-footer-col h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--c-text-muted); margin-bottom: 14px; }

.xq7k2-footer-col ul { list-style: none; padding: 0; }

.xq7k2-footer-col ul li { margin-bottom: 8px; }

.xq7k2-footer-col ul li a { color: var(--c-text-muted); font-size: 13px; transition: color var(--transition); }
.xq7k2-footer-col ul li a:hover { color: var(--c-accent); }

.xq7k2-footer-divider { border: none; border-top: 1px solid var(--c-border); }

.xq7k2-footer-logos { padding: 24px 0; }

.xq7k2-footer-logos-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.xq7k2-footer-logos-row span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--c-text-muted);
  letter-spacing: 0.06em;
  margin-right: 6px;
  white-space: nowrap;
}

.xq7k2-logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: border-color var(--transition);
  white-space: nowrap;
}

.xq7k2-logo-chip:hover { border-color: rgba(255,255,255,0.2); color: var(--c-text); }
.xq7k2-logo-chip svg { width: 13px; height: 13px; }

.xq7k2-footer-bottom { padding: 18px 0; }

.xq7k2-footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.xq7k2-copyright { font-size: 12px; color: var(--c-text-muted); line-height: 1.6; max-width: 680px; }
.xq7k2-copyright strong { color: var(--c-text); }

.xq7k2-footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.xq7k2-footer-links a { font-size: 12px; color: var(--c-text-muted); }
.xq7k2-footer-links a:hover { color: var(--c-accent); }

/* ===== STICKY WIDGET ===== */
.xq7k2-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--c-header);
  border-top: 2px solid var(--c-accent);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}

.xq7k2-widget-text { font-size: 14px; color: var(--c-text); font-weight: 600; }
.xq7k2-widget-text strong { color: var(--c-accent); }

.xq7k2-widget-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  font-size: 18px;
  transition: color var(--transition);
}

.xq7k2-widget-close:hover { color: var(--c-text); }

/* ===== MOBILE NAV OVERLAY ===== */
.xq7k2-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 66px;
  background: var(--c-header);
  z-index: 900;
  flex-direction: column;
  padding: 20px 18px;
  overflow-y: auto;
  border-top: 1px solid var(--c-border);
  animation: slideDown 0.22s ease;
}

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

.xq7k2-mobile-nav.open { display: flex; }

.xq7k2-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 12px;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--transition);
}

.xq7k2-mobile-nav a svg { width: 18px; height: 18px; color: var(--c-accent); }
.xq7k2-mobile-nav a:hover { color: var(--c-accent); }

.xq7k2-mobile-nav-actions { display: flex; gap: 10px; margin-top: 18px; }
.xq7k2-mobile-nav-actions .btn { flex: 1; justify-content: center; }

/* ===== INFO PAGE CONTENT ===== */
.xq7k2-info-content { padding: 40px 0 60px; }

/* ===== SLIDER (mobile) ===== */
.xq7k2-slider { overflow: hidden; position: relative; }
.xq7k2-slider-track { display: flex; transition: transform 0.35s ease; }
.xq7k2-slider-dots { display: none; justify-content: center; gap: 6px; margin-top: 14px; }
.xq7k2-slider-dot { width: 8px; height: 8px; background: var(--c-border); border-radius: 50%; border: none; cursor: pointer; transition: background var(--transition); padding: 0; }
.xq7k2-slider-dot.active { background: var(--c-accent); }

/* ===== FAQ ===== */
.xq7k2-faq { margin-top: 32px; }

.xq7k2-faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.xq7k2-faq-item:hover { border-color: rgba(0,204,95,0.3); }

.xq7k2-faq-q {
  width: 100%;
  background: var(--c-card);
  border: none;
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: background var(--transition);
}

.xq7k2-faq-q:hover { background: rgba(255,255,255,0.04); }
.xq7k2-faq-q svg { flex-shrink: 0; transition: transform var(--transition); color: var(--c-accent); }
.xq7k2-faq-item.open .xq7k2-faq-q svg { transform: rotate(180deg); }

.xq7k2-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--c-bg);
}

.xq7k2-faq-item.open .xq7k2-faq-a { max-height: 400px; }

.xq7k2-faq-a-inner { padding: 14px 20px 18px; font-size: 14px; color: var(--c-text-muted); line-height: 1.65; }

/* ===== MISC WP ARTEFACTS (hidden) ===== */
.wp-caption, .wp-caption-text, .gallery-caption, .bypostauthor, .sticky-post { display: none !important; }
#wpadminbar { display: none !important; }
.elementor-hidden, .elementor-hidden-phone { display: none !important; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

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

@media (max-width: 768px) {
  .xq7k2-nav { display: none; }
  .xq7k2-burger { display: flex; }
  .xq7k2-online-count { display: none; }
  .xq7k2-header-right .btn { display: none; }

  .xq7k2-hero { min-height: 360px; }
  .xq7k2-hero-content { padding: 36px 0; }

  .xq7k2-bonuses-grid, .xq7k2-games-grid {
    display: block;
    overflow: hidden;
  }
  .xq7k2-slider-track-el {
    display: flex;
    transition: transform 0.35s ease;
  }
  .xq7k2-bonuses-grid .xq7k2-bonus-card,
  .xq7k2-games-grid .xq7k2-game-card {
    flex: 0 0 100%;
    width: 100%;
  }

  .xq7k2-slider-dots { display: flex; }

  .xq7k2-footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .xq7k2-footer-brand { grid-column: 1 / -1; }

  .xq7k2-author-box { flex-direction: column; padding: 20px; }
  .xq7k2-author-avatar { width: 64px; height: 64px; }

  .xq7k2-toc-list { grid-template-columns: 1fr 1fr; }

  .xq7k2-content-block { padding: 22px 18px; }

  .xq7k2-widget { gap: 8px; }
  .xq7k2-widget-text { font-size: 12px; }

  .xq7k2-reel { width: 64px; height: 72px; font-size: 34px; }

  body { padding-bottom: 60px; }

  .xq7k2-footer-bottom-inner { flex-direction: column; }

  .xq7k2-slot-wrap { padding: 24px 16px; }
}

@media (max-width: 480px) {
  .xq7k2-footer-grid { grid-template-columns: 1fr; }
  .xq7k2-toc-list { grid-template-columns: 1fr; }
  .xq7k2-features-grid { grid-template-columns: repeat(2, 1fr); }
  .xq7k2-hero-stats { gap: 14px; }
  .xq7k2-hero-stat strong { font-size: 18px; }
  .xq7k2-footer-logos-row { gap: 6px; }
}

/* ===== TRANSITIONS & ANIMATIONS ===== */
.fade-in { animation: fadeIn 0.5s ease both; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.xq7k2-section { animation: fadeIn 0.5s ease both; }

/* ===== UNUSED STYLES (uniqualization) ===== */
.zr9m4-unused-block { display: none; color: #f2f2f2; background: transparent; }
.aq2x7-phantom { visibility: hidden; pointer-events: none; position: absolute; top: -9999px; }
.nk8j3-shadow-layer { opacity: 0; z-index: -1; }
.vb5p1-hidden-row td { padding: 0; line-height: 0; font-size: 0; }
.wp-block-image { display: none; }
.has-vivid-green-cyan-color { color: transparent; }
.entry-meta-placeholder { font-size: 0; line-height: 0; overflow: hidden; max-height: 0; }
