:root {
  --clr-black: #000000;
  --clr-bg: #323234;
  --clr-bg-alt: #27272a;
  --clr-bg-card: #3a3a3c;
  --clr-teal: #00fbc8;
  --clr-teal-dark: #00d4a8;
  --clr-red: #ff2e09;
  --clr-red-dark: #d92500;
  --clr-text: #e8e8ec;
  --clr-text-muted: #a0a0a8;
  --clr-border: #4a4a50;
  --clr-border-light: rgba(0,251,200,0.15);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-teal: 0 0 20px rgba(0,251,200,0.18);
  --transition: 0.25s ease;
  --font: 'PT Sans', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-teal-dark); }
ul { list-style: none; }

.x9f2k { display: none; }
.wp-block-group { display: block; }
.entry-content { display: contents; }

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

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-balance: balance;
}

.section-title span { color: var(--clr-teal); }

.badge {
  display: inline-block;
  background: var(--clr-teal);
  color: var(--clr-black);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn:active { transform: scale(0.97); }

.btn-login {
  background: transparent;
  color: var(--clr-teal);
  border: 2px solid var(--clr-teal);
}

.btn-login:hover {
  background: var(--clr-teal);
  color: var(--clr-black);
  box-shadow: var(--shadow-teal);
}

.btn-signup {
  background: var(--clr-red);
  color: #fff;
  border: 2px solid var(--clr-red);
}

.btn-signup:hover {
  background: var(--clr-red-dark);
  border-color: var(--clr-red-dark);
  box-shadow: 0 0 20px rgba(255,46,9,0.35);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--clr-teal);
  color: var(--clr-black);
  border: 2px solid var(--clr-teal);
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: var(--radius);
}

.btn-primary:hover {
  background: var(--clr-teal-dark);
  border-color: var(--clr-teal-dark);
  box-shadow: var(--shadow-teal);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--clr-red);
  color: #fff;
  border: 2px solid var(--clr-red);
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--radius);
}

.btn-secondary:hover {
  background: var(--clr-red-dark);
  box-shadow: 0 0 20px rgba(255,46,9,0.4);
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-black);
  border-bottom: 1px solid rgba(0,251,200,0.12);
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

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

.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.header-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-teal);
  letter-spacing: -0.02em;
}

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

.header-nav a {
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.header-nav a:hover {
  color: var(--clr-teal);
  background: rgba(0,251,200,0.08);
}

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

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

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

.online-num { color: #22c55e; font-weight: 700; }

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.burger:hover { background: rgba(255,255,255,0.08); }

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

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

.mobile-nav {
  display: none;
  background: var(--clr-black);
  border-top: 1px solid rgba(0,251,200,0.1);
  padding: 16px;
  flex-direction: column;
  gap: 8px;
}

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

.mobile-nav a {
  display: block;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.mobile-nav a:hover {
  color: var(--clr-teal);
  background: rgba(0,251,200,0.08);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  z-index: 0;
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1.04); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(50,50,52,0.45) 60%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,251,200,0.12);
  border: 1px solid rgba(0,251,200,0.3);
  color: var(--clr-teal);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
  text-balance: balance;
}

.hero-title em {
  color: var(--clr-teal);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-bonus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,46,9,0.15);
  border: 1px solid rgba(255,46,9,0.4);
  color: #ff6b52;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  background: var(--clr-bg-alt);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.breadcrumbs-list a { color: var(--clr-teal); }
.breadcrumbs-list a:hover { text-decoration: underline; }

.breadcrumbs-sep {
  color: var(--clr-border);
  user-select: none;
}

.breadcrumbs-current { color: var(--clr-text-muted); }

/* ===== SECTIONS ===== */
.section {
  padding: 60px 0;
}

.section-alt { background: var(--clr-bg-alt); }

/* ===== TABLE ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow);
}

.info-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 13px 18px;
  border-bottom: 1px solid var(--clr-border);
  vertical-align: middle;
}

.info-table th {
  background: var(--clr-bg-alt);
  color: var(--clr-text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 38%;
  white-space: nowrap;
}

.info-table td { background: var(--clr-bg-card); color: var(--clr-text); }

.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }

.info-table tr:hover th,
.info-table tr:hover td { background: rgba(0,251,200,0.04); }

.td-hl { color: var(--clr-teal); font-weight: 700; }
.td-star { color: #f59e0b; }

/* ===== PROS CONS ===== */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros-box, .cons-box {
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--clr-border);
}

.pros-box { border-top: 3px solid #22c55e; }
.cons-box { border-top: 3px solid var(--clr-red); }

.box-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
}

.pros-icon { color: #22c55e; font-size: 1.3rem; }
.cons-icon { color: var(--clr-red); font-size: 1.3rem; }

.check-list { display: flex; flex-direction: column; gap: 10px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--clr-text);
  line-height: 1.5;
}

.check-list li::before {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  margin-top: 2px;
}

.pros-list li::before {
  content: '\2713';
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

.cons-list li::before {
  content: '\2715';
  background: rgba(255,46,9,0.15);
  color: var(--clr-red);
}

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

.adv-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-teal);
  border-color: rgba(0,251,200,0.3);
}

.adv-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.adv-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-teal);
  margin-bottom: 8px;
}

.adv-text { font-size: 0.88rem; color: var(--clr-text-muted); line-height: 1.6; }

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

.jackpot-card {
  background: linear-gradient(145deg, #2a2a2c, #3a3a3c);
  border: 1px solid rgba(0,251,200,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.jackpot-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-teal), transparent);
}

.jackpot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,251,200,0.15);
}

.jackpot-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.jackpot-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-teal);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.jackpot-currency {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}

.jackpot-grow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ===== WINNERS ===== */
.winners-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
}

.winners-table {
  width: 100%;
  min-width: 380px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.winners-table th {
  background: var(--clr-bg-alt);
  color: var(--clr-text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}

.winners-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(74,74,80,0.5);
  color: var(--clr-text);
  background: var(--clr-bg-card);
}

.winners-table tr:last-child td { border-bottom: none; }
.winners-table tr:hover td { background: rgba(0,251,200,0.04); }

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
}

.rank-1 { background: #f59e0b; color: #000; }
.rank-2 { background: #9ca3af; color: #000; }
.rank-3 { background: #b45309; color: #fff; }
.rank-other { background: rgba(255,255,255,0.08); color: var(--clr-text-muted); }

.winner-amount { color: var(--clr-teal); font-weight: 700; }

/* ===== BONUSES SLIDER ===== */
.bonuses-section { overflow: hidden; }

.bonuses-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255,46,9,0.15);
}

.bonus-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-red);
}

.bonus-type {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-red);
}

.bonus-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.1;
}

.bonus-amount span { color: var(--clr-teal); }

.bonus-desc { font-size: 0.87rem; color: var(--clr-text-muted); line-height: 1.55; flex: 1; }

.bonus-terms {
  font-size: 0.72rem;
  color: rgba(160,160,168,0.7);
  line-height: 1.5;
  border-top: 1px solid var(--clr-border);
  padding-top: 12px;
}

.bonus-card .btn {
  display: flex;
  width: 100%;
  white-space: normal;
  text-align: center;
}

.slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--clr-teal);
  transform: scale(1.25);
}

/* ===== CONTENT BLOCK ===== */
.content-block {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.content-block h2 { font-size: 1.5rem; font-weight: 700; color: var(--clr-text); margin: 1.6em 0 0.7em; line-height: 1.3; }
.content-block h3 { font-size: 1.2rem; font-weight: 700; color: var(--clr-teal); margin: 1.4em 0 0.6em; line-height: 1.3; }
.content-block h4 { font-size: 1rem; font-weight: 700; color: var(--clr-text); margin: 1.2em 0 0.5em; }
.content-block p { margin-bottom: 1em; font-size: 0.95rem; color: var(--clr-text); line-height: 1.7; }
.content-block a { color: var(--clr-teal); text-decoration: underline; }
.content-block a:hover { color: var(--clr-teal-dark); }
.content-block strong { color: #fff; font-weight: 700; }
.content-block em { color: var(--clr-teal); font-style: italic; }

.content-block ul, .content-block ol {
  margin: 0.5em 0 1em 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.content-block ul li, .content-block ol li {
  position: relative;
  padding-left: 22px;
  font-size: 0.93rem;
  color: var(--clr-text);
  line-height: 1.6;
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-teal);
}

.content-block ol { counter-reset: li; }
.content-block ol li::before {
  content: counter(li) '.';
  counter-increment: li;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--clr-teal);
  font-weight: 700;
  font-size: 0.88rem;
}

.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

.content-block table th {
  background: var(--clr-bg-alt);
  color: var(--clr-text-muted);
  padding: 10px 14px;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--clr-border);
}

.content-block table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(74,74,80,0.5);
  color: var(--clr-text);
}

.content-block blockquote {
  border-left: 3px solid var(--clr-teal);
  padding: 14px 20px;
  background: rgba(0,251,200,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1em 0;
  font-style: italic;
  color: var(--clr-text-muted);
}

/* ===== AUTHOR BOX ===== */
.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-black);
  flex-shrink: 0;
}

.author-info { flex: 1; }

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 3px;
}

.author-role { font-size: 0.8rem; color: var(--clr-text-muted); line-height: 1.5; }

.author-link {
  font-size: 0.8rem;
  color: var(--clr-teal);
  text-decoration: none;
}

.author-link:hover { text-decoration: underline; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--clr-bg-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,251,200,0.35); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--clr-text);
  user-select: none;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--clr-teal); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-teal);
  border-color: var(--clr-teal);
  color: var(--clr-black);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.faq-answer-inner a { color: var(--clr-teal); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-black);
  border-top: 1px solid rgba(0,251,200,0.1);
  padding: 48px 0 24px;
}

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

.footer-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-logo .logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-teal);
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}

.footer-nav { display: flex; flex-direction: column; gap: 8px; }

.footer-nav a {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--clr-teal); }

.footer-divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 28px 0 20px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.pay-logo {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.prov-logo {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.65rem;
  color: rgba(160,160,168,0.6);
}

.copyright {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(160,160,168,0.55);
  line-height: 1.7;
}

.copyright a { color: rgba(0,251,200,0.6); }
.copyright a:hover { color: var(--clr-teal); }

/* ===== WIDGET ===== */
.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0d0d0d 0%, rgba(13,13,13,0.97) 100%);
  border-top: 1px solid rgba(0,251,200,0.18);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}

.widget-text {
  font-size: 0.9rem;
  color: var(--clr-text);
  font-weight: 600;
}

.widget-bonus {
  color: var(--clr-teal);
  font-weight: 700;
}

.widget-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}

.widget-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--clr-text);
}

.bottom-widget.hidden { transform: translateY(100%); }

body { padding-bottom: 70px; }

/* ===== WP COMPAT ===== */
.wp-site-blocks { display: contents; }
.is-layout-flow { display: contents; }
.wp-block-post-content { display: contents; }
.elementor-widget-container { display: contents; }
.elementor { display: contents; }
.wp-content-area { display: none; }
.yoast-breadcrumb { display: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(0,251,200,0.3); }
  50% { box-shadow: 0 0 24px rgba(0,251,200,0.6); }
}

.anim-fade-up { animation: fadeUp 0.6s ease both; }
.anim-fade-up-d1 { animation: fadeUp 0.6s 0.1s ease both; }
.anim-fade-up-d2 { animation: fadeUp 0.6s 0.2s ease both; }
.anim-fade-up-d3 { animation: fadeUp 0.6s 0.3s ease both; }

/* ===== UNUSED (uniqualization) ===== */
.xf91a { display: none; position: absolute; z-index: -1; }
.qr7m2 { visibility: hidden; height: 0; overflow: hidden; }
.zt4w9 { pointer-events: none; opacity: 0; }
.wp-block-separator { border: none; border-top: 1px solid var(--clr-border); margin: 20px 0; }
.is-style-wide { max-width: 100%; }
.has-text-align-center { text-align: center; }
.alignfull { width: 100%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .jackpots-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

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

  .hero { min-height: 380px; }
  .hero-content { padding: 40px 0; }

  .advantages-grid { grid-template-columns: 1fr; }
  .jackpots-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .bonuses-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .bonuses-track::-webkit-scrollbar { display: none; }

  .bonus-card {
    min-width: 100%;
    width: 100%;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .slider-dots { display: flex; }

  .section-title { font-size: 1.4rem; }

  .content-block { padding: 20px 16px; }

  .bottom-widget {
    flex-direction: column;
    gap: 10px;
    padding: 12px 40px 12px 16px;
    align-items: flex-start;
  }

  body { padding-bottom: 120px; }

  .btn-primary { font-size: 0.95rem; padding: 12px 24px; }
  .hero-actions { gap: 10px; }

  .author-box { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 480px) {
  .header-inner { gap: 8px; }
  .header-logo .logo-text { font-size: 1.2rem; }
  .online-count { display: none; }
  .section { padding: 40px 0; }
  .jackpots-grid { grid-template-columns: 1fr; }
}
