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

:root {
  --clr-hdr: #1A1C24;
  --clr-bg: #242630;
  --clr-bg2: #1e2029;
  --clr-card: #2c2e3d;
  --clr-primary: #00CC5F;
  --clr-secondary: #3D404C;
  --clr-text: #e8eaf0;
  --clr-muted: #9095a8;
  --clr-border: #32354a;
  --clr-white: #ffffff;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.28s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.32);
}

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

html { scroll-behavior: smooth; font-size: 16px; background: var(--clr-bg2); }
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #00e66b; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: 8px; font-weight: 700; font-size: 0.875rem; letter-spacing: 0.4px;
  padding: 10px 22px; transition: all var(--transition); cursor: pointer;
  text-decoration: none !important; white-space: nowrap; border: 2px solid transparent;
}
.btn--primary {
  background: var(--clr-primary); color: #0a2010;
  box-shadow: 0 0 18px rgba(0,204,95,0.35);
}
.btn--primary:hover {
  background: #00e66b; color: #0a2010;
  box-shadow: 0 0 28px rgba(0,204,95,0.55); transform: translateY(-1px);
}
.btn--secondary { background: var(--clr-secondary); color: var(--clr-text); }
.btn--secondary:hover { background: #4a4e5e; color: var(--clr-white); transform: translateY(-1px); }
.btn--outline {
  background: transparent; color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn--outline:hover { background: var(--clr-primary); color: #0a2010; }
.btn--lg { padding: 14px 34px; font-size: 1rem; border-radius: 10px; }
.btn--sm { padding: 7px 16px; font-size: 0.8rem; }

/* ===== HEADER ===== */
.site-header {
  background: var(--clr-hdr);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 12px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 44px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  display: flex; align-items: center; gap: 6px;
  color: var(--clr-text); font-size: 0.82rem; font-weight: 600;
  padding: 7px 11px; border-radius: 7px;
  transition: background var(--transition), color var(--transition);
}
.header-nav a:hover, .header-nav a.active { background: rgba(255,255,255,0.07); color: var(--clr-primary); }
.header-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.online-count {
  display: flex; align-items: center; gap: 5px;
  background: rgba(0,204,95,0.1); border: 1px solid rgba(0,204,95,0.25);
  border-radius: 20px; padding: 5px 11px; font-size: 0.75rem; font-weight: 600; color: var(--clr-primary);
}
.online-count::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--clr-primary); animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,204,95,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(0,204,95,0); }
}
.burger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
  cursor: pointer; background: none; border: none;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: all var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav-actions { display: none; }

/* ===== HERO ===== */
.hero-block {
  position: relative; overflow: hidden;
  min-height: 420px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--clr-hdr);
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,28,36,0.92) 40%, rgba(26,28,36,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 64px 0 56px;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,204,95,0.15); border: 1px solid rgba(0,204,95,0.35);
  border-radius: 20px; padding: 5px 14px; font-size: 0.78rem; font-weight: 700;
  color: var(--clr-primary); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.8px;
}
.hero-content h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2;
  color: var(--clr-white); margin-bottom: 14px; text-wrap: balance;
}
.hero-content h1 span { color: var(--clr-primary); }
.hero-content p { font-size: 1rem; color: var(--clr-muted); margin-bottom: 28px; line-height: 1.65; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--clr-primary); }
.hero-stat span { font-size: 0.75rem; color: var(--clr-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs-block {
  background: var(--clr-hdr); border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
}
.breadcrumbs {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--clr-muted); flex-wrap: wrap;
}
.breadcrumbs a { color: var(--clr-muted); font-weight: 500; }
.breadcrumbs a:hover { color: var(--clr-primary); }
.breadcrumbs .sep { color: var(--clr-border); }
.breadcrumbs .current { color: var(--clr-text); font-weight: 600; }

/* ===== SECTIONS ===== */
.section { padding: 52px 0; }
.section-title {
  font-size: clamp(1.25rem, 3vw, 1.7rem); font-weight: 800; color: var(--clr-white);
  margin-bottom: 8px; text-wrap: balance;
}
.section-sub { font-size: 0.9rem; color: var(--clr-muted); margin-bottom: 32px; }
.section-title span { color: var(--clr-primary); }

/* ===== TABLE OF CONTENTS ===== */
.toc-block {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 40px;
}
.toc-block h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 18px; color: var(--clr-white); }
.toc-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.toc-list li a {
  display: flex; align-items: center; gap: 9px;
  color: var(--clr-muted); font-size: 0.875rem; font-weight: 500;
  padding: 8px 10px; border-radius: 7px;
  transition: all var(--transition); border: 1px solid transparent;
}
.toc-list li a:hover {
  background: rgba(0,204,95,0.08); color: var(--clr-primary);
  border-color: rgba(0,204,95,0.2);
}
.toc-list li a svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--clr-primary); }
.toc-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--clr-secondary); font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
  color: var(--clr-text);
}

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.feature-card {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius); padding: 22px 18px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column; gap: 10px;
}
.feature-card:hover {
  transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  border-color: rgba(0,204,95,0.3);
}
.feature-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(0,204,95,0.12); display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 24px; height: 24px; color: var(--clr-primary); }
.feature-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--clr-white); }
.feature-card p { font-size: 0.8rem; color: var(--clr-muted); line-height: 1.55; }

/* ===== APP INFO ===== */
.app-info-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start;
}
.app-table-wrap { overflow-x: auto; }
.app-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius); overflow: hidden;
}
.app-table th, .app-table td {
  text-align: left; padding: 12px 16px;
  border-bottom: 1px solid var(--clr-border); font-size: 0.875rem;
}
.app-table th { background: var(--clr-hdr); color: var(--clr-muted); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; }
.app-table td { background: var(--clr-card); color: var(--clr-text); }
.app-table td:first-child { color: var(--clr-muted); font-weight: 600; width: 44%; }
.app-table tr:last-child td { border-bottom: none; }
.app-dl-box { display: flex; flex-direction: column; gap: 14px; }
.app-dl-box h3 { font-size: 1rem; font-weight: 700; color: var(--clr-white); margin-bottom: 6px; }
.dl-btn {
  display: flex; align-items: center; gap: 14px;
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius); padding: 14px 18px;
  transition: all var(--transition); text-decoration: none;
}
.dl-btn:hover { border-color: var(--clr-primary); box-shadow: 0 0 18px rgba(0,204,95,0.18); transform: translateY(-1px); }
.dl-btn-icon { width: 36px; height: 36px; flex-shrink: 0; }
.dl-btn-icon svg { width: 36px; height: 36px; }
.dl-btn-text strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--clr-white); }
.dl-btn-text span { font-size: 0.75rem; color: var(--clr-muted); }

/* ===== GAMES ===== */
.games-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.game-card {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.game-card-thumb { position: relative; overflow: hidden; aspect-ratio: 1; }
.game-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.game-card:hover .game-card-thumb img { transform: scale(1.05); }
.game-card-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--clr-primary); color: #0a2010;
  font-size: 0.7rem; font-weight: 800; padding: 3px 9px; border-radius: 4px;
  text-transform: uppercase;
}
.game-card-body { padding: 14px; }
.game-card-body h3 { font-size: 0.9rem; font-weight: 700; color: var(--clr-white); margin-bottom: 6px; }
.game-card-body p { font-size: 0.75rem; color: var(--clr-muted); margin-bottom: 12px; }
.games-slider-container { position: relative; }
.games-slider-nav {
  display: none; justify-content: center; gap: 8px; margin-top: 18px;
}
@media (max-width: 767px) {
  .games-slider-nav { display: flex; }
}
.slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clr-border); border: none; cursor: pointer; transition: all var(--transition);
}
.slide-dot.active { background: var(--clr-primary); width: 20px; border-radius: 4px; }

/* ===== WHEEL OF FORTUNE ===== */
.wheel-section {
  background: var(--clr-hdr); border-radius: var(--radius-lg);
  padding: 48px 32px; text-align: center;
}
.wheel-wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.wheel-canvas-wrap { position: relative; width: 280px; height: 280px; }
#wheel-canvas { border-radius: 50%; display: block; }
.wheel-pointer {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 12px solid transparent; border-right: 12px solid transparent;
  border-top: 28px solid var(--clr-primary);
  filter: drop-shadow(0 2px 6px rgba(0,204,95,0.5));
}
.wheel-result {
  display: none; background: rgba(0,204,95,0.1); border: 2px solid var(--clr-primary);
  border-radius: var(--radius); padding: 20px 28px; text-align: center;
  animation: fadeInUp 0.5s ease;
}
.wheel-result.show { display: block; }
.wheel-result h3 { font-size: 1.3rem; font-weight: 800; color: var(--clr-primary); margin-bottom: 8px; }
.wheel-result p { font-size: 0.9rem; color: var(--clr-text); margin-bottom: 16px; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ===== CONTENT BLOCK ===== */
.content-block {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: 36px 40px;
}
.content-text h2 { font-size: 1.35rem; font-weight: 800; color: var(--clr-white); margin: 28px 0 12px; line-height: 1.3; }
.content-text h3 { font-size: 1.1rem; font-weight: 700; color: var(--clr-white); margin: 22px 0 10px; }
.content-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--clr-primary); margin: 16px 0 8px; }
.content-text p { margin-bottom: 14px; line-height: 1.75; color: var(--clr-text); font-size: 0.9rem; }
.content-text ul, .content-text ol { margin: 12px 0 16px 20px; }
.content-text ul { list-style: disc; }
.content-text ol { list-style: decimal; }
.content-text li { margin-bottom: 8px; line-height: 1.65; font-size: 0.9rem; color: var(--clr-text); }
.content-text a { color: var(--clr-primary); text-decoration: underline; }
.content-text a:hover { color: #00e66b; }
.content-text strong, .content-text b { color: var(--clr-white); font-weight: 700; }
.content-text em, .content-text i { color: var(--clr-muted); }
.content-text blockquote {
  border-left: 4px solid var(--clr-primary); padding: 14px 18px;
  background: rgba(0,204,95,0.07); border-radius: 0 8px 8px 0; margin: 16px 0;
  font-style: italic; color: var(--clr-muted);
}
.content-text table { width: 100%; border-collapse: collapse; margin: 16px 0; overflow-x: auto; display: block; }
.content-text table th, .content-text table td {
  text-align: left; padding: 10px 14px; border: 1px solid var(--clr-border); font-size: 0.875rem;
}
.content-text table th { background: var(--clr-hdr); color: var(--clr-muted); font-weight: 700; }
.content-text table td { background: var(--clr-bg2); color: var(--clr-text); }
.content-text img { border-radius: 8px; margin: 12px 0; }
.content-text hr { border: none; border-top: 1px solid var(--clr-border); margin: 24px 0; }
.content-text code {
  background: var(--clr-hdr); padding: 2px 7px; border-radius: 4px;
  font-size: 0.85em; color: var(--clr-primary); font-family: monospace;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(0,204,95,0.3); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 22px; cursor: pointer;
  font-size: 0.92rem; font-weight: 700; color: var(--clr-white);
  user-select: none;
}
.faq-q:hover { color: var(--clr-primary); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--clr-secondary); display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--clr-primary); }
.faq-icon svg { width: 14px; height: 14px; color: var(--clr-text); }
.faq-item.open .faq-icon svg { color: #0a2010; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s ease, padding var(--transition);
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }
.faq-a p { font-size: 0.875rem; color: var(--clr-muted); line-height: 1.7; }
.faq-a a { color: var(--clr-primary); }

/* ===== AUTHOR ===== */
.author-block {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: 32px 36px;
  display: flex; gap: 28px; align-items: flex-start;
}
.author-photo {
  width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; border: 3px solid var(--clr-primary);
}
.author-info h3 { font-size: 1.05rem; font-weight: 800; color: var(--clr-white); margin-bottom: 4px; }
.author-role { font-size: 0.8rem; color: var(--clr-primary); font-weight: 600; margin-bottom: 10px; }
.author-bio { font-size: 0.85rem; color: var(--clr-muted); line-height: 1.65; margin-bottom: 14px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.author-links a {
  display: flex; align-items: center; gap: 5px;
  background: var(--clr-secondary); color: var(--clr-text);
  border-radius: 6px; padding: 6px 12px; font-size: 0.78rem; font-weight: 600;
  transition: all var(--transition);
}
.author-links a:hover { background: var(--clr-primary); color: #0a2010; }
.author-links a svg { width: 14px; height: 14px; }
.author-dates { font-size: 0.75rem; color: var(--clr-muted); }
.author-dates span { color: var(--clr-text); font-weight: 600; }

/* ===== FOOTER ===== */
.site-footer { background: var(--clr-hdr); border-top: 1px solid var(--clr-border); margin-top: auto; }
.footer-top { padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 36px; }
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.8rem; color: var(--clr-muted); line-height: 1.65; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: var(--clr-white); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: 0.8rem; color: var(--clr-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--clr-primary); }
.footer-divider { border: none; border-top: 1px solid var(--clr-border); margin: 0; }
.footer-logos { padding: 24px 0; display: flex; flex-direction: column; gap: 20px; }
.logos-row { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.logos-row-label { font-size: 0.72rem; color: var(--clr-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; min-width: 90px; }
.logo-badge {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: 6px; padding: 6px 12px; font-size: 0.72rem; font-weight: 700;
  color: var(--clr-muted); white-space: nowrap;
}
.logo-badge.trust { color: var(--clr-primary); border-color: rgba(0,204,95,0.25); }
.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-flag { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--clr-muted); }
.footer-flag img { width: 24px; height: 16px; object-fit: cover; border-radius: 2px; }
.footer-legal { font-size: 0.72rem; color: var(--clr-muted); line-height: 1.6; max-width: 640px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--clr-card); border: 1px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--clr-primary); border-color: var(--clr-primary); }
.footer-social a svg { width: 16px; height: 16px; color: var(--clr-muted); }
.footer-social a:hover svg { color: #0a2010; }

/* ===== STICKY WIDGET ===== */
.sticky-widget {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--clr-hdr); border-top: 2px solid var(--clr-primary);
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transform: translateY(100%); animation: slideUp 0.6s 1.2s ease forwards;
}
@keyframes slideUp { to { transform: translateY(0); } }
.widget-close {
  position: absolute; right: 10px; top: -32px;
  background: var(--clr-hdr); border: 1px solid var(--clr-border);
  border-radius: 6px 6px 0 0; padding: 4px 10px; font-size: 0.72rem;
  color: var(--clr-muted); cursor: pointer;
}
.widget-close:hover { color: var(--clr-text); }
.widget-text { display: flex; flex-direction: column; }
.widget-text strong { font-size: 0.85rem; font-weight: 800; color: var(--clr-white); }
.widget-text span { font-size: 0.75rem; color: var(--clr-primary); font-weight: 600; }
.widget-bonus {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,204,95,0.1); border: 1px solid rgba(0,204,95,0.35);
  border-radius: 7px; padding: 6px 14px; font-size: 0.82rem; font-weight: 700; color: var(--clr-primary);
}
.sticky-widget .btn { flex-shrink: 0; }

/* ===== ANIMATIONS ===== */
.fade-in { animation: fadeIn 0.6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.section-inner { animation: fadeIn 0.5s ease both; }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .app-info-wrap { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-nav {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--clr-hdr); border-top: 1px solid var(--clr-border);
    padding: 14px; gap: 4px; z-index: 998;
  }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 10px 14px; font-size: 0.9rem; }
  .mobile-nav-actions { display: flex; gap: 8px; padding: 10px 14px; border-top: 1px solid var(--clr-border); }
  .burger { display: flex; }
  .header-actions .header-nav-actions { display: none; }
  .online-count { display: none; }
  .games-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .author-block { flex-direction: column; }
  .content-block { padding: 22px 18px; }
  .toc-block { padding: 20px 18px; }
  .toc-list { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sticky-widget .widget-bonus { display: none; }
  .hero-content { padding: 44px 0 40px; }
  .wheel-canvas-wrap { width: 240px; height: 240px; }
  #wheel-canvas { width: 240px; height: 240px; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.5rem; }
  .section { padding: 36px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== UNUSED UNIQUALIZATION ===== */
.wpc-b4f3 { display: none; visibility: hidden; }
.entry-content { }
.wp-block-group { }
.elementor-section { }
.post-thumbnail { }
.site-main { }
.x7q2m9 { pointer-events: none; position: absolute; width: 0; height: 0; }
.kv9p1r { font-size: inherit; color: inherit; }
.tz4w8s { }
