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

:root {
  --c-bg: #0C1913;
  --c-header: #0C1913;
  --c-surface: #112218;
  --c-surface2: #16291f;
  --c-border: #1e3828;
  --c-green: #207B4F;
  --c-green-hover: #27a366;
  --c-btn-sec: #0C1A13;
  --c-btn-sec-hover: #1a2f1e;
  --c-text: #e8f5ee;
  --c-text-muted: #8aad97;
  --c-text-dim: #5a7a66;
  --c-gold: #f0b429;
  --c-gold-dark: #c98c00;
  --c-red: #e84040;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.22s ease;
}

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

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

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

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

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

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

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

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--c-green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(32,123,79,0.35);
}
.btn--primary:hover { background: var(--c-green-hover); box-shadow: 0 6px 24px rgba(32,123,79,0.5); color: #fff; }
.btn--secondary {
  background: var(--c-btn-sec);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn--secondary:hover { background: var(--c-btn-sec-hover); color: var(--c-text); border-color: var(--c-green); }
.btn--gold {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  color: #0C1913;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(240,180,41,0.3);
}
.btn--gold:hover { box-shadow: 0 6px 26px rgba(240,180,41,0.5); filter: brightness(1.08); color: #0C1913; }
.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: 12px; }
.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--block { width: 100%; }

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

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

.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo img {
  height: 42px;
  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: 8px;
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.header-nav a:hover, .header-nav a.is-active {
  background: var(--c-surface);
  color: var(--c-text);
}
.header-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  padding: 5px 10px;
  background: var(--c-surface);
  border-radius: 20px;
  border: 1px solid var(--c-border);
  white-space: nowrap;
}
.online-dot {
  width: 7px;
  height: 7px;
  background: #4cde88;
  border-radius: 50%;
  box-shadow: 0 0 6px #4cde88;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

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

/* ==================== HERO ==================== */
.hero-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/jackpot-jill-banner.png') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(12,25,19,0.92) 40%, rgba(12,25,19,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(32,123,79,0.18);
  border: 1px solid rgba(32,123,79,0.4);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #4cde88;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-badge svg { width: 13px; height: 13px; }
.hero-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-wrap: balance;
}
.hero-title span { color: var(--c-gold); }
.hero-desc {
  font-size: 16px;
  color: var(--c-text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--c-text-dim);
}
.hero-trust svg { width: 14px; height: 14px; }

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

/* ==================== SECTION TITLES ==================== */
.section-wrap { padding: 50px 0; }
.section-title {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.section-subtitle {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
}
.section-head { margin-bottom: 28px; }
.sep {
  width: 48px;
  height: 3px;
  background: var(--c-green);
  border-radius: 2px;
  margin: 10px 0 0;
}

/* ==================== BLOCK CARD ==================== */
.block-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}
.block-card--alt {
  background: var(--c-surface2);
}

/* ==================== TABLE OF CONTENTS ==================== */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.toc-item:hover {
  background: rgba(32,123,79,0.12);
  border-color: var(--c-green);
  color: #fff;
}
.toc-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--c-green); }
.toc-item span { color: var(--c-text-dim); font-size: 11px; margin-left: auto; }

/* ==================== PROS CONS ==================== */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-block, .cons-block {
  border-radius: var(--radius);
  padding: 22px;
}
.pros-block {
  background: rgba(32,123,79,0.08);
  border: 1px solid rgba(32,123,79,0.3);
}
.cons-block {
  background: rgba(232,64,64,0.07);
  border: 1px solid rgba(232,64,64,0.25);
}
.pc-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}
.pc-title svg { width: 18px; height: 18px; }
.pros-block .pc-title { color: #4cde88; }
.cons-block .pc-title { color: var(--c-red); }
.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--c-text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}
.pc-list li:last-child { border-bottom: none; }
.pc-list li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
.pros-block .pc-list li svg { color: #4cde88; }
.cons-block .pc-list li svg { color: var(--c-red); }

/* ==================== MIRRORS TABLE ==================== */
.mirror-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.mirror-time {
  font-size: 13px;
  color: var(--c-text-muted);
  background: var(--c-surface2);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--c-border);
}
.mirror-time strong { color: var(--c-gold); }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(76,222,136,0.12);
  color: #4cde88;
  border: 1px solid rgba(76,222,136,0.3);
}
.status-dot { width: 6px; height: 6px; background: #4cde88; border-radius: 50%; }

.table-wrap { overflow-x: auto; border-radius: var(--radius); }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 540px;
}
.data-table thead tr {
  background: rgba(32,123,79,0.15);
  border-bottom: 2px solid var(--c-green);
}
.data-table th {
  padding: 13px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--c-text);
  font-size: 13px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text-muted);
  vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: rgba(255,255,255,0.025); }
.data-table a { color: var(--c-green); font-weight: 500; }
.data-table a:hover { color: var(--c-green-hover); }

/* ==================== WINNERS ==================== */
.winners-list { display: flex; flex-direction: column; gap: 8px; }
.winner-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.winner-row:hover { background: rgba(32,123,79,0.08); }
.winner-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--c-text-muted);
}
.winner-row:nth-child(1) .winner-rank { background: rgba(240,180,41,0.2); border-color: var(--c-gold); color: var(--c-gold); }
.winner-row:nth-child(2) .winner-rank { background: rgba(192,192,192,0.15); border-color: #aaa; color: #ccc; }
.winner-row:nth-child(3) .winner-rank { background: rgba(176,90,40,0.2); border-color: #b05a28; color: #c87644; }
.winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.winner-info { flex: 1; min-width: 0; }
.winner-name { font-weight: 600; font-size: 14px; color: var(--c-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.winner-game { font-size: 12px; color: var(--c-text-dim); }
.winner-amount { font-weight: 700; font-size: 15px; color: var(--c-gold); white-space: nowrap; margin-left: auto; }

/* ==================== APP INFO ==================== */
.app-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: start;
}
.app-info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.app-info-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
  line-height: 1.5;
}
.app-info-table tr:last-child td { border-bottom: none; }
.app-info-table td:first-child { color: var(--c-text-dim); font-weight: 500; width: 45%; white-space: nowrap; }
.app-info-table td:last-child { color: var(--c-text); }
.app-store-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  transition: border-color var(--transition), background var(--transition);
  font-size: 14px;
}
.app-store-btn:hover { border-color: var(--c-green); background: rgba(32,123,79,0.08); color: var(--c-text); }
.app-store-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.app-store-btn div strong { display: block; font-size: 15px; font-weight: 700; }
.app-store-btn div span { font-size: 12px; color: var(--c-text-muted); }
.app-rating { display: flex; align-items: center; gap: 4px; margin-top: 10px; }
.app-rating svg { width: 14px; height: 14px; color: var(--c-gold); }
.app-rating span { font-size: 13px; color: var(--c-text-muted); }

/* ==================== GAMES SLIDER ==================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.game-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  border-color: rgba(32,123,79,0.5);
}
.game-thumb {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: var(--c-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-thumb img { transform: scale(1.06); }
.game-thumb-icon { font-size: 48px; }
.game-live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(232,64,64,0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-info { padding: 14px; }
.game-name { font-weight: 700; font-size: 14px; color: var(--c-text); margin-bottom: 4px; }
.game-provider { font-size: 12px; color: var(--c-text-dim); margin-bottom: 12px; }

/* ==================== CONTENT BLOCK ==================== */
.content-block { }
.content-block h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #fff;
  margin: 32px 0 12px;
  line-height: 1.3;
}
.content-block h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: var(--c-text);
  margin: 24px 0 10px;
}
.content-block h4 { font-size: 16px; font-weight: 600; color: var(--c-text); margin: 18px 0 8px; }
.content-block p { font-size: 15px; color: var(--c-text-muted); margin-bottom: 14px; line-height: 1.75; }
.content-block ul, .content-block ol {
  margin: 14px 0 14px 20px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.content-block ol { list-style: decimal; }
.content-block li { font-size: 15px; color: var(--c-text-muted); line-height: 1.65; }
.content-block a { color: var(--c-green); text-decoration: underline; text-underline-offset: 2px; }
.content-block a:hover { color: var(--c-green-hover); }
.content-block strong { color: var(--c-text); font-weight: 600; }
.content-block em { color: var(--c-text-muted); font-style: italic; }
.content-block blockquote {
  border-left: 3px solid var(--c-green);
  padding: 12px 18px;
  margin: 20px 0;
  background: rgba(32,123,79,0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--c-text-muted);
  font-style: italic;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.content-block table th {
  background: rgba(32,123,79,0.15);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.content-block table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}
.content-block img { border-radius: var(--radius); margin: 16px 0; }

/* ==================== FAQ ==================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.is-open { border-color: rgba(32,123,79,0.5); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text);
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-item.is-open .faq-q-icon { background: var(--c-green); border-color: var(--c-green); transform: rotate(45deg); }
.faq-q-icon svg { width: 10px; height: 10px; }
.faq-q-text { flex: 1; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--c-border);
  padding-top: 14px;
}
.faq-item.is-open .faq-a { max-height: 400px; }

/* ==================== AUTHOR ==================== */
.author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-green);
  flex-shrink: 0;
  background: var(--c-surface2);
}
.author-name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.author-title { font-size: 13px; color: var(--c-green); font-weight: 500; margin-bottom: 10px; }
.author-bio { font-size: 14px; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 14px; }
.author-meta { font-size: 12px; color: var(--c-text-dim); margin-bottom: 12px; }
.author-meta span { color: var(--c-text-muted); }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  font-size: 13px;
  color: var(--c-text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.author-link:hover { border-color: var(--c-green); color: var(--c-text); }
.author-link svg { width: 14px; height: 14px; }

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}
.footer-top { padding: 48px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-dim);
  margin-bottom: 16px;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 38px; }
.footer-desc { font-size: 13px; color: var(--c-text-dim); line-height: 1.7; margin-bottom: 16px; }
.footer-country {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--c-text-muted);
}
.footer-country img { border-radius: 2px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 14px;
  color: var(--c-text-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--c-text); }
.footer-socials { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-social:hover { background: var(--c-green); color: #fff; border-color: var(--c-green); }
.footer-social svg { width: 16px; height: 16px; }
.footer-logos { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-logo-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-dim);
  letter-spacing: 0.3px;
}
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal { font-size: 12px; color: var(--c-text-dim); line-height: 1.7; max-width: 760px; }
.footer-copy { font-size: 12px; color: var(--c-text-dim); white-space: nowrap; }
.footer-email { font-size: 13px; color: var(--c-text-muted); }
.footer-email a { color: var(--c-green); }


/* ==================== MOBILE MENU ==================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  padding: 0 0 20px;
  transform: translateY(-100%);
  animation: slideDown 0.28s ease forwards;
}
@keyframes slideDown { to { transform: translateY(0); } }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-text);
  font-size: 18px;
}
.mobile-nav { display: flex; flex-direction: column; padding: 12px 20px; gap: 4px; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--c-text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: var(--c-surface); color: var(--c-text); }
.mobile-nav a svg { width: 17px; height: 17px; color: var(--c-green); }
.mobile-btns { display: flex; gap: 10px; padding: 10px 20px 0; }
.mobile-btns .btn { flex: 1; }

/* ==================== GAMES SLIDER MOBILE ==================== */
.games-slider-wrap { position: relative; overflow: hidden; display: none; }
.games-slider { display: flex; gap: 16px; transition: transform 0.35s ease; }
.games-slider .game-card { flex: 0 0 calc(33.333% - 11px); }

/* ==================== CONTACT FORM ==================== */
.contact-form { max-width: 640px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
}
.form-group label span { color: var(--c-red); }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: var(--c-text);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--c-green); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238aad97' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select option { background: var(--c-surface); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--c-green); cursor: pointer; }
.form-check label { font-size: 13px; color: var(--c-text-dim); cursor: pointer; }
.form-success { background: rgba(32,123,79,0.12); border: 1px solid rgba(32,123,79,0.4); border-radius: var(--radius); padding: 14px 18px; font-size: 14px; color: #4cde88; margin-top: 4px; }

/* ==================== MISC ==================== */
.text-gold { color: var(--c-gold); }
.text-green { color: #4cde88; }
.text-muted { color: var(--c-text-muted); }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.text-sm { font-size: 13px; }

/* ==================== INFO PAGES ==================== */
.info-page-content {
  padding: 40px 0 60px;
}
.info-page-content h2 { font-size: 22px; font-weight: 700; color: #fff; margin: 28px 0 10px; }
.info-page-content h3 { font-size: 18px; font-weight: 600; color: var(--c-text); margin: 20px 0 8px; }
.info-page-content p { font-size: 15px; color: var(--c-text-muted); margin-bottom: 14px; line-height: 1.75; }
.info-page-content ul, .info-page-content ol { margin: 12px 0 12px 20px; display: flex; flex-direction: column; gap: 6px; }
.info-page-content ul { list-style: disc; }
.info-page-content ol { list-style: decimal; }
.info-page-content li { font-size: 15px; color: var(--c-text-muted); line-height: 1.65; }
.info-page-content a { color: var(--c-green); text-decoration: underline; text-underline-offset: 2px; }
.info-page-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.info-page-content table th { background: rgba(32,123,79,0.15); padding: 10px 14px; text-align: left; font-weight: 600; color: var(--c-text); border: 1px solid var(--c-border); }
.info-page-content table td { padding: 10px 14px; border: 1px solid var(--c-border); color: var(--c-text-muted); }
.info-page-content strong { color: var(--c-text); font-weight: 600; }

/* ==================== ANIMATIONS ==================== */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; -webkit-transform: translateY(18px); -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease; will-change: opacity, transform; }
.fade-in.is-visible { opacity: 1; transform: none; -webkit-transform: none; }

/* ==================== HIDDEN WP DECOYS (unused, layout-neutral) ==================== */
.wp-block-group { display: contents; }
.wp-block-columns { display: contents; }
.elementor-section { display: contents; }
.e-container { display: contents; }
.woocommerce { display: contents; }
.entry-content { display: contents; }
.post-thumbnail { display: contents; }
.site-branding { display: contents; }

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

@media (max-width: 768px) {
  .header-nav { display: none; }
  .online-count { display: none; }
  .header-actions .btn { display: none; }
  .burger { display: flex; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .games-grid { display: none; }
  .games-slider-wrap { display: block; }
  .games-slider .game-card { flex: 0 0 calc(80vw - 40px); max-width: 280px; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-links { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .sticky-widget-inner { flex-wrap: wrap; }
  .hero-section { min-height: 420px; }
}

@media (max-width: 480px) {
  .toc-grid { grid-template-columns: 1fr; }
  .block-card { padding: 18px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; }
}

/* ==================== UNUSED DECOY STYLES ==================== */
.x7k2m9 { display: none; visibility: hidden; }
.q3r8t1 { pointer-events: none; position: absolute; width: 0; height: 0; overflow: hidden; }
.wp-caption { display: none; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
.wpcf7 { display: none; }
.gallery-caption { display: none; }
.bypostauthor { background: transparent; }
.alignleft { float: left; }
.alignright { float: right; }
.aligncenter { margin: auto; }
.size-auto { max-width: 100%; }
.sticky { position: relative; }
.p5j9n2q { color: transparent; font-size: 0; }
.m3k7x4 { background: transparent; border: none; outline: none; }
