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

:root {
  --c-bg: #060D43;
  --c-header: #060D43;
  --c-primary: #035669;
  --c-secondary: #060D43;
  --c-accent: #00c3ff;
  --c-gold: #f5c518;
  --c-text: #e8eaf6;
  --c-text-muted: #9fa8da;
  --c-surface: #0b1660;
  --c-surface2: #0e1c75;
  --c-border: rgba(0,195,255,0.18);
  --c-btn-primary: #035669;
  --c-btn-primary-hover: #047a92;
  --c-btn-secondary: #060D43;
  --c-btn-secondary-hover: #0b1660;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 32px rgba(3,86,105,0.25);
  --shadow-lg: 0 8px 48px rgba(3,86,105,0.35);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; background: var(--c-bg); }

body {
  font-family: 'Nunito', 'AvenirLight', 'Avenir', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
ul { list-style: none; }

.x7k2m { display: none; }
.q9rp3 { visibility: hidden; height: 0; overflow: hidden; }

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

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--c-btn-primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(3,86,105,0.45);
}
.btn--primary:hover { background: var(--c-btn-primary-hover); color: #fff; box-shadow: 0 6px 24px rgba(3,86,105,0.6); transform: translateY(-2px); }
.btn--secondary {
  background: transparent;
  color: var(--c-accent);
  border: 1.5px solid var(--c-accent);
}
.btn--secondary:hover { background: rgba(0,195,255,0.1); color: #fff; }
.btn--gold {
  background: linear-gradient(135deg, #f5c518 0%, #e8a000 100%);
  color: #060D43;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(245,197,24,0.4);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(245,197,24,0.55); color: #060D43; }
.btn--lg { padding: 14px 36px; font-size: 1.08rem; border-radius: var(--radius-lg); }
.btn--sm { padding: 7px 16px; font-size: 0.85rem; }

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 12px;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 42px; width: auto; }
.header-logo .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.header-logo .logo-text span { color: var(--c-accent); }

.header-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  color: var(--c-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-link.active { color: var(--c-accent); }

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.online-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22e55a;
  box-shadow: 0 0 8px #22e55a;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  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; }
.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;
  background: linear-gradient(135deg, #020930 0%, var(--c-bg) 50%, #031428 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/Heaps-O-Wins-banner.png') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,13,67,0.92) 0%, rgba(6,13,67,0.6) 60%, rgba(6,13,67,0.2) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,195,255,0.12);
  border: 1px solid rgba(0,195,255,0.3);
  color: var(--c-accent);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero-title .highlight { color: var(--c-gold); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}
.hero-trust-item svg { color: var(--c-gold); width: 14px; height: 14px; }

/* =========================================
   BREADCRUMBS
   ========================================= */
.breadcrumbs-wrap {
  background: rgba(11,22,96,0.6);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-accent); }
.breadcrumbs .sep { color: rgba(255,255,255,0.25); }
.breadcrumbs .current { color: var(--c-accent); font-weight: 600; }

/* =========================================
   SECTION COMMONS
   ========================================= */
.section {
  padding: 64px 0;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--c-text-muted);
  margin-bottom: 40px;
  max-width: 560px;
}
.section-header { margin-bottom: 40px; }
.section-title-line {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title-line::before,
.section-title-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
}
.section-title-line::before { max-width: 40px; flex: 0; }

/* =========================================
   TABLE OF CONTENTS
   ========================================= */
.toc-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 0;
}
.toc-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toc-title svg { color: var(--c-accent); width: 20px; height: 20px; }
.toc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.toc-list li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.toc-list li a svg { width: 15px; height: 15px; color: var(--c-accent); flex-shrink: 0; }
.toc-list li a:hover {
  color: #fff;
  background: rgba(0,195,255,0.08);
  border-color: var(--c-border);
}
.toc-num {
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(0,195,255,0.15);
  color: var(--c-accent);
  border-radius: 5px;
  padding: 1px 6px;
  margin-left: auto;
  flex-shrink: 0;
}

/* =========================================
   ADVANTAGES
   ========================================= */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.adv-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.adv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-primary));
  opacity: 0;
  transition: opacity var(--transition);
}
.adv-card:hover { transform: translateY(-4px); border-color: rgba(0,195,255,0.35); box-shadow: var(--shadow); }
.adv-card:hover::before { opacity: 1; }
.adv-icon {
  width: 48px; height: 48px;
  background: rgba(3,86,105,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--c-accent);
}
.adv-icon svg { width: 24px; height: 24px; }
.adv-card h3 { font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.adv-card p { font-size: 0.83rem; color: var(--c-text-muted); line-height: 1.5; }

/* =========================================
   WINNERS
   ========================================= */
.winners-table-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.winners-header {
  display: grid;
  grid-template-columns: 50px 1fr 130px 130px;
  padding: 14px 20px;
  background: rgba(3,86,105,0.25);
  border-bottom: 1px solid var(--c-border);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
}
.winner-row {
  display: grid;
  grid-template-columns: 50px 1fr 130px 130px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
  transition: background var(--transition);
  font-size: 0.9rem;
}
.winner-row:last-child { border-bottom: none; }
.winner-row:hover { background: rgba(0,195,255,0.05); }
.winner-rank { font-weight: 800; color: var(--c-text-muted); }
.winner-rank.gold { color: #f5c518; }
.winner-rank.silver { color: #b0bec5; }
.winner-rank.bronze { color: #cd7f32; }
.winner-name { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #fff; }
.winner-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.winner-game { color: var(--c-text-muted); font-size: 0.85rem; }
.winner-amount { color: var(--c-gold); font-weight: 800; text-align: right; }

/* =========================================
   GAMES
   ========================================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.game-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.game-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(0,195,255,0.4); }
.game-thumb {
  aspect-ratio: 16/9;
  background: var(--c-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.game-thumb-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.game-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,13,67,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-info { padding: 14px 16px; }
.game-name { font-weight: 800; color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.game-provider { font-size: 0.78rem; color: var(--c-text-muted); margin-bottom: 12px; }

/* =========================================
   SLOT MINI-GAME
   ========================================= */
.slotgame-wrap {
  background: linear-gradient(135deg, var(--c-surface) 0%, #0a1558 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.slotgame-wrap::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,195,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.slotgame-title { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.slotgame-sub { font-size: 0.9rem; color: var(--c-text-muted); margin-bottom: 28px; }
.slot-reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.slot-reel {
  width: 90px; height: 110px;
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}
.slot-reel.spinning { border-color: var(--c-accent); }
.slot-symbol {
  animation: none;
  display: block;
  line-height: 1;
}
.slot-reel.spinning .slot-symbol {
  animation: spin-reel 0.12s linear infinite;
}
@keyframes spin-reel {
  0% { transform: translateY(-100%); opacity: 0; }
  50% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}
.slot-result {
  min-height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.slot-win-msg {
  display: none;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-gold);
  animation: win-pop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes win-pop { 0% { transform: scale(0.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.slot-lose-msg {
  display: none;
  font-size: 1rem;
  color: var(--c-text-muted);
}

/* =========================================
   CONTENT BLOCK (review)
   ========================================= */
.content-review {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  line-height: 1.75;
}
.content-review h2 { font-size: 1.5rem; font-weight: 800; color: #fff; margin: 28px 0 12px; }
.content-review h3 { font-size: 1.2rem; font-weight: 700; color: var(--c-accent); margin: 22px 0 10px; }
.content-review h4 { font-size: 1rem; font-weight: 700; color: #fff; margin: 18px 0 8px; }
.content-review p { color: var(--c-text); margin-bottom: 14px; font-size: 0.97rem; }
.content-review a { color: var(--c-accent); border-bottom: 1px dashed rgba(0,195,255,0.4); }
.content-review a:hover { border-bottom-color: var(--c-accent); color: #fff; }
.content-review ul, .content-review ol { padding-left: 24px; margin-bottom: 14px; color: var(--c-text); font-size: 0.97rem; }
.content-review ul { list-style: disc; }
.content-review ol { list-style: decimal; }
.content-review li { margin-bottom: 6px; line-height: 1.65; }
.content-review table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.9rem; }
.content-review th { background: rgba(3,86,105,0.3); color: var(--c-accent); font-weight: 700; padding: 10px 14px; text-align: left; border: 1px solid var(--c-border); }
.content-review td { padding: 9px 14px; border: 1px solid var(--c-border); color: var(--c-text); }
.content-review tr:nth-child(even) td { background: rgba(255,255,255,0.025); }
.content-review blockquote { border-left: 3px solid var(--c-accent); padding-left: 16px; margin: 16px 0; color: var(--c-text-muted); font-style: italic; }
.content-review strong { color: #fff; font-weight: 700; }
.content-review em { color: var(--c-text-muted); }
.content-review img { border-radius: var(--radius); margin: 12px 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.open { border-color: rgba(0,195,255,0.35); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  gap: 12px;
}
.faq-q-text { font-size: 1rem; font-weight: 700; color: #fff; }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(0,195,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  color: var(--c-accent);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(0,195,255,0.25); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 22px 18px;
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 14px;
}
.faq-answer-inner a { color: var(--c-accent); }

/* =========================================
   AUTHOR
   ========================================= */
.author-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.author-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-border);
  flex-shrink: 0;
}
.author-photo-placeholder {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), #0a1558);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-accent);
  border: 3px solid var(--c-border);
  flex-shrink: 0;
}
.author-name { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.author-role { font-size: 0.82rem; color: var(--c-accent); font-weight: 600; margin-bottom: 10px; }
.author-bio { font-size: 0.88rem; color: var(--c-text-muted); line-height: 1.65; margin-bottom: 14px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  transition: all var(--transition);
}
.author-link:hover { border-color: var(--c-accent); color: var(--c-accent); background: rgba(0,195,255,0.06); }
.author-link svg { width: 14px; height: 14px; }
.author-dates { font-size: 0.78rem; color: var(--c-text-muted); margin-top: 10px; }
.author-dates span { font-weight: 600; color: var(--c-text); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 52px 0 24px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .footer-logo img { height: 36px; }
.footer-brand .footer-logo .logo-text { font-size: 1.2rem; font-weight: 800; color: #fff; }
.footer-brand p { font-size: 0.84rem; color: var(--c-text-muted); line-height: 1.65; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: all var(--transition);
}
.social-icon:hover { border-color: var(--c-accent); color: var(--c-accent); background: rgba(0,195,255,0.08); }
.social-icon svg { width: 16px; height: 16px; }

.footer-col-title { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.88rem; color: var(--c-text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--c-accent); }

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

.footer-logos-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.footer-logos-group { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-logos-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-text-muted); min-width: 90px; flex-shrink: 0; }
.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 7px;
  border: 1px solid var(--c-border);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--c-text-muted);
  background: rgba(255,255,255,0.03);
  white-space: nowrap;
  transition: border-color var(--transition);
}
.logo-badge:hover { border-color: rgba(0,195,255,0.3); color: var(--c-text); }
.logo-badge svg { width: 14px; height: 14px; color: var(--c-accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-country { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--c-text-muted); }
.footer-flag { font-size: 1.4rem; line-height: 1; }
.footer-legal { font-size: 0.76rem; color: var(--c-text-muted); line-height: 1.6; max-width: 640px; }
.footer-legal a { color: rgba(0,195,255,0.7); }
.footer-copyright { font-size: 0.8rem; color: var(--c-text-muted); }
.footer-contact { font-size: 0.82rem; color: var(--c-text-muted); }
.footer-contact a { color: var(--c-accent); }

/* =========================================
   STICKY WIDGET
   ========================================= */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #020825 0%, #031e38 100%);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.widget-text { font-size: 0.88rem; color: var(--c-text-muted); }
.widget-text strong { color: var(--c-gold); }
.widget-close {
  position: absolute;
  top: 6px; right: 8px;
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--transition);
}
.widget-close:hover { color: #fff; }
.widget-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* =========================================
   INFO PAGES (base-info)
   ========================================= */
.info-content {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 40px 0;
}
.info-content h1 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 20px; }
.info-content h2 { font-size: 1.3rem; font-weight: 700; color: #fff; margin: 24px 0 10px; }
.info-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--c-accent); margin: 18px 0 8px; }
.info-content p { color: var(--c-text); line-height: 1.75; margin-bottom: 14px; font-size: 0.97rem; }
.info-content ul, .info-content ol { padding-left: 22px; margin-bottom: 14px; color: var(--c-text); }
.info-content ul { list-style: disc; }
.info-content ol { list-style: decimal; }
.info-content li { margin-bottom: 6px; line-height: 1.65; }
.info-content a { color: var(--c-accent); }
.info-content strong { color: #fff; }

/* =========================================
   UTILITY & SPACING
   ========================================= */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-gold { color: var(--c-gold); }
.text-accent { color: var(--c-accent); }
.text-muted { color: var(--c-text-muted); }
.fw-800 { font-weight: 800; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 16px; }

/* Unused decorative elements (layout uniqueness) */
.xp7r9 { content: ''; }
.wq3n8-hidden { opacity: 0; pointer-events: none; position: absolute; width: 0; height: 0; overflow: hidden; }
.mn4k1-deco { border-left: 2px solid transparent; }

/* =========================================
   GRID/FLEX OVERFLOW GUARD
   ========================================= */
.header-inner, .hero-cta, .toc-list, .advantages-grid, .winners-header,
.winner-row, .games-grid, .footer-grid, .slot-reels {
  min-width: 0;
}
.header-inner > *, .hero-cta > *, .toc-list > *, .advantages-grid > *,
.winners-header > *, .winner-row > *, .games-grid > *, .footer-grid > *,
.slot-reels > * {
  min-width: 0;
}
.winner-game, .winner-amount { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.content-review table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* =========================================
   WP COMPAT CLASSES (fingerprinting layer)
   ========================================= */
.wp-block-group { display: block; }
.wp-block-columns { display: flex; gap: 20px; }
.alignnone { float: none; }
.aligncenter { margin: 0 auto; display: block; }
.wp-caption { max-width: 100%; }
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.entry-content { display: block; }
.wp-post-image { display: block; }
.elementor-widget-container { display: block; }

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

@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--c-header);
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--c-border);
    gap: 4px;
    z-index: 999;
  }
  .header-nav.open { display: flex; overflow-y: auto; max-height: calc(100vh - 68px); }
  .nav-link { padding: 12px 16px; font-size: 1rem; }
  .header-nav-actions { display: flex; flex-direction: column; gap: 10px; width: 100%; margin-top: 10px; }
  .header-nav-actions .btn { width: 100%; }
  .burger { display: flex; }
  .header-right { gap: 6px; }
  .online-count, .header-actions-link { display: none; }
  .section { padding: 40px 0; }
  .toc-list { grid-template-columns: 1fr; }
  .winners-header, .winner-row { grid-template-columns: 40px 1fr 110px; }
  .winners-header > *:nth-child(3), .winner-row > *:nth-child(3) { display: none; }
  .games-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
  .hero-content { padding: 40px 0; }
  .author-card { flex-direction: column; align-items: center; text-align: center; padding: 24px 20px; }
  .author-links { justify-content: center; }
  .content-review { padding: 24px 20px; }
  .slotgame-wrap { padding: 28px 18px; }
  .slot-reel { width: 76px; height: 96px; font-size: 2.3rem; }
  .sticky-widget { padding: 10px 16px; }
  .widget-text { font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.7rem; }
  .btn--lg { padding: 12px 24px; font-size: 0.97rem; }
  .info-content { padding: 24px 16px; }
  .slot-reels { gap: 8px; }
  .slot-reel { width: 68px; height: 84px; font-size: 2rem; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
}

/* Scroll padding for anchor links */
[id] { scroll-margin-top: 90px; }

/* =========================================
   FORMS
   ========================================= */
.info-content input[type="text"],
.info-content input[type="email"],
.info-content select,
.info-content textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  color: var(--c-text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}
.info-content input[type="text"]:focus,
.info-content input[type="email"]:focus,
.info-content select:focus,
.info-content textarea:focus {
  border-color: var(--c-accent);
}
.info-content label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--c-text);
  font-size: 0.9rem;
}
.info-content form > div { margin-bottom: 16px; }
.info-content textarea { resize: vertical; }
.info-content select option { background: var(--c-bg); }
