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

:root {
  --c-bg: #1a1a2e;
  --c-surface: #22223a;
  --c-surface2: #2a2a47;
  --c-nav: #282845;
  --c-primary: #4f46e5;
  --c-primary-h: #6366f1;
  --c-accent: #f59e0b;
  --c-accent-h: #fbbf24;
  --c-green: #10b981;
  --c-red: #ef4444;
  --c-text: #e8e8f4;
  --c-text-muted: #9999bb;
  --c-border: #3a3a5c;
  --r: 12px;
  --r-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.35);
  --trans: .22s ease;
}

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: .9em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; }
li { margin-bottom: .35em; }

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

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

.box {
  background: var(--c-surface);
  border-radius: var(--r);
  padding: 28px 32px;
  margin-bottom: 24px;
  border: 1px solid var(--c-border);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--c-border);
}

.section-title svg { flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all var(--trans);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--trans);
}

.btn:hover::after { background: rgba(255,255,255,.08); }

.btn--primary {
  background: linear-gradient(135deg, var(--c-accent) 0%, #e67e00 100%);
  color: #1a1a0a;
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,.4); color: #1a1a0a; }

.btn--secondary {
  background: var(--c-nav);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

.btn--secondary:hover { background: var(--c-surface2); color: #fff; border-color: var(--c-primary); }

.btn--outline {
  background: transparent;
  color: var(--c-accent);
  border: 2px solid var(--c-accent);
}

.btn--outline:hover { background: var(--c-accent); color: #1a1a0a; }

.btn--sm { padding: 7px 16px; font-size: .8rem; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }

.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 600;
}

.badge--green { background: rgba(16,185,129,.18); color: var(--c-green); }
.badge--red { background: rgba(239,68,68,.15); color: var(--c-red); }
.badge--gold { background: rgba(245,158,11,.15); color: var(--c-accent); }

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

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}

.burger { margin-left: auto; }

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo img { height: 42px; width: auto; }

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

.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text-muted);
  font-size: .82rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--r-sm);
  transition: all var(--trans);
  white-space: nowrap;
}

.header-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }
.header-nav a:hover { color: #fff; background: rgba(255,255,255,.07); }

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

.nav-mobile-actions { display: none; }

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

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px var(--c-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
}

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

.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); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/stellar-spins-banner.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,26,46,.96) 45%, rgba(26,26,46,.6) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--c-accent);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.hero-title span { color: var(--c-accent); }

.hero-desc {
  font-size: 1rem;
  color: rgba(232,232,244,.82);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}

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

.hero-bonus-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  font-size: .82rem;
  color: var(--c-text-muted);
}

.hero-bonus-tag strong { color: var(--c-accent); font-size: 1rem; }

/* ========== BREADCRUMBS ========== */
.breadcrumbs-section { margin-bottom: 20px; }

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .8rem;
  color: var(--c-text-muted);
  list-style: none;
  padding: 0;
}

.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li a { color: var(--c-text-muted); }
.breadcrumbs li a:hover { color: var(--c-accent); }
.breadcrumbs li.active { color: var(--c-accent); }
.breadcrumbs .sep { color: var(--c-border); font-size: .75rem; }

/* ========== TABLE OF CONTENTS ========== */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--c-surface2);
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  font-size: .83rem;
  font-weight: 500;
  transition: all var(--trans);
}

.toc-item svg { flex-shrink: 0; color: var(--c-accent); }
.toc-item:hover { border-color: var(--c-primary); background: rgba(79,70,229,.1); color: #fff; transform: translateY(-1px); }

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

.pros-block, .cons-block {
  background: var(--c-surface2);
  border-radius: var(--r-sm);
  padding: 20px;
  border: 1px solid var(--c-border);
}

.pros-block { border-top: 3px solid var(--c-green); }
.cons-block { border-top: 3px solid var(--c-red); }

.pros-block h3, .cons-block h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 1rem;
}

.pros-block h3 { color: var(--c-green); }
.cons-block h3 { color: var(--c-red); }

.pros-list, .cons-list {
  list-style: none;
  padding: 0;
}

.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 7px 0;
  font-size: .86rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  line-height: 1.5;
  margin-bottom: 0;
}

.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }

.pros-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--c-green);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  margin-top: 2px;
}

.cons-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--c-red);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  margin-top: 2px;
}

/* ========== PAYMENT TABLE ========== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .84rem;
  min-width: 680px;
}

.data-table thead th {
  background: var(--c-nav);
  color: var(--c-text-muted);
  font-weight: 600;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}

.data-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background var(--trans);
}

.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(255,255,255,.04); }

.data-table td {
  padding: 13px 16px;
  vertical-align: middle;
}

.pm-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
}

.pm-icon {
  width: 36px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--c-text);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.1);
}

/* ========== WINNERS ========== */
.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.winner-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  transition: all var(--trans);
}

.winner-card:hover { border-color: var(--c-accent); transform: translateY(-2px); }

.winner-rank {
  font-size: .72rem;
  font-weight: 700;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--c-surface);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}

.winner-rank.gold { background: rgba(245,158,11,.15); color: var(--c-accent); border-color: var(--c-accent); }
.winner-rank.silver { background: rgba(148,163,184,.15); color: #94a3b8; border-color: #94a3b8; }
.winner-rank.bronze { background: rgba(180,120,80,.15); color: #b47850; border-color: #b47850; }

.winner-info { flex: 1; min-width: 0; }

.winner-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-amount {
  font-size: .8rem;
  color: var(--c-green);
  font-weight: 700;
}

/* ========== GAMES ========== */
.games-section { position: relative; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.game-card {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
}

.game-card:hover { border-color: var(--c-primary); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(79,70,229,.2); }

.game-thumb {
  height: 160px;
  background: linear-gradient(135deg, #1e1e38 0%, #2e1e50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-thumb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  width: 100%;
  height: 100%;
}

.game-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-thumb-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow);
}

.game-hot-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--c-red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.game-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.game-name {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}

.game-provider {
  font-size: .74rem;
  color: var(--c-text-muted);
}

.game-footer {
  padding: 12px 14px;
  border-top: 1px solid var(--c-border);
}

/* ========== CONTENT BLOCK ========== */
.content-review {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 32px 36px;
  margin-bottom: 24px;
}

.content-review h2 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  margin-top: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-border);
}

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

.content-review h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  margin-top: 20px;
  color: var(--c-accent);
}

.content-review h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  margin-top: 16px;
}

.content-review p {
  color: rgba(232,232,244,.88);
  line-height: 1.75;
  margin-bottom: 1em;
}

.content-review ul, .content-review ol {
  margin-bottom: 1em;
  padding-left: 1.6em;
}

.content-review li {
  margin-bottom: .45em;
  color: rgba(232,232,244,.88);
  line-height: 1.6;
}

.content-review table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: .88rem;
}

.content-review table th {
  background: var(--c-nav);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.content-review table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  vertical-align: top;
}

.content-review a { color: var(--c-accent); text-decoration: underline; }

.content-review blockquote {
  border-left: 3px solid var(--c-primary);
  padding: 12px 20px;
  margin: 1.2em 0;
  background: rgba(79,70,229,.07);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.content-review strong { color: #fff; }

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

.faq-item {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--trans);
}

.faq-item.open { border-color: var(--c-primary); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--c-text);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  transition: color var(--trans);
}

.faq-question:hover { color: #fff; }

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-nav);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--trans);
}

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

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

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: .87rem;
  color: rgba(232,232,244,.82);
  line-height: 1.75;
}

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

/* ========== AUTHOR ========== */
.author-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.author-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--c-border);
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-info { flex: 1; }

.author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.author-role {
  font-size: .8rem;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.author-bio {
  font-size: .86rem;
  color: rgba(232,232,244,.78);
  line-height: 1.7;
  margin-bottom: 14px;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}

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

.author-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  transition: all var(--trans);
}

.social-link:hover { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand .footer-logo img { height: 38px; margin-bottom: 14px; }

.footer-tagline {
  font-size: .83rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-list a {
  font-size: .83rem;
  color: var(--c-text-muted);
  transition: color var(--trans);
}

.footer-nav-list a:hover { color: var(--c-accent); }

.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.footer-logo-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--c-border);
  border-radius: 7px;
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

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

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-flag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: var(--c-text-muted);
  flex-shrink: 0;
}

.footer-legal {
  flex: 1;
  font-size: .75rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.footer-legal p { margin-bottom: .4em; }
.footer-legal a { color: var(--c-text-muted); text-decoration: underline; }

/* ========== STICKY WIDGET ========== */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(90deg, #1a1a2e 0%, #22223a 50%, #1a1a2e 100%);
  border-top: 2px solid var(--c-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
}

.widget-text {
  display: flex;
  flex-direction: column;
}

.widget-label {
  font-size: .7rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.widget-bonus {
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-accent);
}

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

.widget-close:hover { color: #fff; }

/* ========== MAIN LAYOUT ========== */
.main-wrap { flex: 1; padding: 24px 0 100px; }

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fade-in { animation: fadeInUp .55s ease both; }
.fade-in-2 { animation: fadeInUp .55s .1s ease both; }
.fade-in-3 { animation: fadeInUp .55s .2s ease both; }

/* Stars animation */
.hero-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle linear infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: .8; transform: scale(1); }
}

/* ========== RATING STARS ========== */
.stars-row { display: flex; align-items: center; gap: 3px; }
.star { color: var(--c-accent); font-size: .9rem; }

/* ========== EXTRA UTILITY ELEMENTS ========== */
.dr-x9f2a { display: none; visibility: hidden; }
.wpml-ls-legacy-list-horizontal { display: none !important; }
.entry-thumb { display: none; }
.elementor-hidden { display: none; }
.woocommerce-checkout-payment { display: none; }
.et_pb_section { display: none; }
.pp-content-block { display: none; }

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

@media (max-width: 768px) {
  .box { padding: 20px 18px; }
  .content-review { padding: 22px 18px; }

  .header-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--c-nav);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
    border-bottom: 1px solid var(--c-border);
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }

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

  .header-nav a {
    font-size: .88rem;
    padding: 10px 14px;
    border-radius: var(--r-sm);
  }

  .burger { display: flex; }

  .online-count { display: none; }

  .header-actions { display: none; }

  .nav-mobile-actions {
    display: flex;
    gap: 10px;
    padding: 12px 14px;
    border-top: 1px solid var(--c-border);
    margin-top: 4px;
  }

  .pros-cons-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .winners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

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

  .author-card { flex-direction: column; }
  .author-avatar { width: 70px; height: 70px; }

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

  .sticky-widget { padding: 10px 14px; gap: 10px; }
  .widget-text { display: none; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .winners-grid { grid-template-columns: 1fr; }
  .toc-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }

  .header-actions .btn--secondary { display: none; }
}
