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

:root {
  --c-nav: #07027d;
  --c-nav-dark: #050162;
  --c-btn-primary: #e3e4d6;
  --c-btn-accent: #ffb42f;
  --c-bg: #6705c8;
  --c-bg-dark: #5203a8;
  --c-bg-light: #7a12d9;
  --c-text-light: #f0eeff;
  --c-text-white: #ffffff;
  --c-text-muted: #c5b8f0;
  --c-text-dark: #1a0a3a;
  --c-gold: #ffd166;
  --c-gold-dark: #f4a800;
  --c-green: #2ecc71;
  --c-card-bg: rgba(7,2,125,0.55);
  --c-card-border: rgba(255,180,47,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 4px 32px rgba(0,0,0,0.28);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --font-main: 'Manrope', sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text-light);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

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

.container--wide { max-width: 1440px; }
.container--full { max-width: 100%; padding: 0; }

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

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  background: var(--c-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0,0,0,0.38);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  flex-wrap: nowrap;
}

.header-logo { flex-shrink: 0; }

.header-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255,180,47,0.4));
}

.jackpot-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,180,47,0.13);
  border: 1px solid rgba(255,180,47,0.35);
  border-radius: 40px;
  padding: 5px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.jackpot-ticker svg { flex-shrink: 0; animation: pulse-glow 1.8s ease-in-out infinite; }

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 3px #ffb42f); opacity: 1; }
  50% { filter: drop-shadow(0 0 10px #ffd166); opacity: 0.7; }
}

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

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--c-text-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.header-nav a:hover { background: rgba(255,255,255,0.1); color: var(--c-gold); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 9px 20px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,0.28); }
.btn:active { transform: translateY(0); }

.btn--play {
  background: var(--c-btn-primary);
  color: var(--c-text-dark) !important;
}

.btn--play:hover { filter: brightness(1.08); color: var(--c-text-dark); }

.btn--bonus {
  background: var(--c-btn-accent);
  color: var(--c-text-dark) !important;
}

.btn--bonus:hover { filter: brightness(1.1); color: var(--c-text-dark); }

.btn--sm { font-size: 0.78rem; padding: 6px 13px; }
.btn--lg { font-size: 1rem; padding: 14px 32px; border-radius: var(--radius-md); }
.btn--xl { font-size: 1.1rem; padding: 17px 44px; border-radius: var(--radius-md); }

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

.btn--outline:hover { background: var(--c-btn-accent); color: var(--c-text-dark); }

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--c-text-white);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn--ghost:hover { background: rgba(255,255,255,0.2); color: var(--c-text-white); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1100;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text-white);
  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-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,2,125,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 80px 24px 24px;
  backdrop-filter: blur(8px);
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  color: var(--c-text-white);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  max-width: 320px;
}

.mobile-menu a:hover { color: var(--c-gold); }

.mobile-menu .btn { width: 100%; max-width: 320px; justify-content: center; padding: 14px 20px; font-size: 1rem; }

.hero-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/img/basket-bounty-hero.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,2,125,0.88) 0%, rgba(103,5,200,0.72) 55%, rgba(103,5,200,0.18) 100%);
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,180,47,0.18);
  border: 1px solid rgba(255,180,47,0.45);
  border-radius: 40px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-text-white);
  margin-bottom: 16px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}

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

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 520px;
}

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

.hero-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-text-muted);
}

.hero-badge svg { color: var(--c-green); flex-shrink: 0; }

.section-gap { padding: 56px 0; }
.section-gap--sm { padding: 36px 0; }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--c-text-white);
  margin-bottom: 10px;
}

.section-title span { color: var(--c-gold); }

.section-subtitle {
  font-size: 1rem;
  color: var(--c-text-muted);
  margin-bottom: 36px;
  max-width: 600px;
}

.card {
  background: var(--c-card-bg);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.toc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(7,2,125,0.6);
  border: 1px solid rgba(255,180,47,0.22);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  color: var(--c-text-light);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
}

.toc-item:hover { background: rgba(255,180,47,0.18); border-color: var(--c-btn-accent); color: var(--c-gold); }

.toc-item svg { flex-shrink: 0; color: var(--c-btn-accent); }

.jackpot-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.jackpot-card {
  flex: 1;
  min-width: 220px;
  border-radius: var(--radius-lg);
  padding: 28px 22px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jackpot-card--grand {
  background: linear-gradient(135deg, #1a0050 0%, #07027d 100%);
  border: 2px solid #ffd166;
  box-shadow: 0 0 36px rgba(255,209,102,0.25);
}

.jackpot-card--major {
  background: linear-gradient(135deg, #2a0a5e 0%, #5203a8 100%);
  border: 2px solid #c99af2;
}

.jackpot-card--minor {
  background: linear-gradient(135deg, #07027d 0%, #3a008a 100%);
  border: 1px solid rgba(255,180,47,0.4);
}

.jackpot-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 10px;
  color: var(--c-text-muted);
}

.jackpot-card--grand .jackpot-badge { color: var(--c-gold); background: rgba(255,209,102,0.15); }

.jackpot-amount {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.jackpot-card--grand .jackpot-amount { color: var(--c-gold); text-shadow: 0 0 24px rgba(255,209,102,0.5); }
.jackpot-card--major .jackpot-amount { color: #d4adff; }
.jackpot-card--minor .jackpot-amount { color: var(--c-btn-accent); }

.jackpot-label { font-size: 0.78rem; color: var(--c-text-muted); margin-bottom: 18px; }

.jackpot-winners { text-align: left; }

.jackpot-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8rem;
}

.jackpot-winner:last-child { border-bottom: none; }

.jackpot-winner-nick { color: var(--c-text-light); font-weight: 600; }
.jackpot-winner-amount { color: var(--c-gold); font-weight: 700; }

.winners-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

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

.winners-table th {
  background: var(--c-nav);
  color: var(--c-text-muted);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.winners-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.winners-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; text-align: right; }

.winners-table td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: middle;
  text-align: left;
}

.winners-table td:last-child { text-align: right; font-weight: 700; color: var(--c-gold); }

.winners-table tbody tr { transition: background var(--transition); }
.winners-table tbody tr:hover { background: rgba(255,180,47,0.07); }

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

.rank-1 { background: var(--c-gold); color: var(--c-text-dark); }
.rank-2 { background: #c0c0c0; color: var(--c-text-dark); }
.rank-3 { background: #cd7f32; color: var(--c-text-white); }
.rank-other { background: rgba(255,255,255,0.1); color: var(--c-text-muted); }

.demo-section-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255,180,47,0.3);
  box-shadow: var(--shadow-card);
}

.demo-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--c-nav);
  padding: 14px 22px;
  flex-wrap: wrap;
}

.demo-info { font-size: 0.82rem; color: var(--c-text-muted); }
.demo-info strong { color: var(--c-text-white); }

.content-review {
  background: var(--c-card-bg);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: var(--c-text-light);
  line-height: 1.75;
  font-size: 0.97rem;
}

.content-review h1,
.content-review h2,
.content-review h3,
.content-review h4,
.content-review h5,
.content-review h6 {
  color: var(--c-text-white);
  font-weight: 800;
  line-height: 1.3;
  margin-top: 1.8em;
  margin-bottom: 0.65em;
}

.content-review h2 { font-size: 1.5rem; color: var(--c-gold); }
.content-review h3 { font-size: 1.2rem; }
.content-review h4 { font-size: 1.05rem; }

.content-review p { margin-bottom: 1.1em; }

.content-review a { color: var(--c-btn-accent); text-decoration: underline; text-underline-offset: 3px; }
.content-review a:hover { color: var(--c-gold); }

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

.content-review li { margin-bottom: 0.4em; }

.content-review table {
  width: auto;
  max-width: 100%;
  margin: 1.5em auto;
  border-collapse: collapse;
  border: 1px solid rgba(255,180,47,0.3);
  font-size: 0.9rem;
}

.content-review table th {
  background: var(--c-nav);
  color: var(--c-gold);
  padding: 10px 16px;
  text-align: left;
  font-weight: 700;
  border: 1px solid rgba(255,180,47,0.25);
}

.content-review table td {
  padding: 9px 16px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--c-text-light);
}

.content-review table tbody tr:hover { background: rgba(255,180,47,0.05); }

.content-review strong { color: var(--c-text-white); font-weight: 700; }
.content-review em { color: var(--c-text-muted); }

.content-review blockquote {
  border-left: 3px solid var(--c-btn-accent);
  padding: 12px 20px;
  margin: 1.5em 0;
  background: rgba(255,180,47,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.content-review code {
  font-family: 'Courier New', monospace;
  font-size: 0.88em;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--c-gold);
}

.content-review img { border-radius: var(--radius-md); margin: 1em auto; }

.author-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(7,2,125,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-top: 28px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-btn-accent) 0%, var(--c-bg-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-text-dark);
  flex-shrink: 0;
}

.author-info { flex: 1; }

.author-name {
  font-weight: 800;
  color: var(--c-text-white);
  font-size: 0.97rem;
  margin-bottom: 3px;
}

.author-title { font-size: 0.8rem; color: var(--c-btn-accent); margin-bottom: 6px; font-weight: 600; }
.author-bio { font-size: 0.8rem; color: var(--c-text-muted); line-height: 1.55; }

.author-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--c-btn-accent);
  margin-top: 6px;
  font-weight: 600;
}

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

.faq-item {
  background: var(--c-card-bg);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active { border-color: var(--c-btn-accent); }

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

.faq-question:hover { color: var(--c-gold); }

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,180,47,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--c-btn-accent); }

.faq-icon svg { color: var(--c-btn-accent); }
.faq-item.active .faq-icon svg { color: var(--c-text-dark); }

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--c-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  animation: fade-in 0.2s ease;
}

.faq-item.active .faq-answer { display: block; }

@keyframes fade-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.similar-games-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.game-card {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  background: var(--c-card-bg);
  border: 1px solid var(--c-card-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(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.35); border-color: rgba(255,180,47,0.5); }

.game-card-img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--c-nav), var(--c-bg-dark));
}

.game-card-img-placeholder {
  width: 100%;
  height: 148px;
  background: linear-gradient(135deg, var(--c-nav) 0%, var(--c-bg-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card-body { padding: 16px 18px; }

.game-card-provider {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-btn-accent);
  margin-bottom: 4px;
}

.game-card-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--c-text-white);
  margin-bottom: 8px;
}

.game-card-desc { font-size: 0.8rem; color: var(--c-text-muted); line-height: 1.55; margin-bottom: 14px; }

.game-card-btns { display: flex; gap: 8px; }

.site-footer {
  background: var(--c-nav);
  padding: 48px 0 0;
  margin-top: auto;
}

.footer-top {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { flex: 0 0 240px; }
.footer-brand-link {display: block;width: fit-content;}
.footer-logo { height: 56px; width: auto; margin-bottom: 14px; filter: drop-shadow(0 2px 8px rgba(255,180,47,0.3)); }
.footer-brand-provider {display: block;width: fit-content;}
.footer-tagline { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.6; }

.footer-col { flex: 1; min-width: 160px; }

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}

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

.footer-nav a {
  font-size: 0.85rem;
  color: var(--c-text-light);
  transition: color var(--transition);
}

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

.footer-payments {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

.payment-badge {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
}

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.social-link:hover { background: var(--c-btn-accent); color: var(--c-text-dark); }

.footer-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.trust-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}

.trust-badge:hover { border-color: rgba(255,255,255,0.3); color: var(--c-text-white); }

.age-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e74c3c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}

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

.footer-copyright { font-size: 0.78rem; color: var(--c-text-muted); line-height: 1.65; max-width: 700px; }

.footer-flag {height: 20px;width: auto;}

.bonus-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, var(--c-nav) 0%, #1a0080 50%, var(--c-nav) 100%);
  border-top: 2px solid var(--c-btn-accent);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 28px rgba(0,0,0,0.35);
  flex-wrap: wrap;
}

.bonus-widget-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bonus-widget-text strong { color: var(--c-gold); }

.bonus-widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.bonus-widget-close:hover { color: var(--c-text-white); }

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,180,47,0.3) 30%, rgba(255,180,47,0.3) 70%, transparent 100%);
  margin: 0;
}

.stats-bar {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding: 24px 0;
}

.stat-item { text-align: center; }
.stat-value { font-size: 1.6rem; font-weight: 800; color: var(--c-gold); line-height: 1.1; }
.stat-label { font-size: 0.75rem; color: var(--c-text-muted); font-weight: 600; letter-spacing: 0.04em; }

.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,180,47,0.12);
  border: 1px solid rgba(255,180,47,0.25);
  border-radius: 4px;
  padding: 3px 10px;
  color: var(--c-btn-accent);
}

.provider-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(7,2,125,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.provider-bar img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }

.provider-bar-label { font-size: 0.78rem; color: var(--c-text-muted); font-weight: 600; }

.scroll-top {
  position: fixed;
  bottom: 72px;
  right: 20px;
  z-index: 800;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-btn-accent);
  color: var(--c-text-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
}

.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 0;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.breadcrumb a { color: var(--c-text-muted); }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }
.breadcrumb-current { color: var(--c-text-white); font-weight: 600; }

.info-page-content {
  background: var(--c-card-bg);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--c-text-light);
}

.info-page-content h1 { font-size: 1.9rem; font-weight: 800; color: var(--c-text-white); margin-bottom: 20px; }
.info-page-content h2 { font-size: 1.35rem; font-weight: 800; color: var(--c-gold); margin: 2em 0 0.7em; }
.info-page-content p { margin-bottom: 1em; }
.info-page-content ul, .info-page-content ol { padding-left: 1.6em; margin-bottom: 1em; }
.info-page-content li { margin-bottom: 0.4em; }
.info-page-content a { color: var(--c-btn-accent); text-decoration: underline; }
.info-page-content a:hover { color: var(--c-gold); }

.rtp-bar-wrap { margin: 18px 0; }
.rtp-label { font-size: 0.8rem; font-weight: 700; color: var(--c-text-muted); margin-bottom: 6px; display: flex; justify-content: space-between; }
.rtp-bar { height: 10px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.rtp-fill { height: 100%; background: linear-gradient(90deg, var(--c-btn-accent), var(--c-gold)); border-radius: 10px; animation: rtp-grow 1.2s ease-out both; }
@keyframes rtp-grow { from { width: 0; } }

.xd7a2f { display: none; }
.zq9b3c { visibility: hidden; height: 0; }

.wp-block-cover { display: none; }
.entry-meta { color: var(--c-text-muted); font-size: 0.8rem; }
.post-thumbnail { display: none; }
.wp-caption { display: none; }

@media (max-width: 1024px) {
.jackpot-ticker {display: none;}
}

@media (max-width: 960px) {
  .jackpot-grid { gap: 14px; }
  .jackpot-card { min-width: 180px; }
  .similar-games-grid { gap: 14px; }
  .footer-top { gap: 24px; }
  .footer-brand { flex: 0 0 100%; }
  .content-review h2 {margin-top: 20px;}
}

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

  .header-buttons .btn--play { display: none; }

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

  .content-review { padding: 24px 20px; }
  .info-page-content { padding: 28px 22px; }
  .card { padding: 20px; }

  .toc-item { font-size: 0.8rem; padding: 8px 13px; }

  .demo-cta-bar { flex-direction: column; align-items: flex-start; }

  .stats-bar { gap: 18px; }

  .footer-top { flex-direction: column; gap: 20px; }
  .footer-col { min-width: auto; }

  .bonus-widget { flex-wrap: nowrap; }
  .bonus-widget-text { font-size: 0.8rem; }

  .game-card { max-width: 100%; }

  .section-gap { padding: 36px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .hero-cta-group .btn--xl { padding: 13px 24px; font-size: 0.95rem; }
  .jackpot-card { min-width: 100%; }
  .author-card { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .bonus-widget .btn { font-size: 0.78rem; padding: 8px 14px; }
  .content-review { padding: 20px 16px; }
  .container { padding: 0 16px; }

}
