:root {
  --clr-bg: #09312a;
  --clr-header: #b58f35;
  --clr-header-dark: #9a7828;
  --clr-btn-play: #b2031e;
  --clr-btn-play-hover: #900218;
  --clr-btn-dark: #212121;
  --clr-btn-dark-hover: #3a3a3a;
  --clr-text: #f0ece0;
  --clr-text-muted: #c8c0a8;
  --clr-gold: #b58f35;
  --clr-gold-light: #d4a843;
  --clr-surface: #0d3d31;
  --clr-surface2: #112f26;
  --clr-border: #1e5042;
  --clr-white: #fff;
  --radius: 10px;
  --radius-lg: 16px;
  --font-main: "Roboto", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background-color: var(--clr-bg);
}
body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--clr-gold-light);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  color: var(--clr-white);
  font-weight: 700;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}
p {
  margin-bottom: 1rem;
  color: var(--clr-text);
}
ul,
ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
li {
  margin-bottom: 0.4rem;
  color: var(--clr-text);
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.container--wide {
  max-width: 1400px;
}
.box {
  padding: 16px 0;
}
.section {
  padding: 56px 0;
}
.section--sm {
  padding: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  letter-spacing: 0.04em;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.btn:active {
  transform: translateY(0);
}
.btn--play {
  background: var(--clr-btn-play);
  color: #fff;
}
.btn--play:hover {
  background: var(--clr-btn-play-hover);
  color: #fff;
}
.btn--dark {
  background: var(--clr-btn-dark);
  color: #fff;
}
.btn--dark:hover {
  background: var(--clr-btn-dark-hover);
  color: #fff;
}
.btn--gold {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: #1a0a00;
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #1a0a00;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
}
.btn--outline:hover {
  background: var(--clr-gold);
  color: #1a0a00;
}
.btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}
.btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  color: #1a0a00;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 7px 11px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition:
    background 0.2s,
    color 0.2s;
}
.header-nav a:hover {
  background: rgba(0, 0, 0, 0.15);
  color: #1a0a00;
}
.header-nav svg {
  flex-shrink: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-jackpot {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.82rem;
  color: #fff1cc;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.header-jackpot span {
  color: #ffe866;
  font-size: 1rem;
}
.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: #1a0a00;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.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(10, 30, 20, 0.97);
  z-index: 200;
  flex-direction: column;
  padding: 24px 20px;
  gap: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  margin-bottom: 20px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.mobile-nav a {
  color: var(--clr-text);
  font-weight: 600;
  padding: 12px 8px;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.mobile-nav a:hover {
  color: var(--clr-gold);
}
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-surface2);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/eban.png");
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 49, 42, 0.92) 45%,
    rgba(9, 49, 42, 0.55) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.hero-content p {
  font-size: 1.1rem;
  color: var(--clr-text);
  margin-bottom: 24px;
  max-width: 480px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-badge {
  background: rgba(181, 143, 53, 0.2);
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-rtp {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 20px;
  display: inline-flex;
  gap: 24px;
  margin-top: 24px;
}
.hero-rtp-item {
  text-align: center;
}
.hero-rtp-item .val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-gold-light);
}
.hero-rtp-item .lbl {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  margin-bottom: 8px;
}
.section-title p {
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-title .title-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  border-radius: 2px;
  margin: 12px auto 0;
}

.game-section {
  background: var(--clr-surface);
}
.game-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}
.game-frame-wrap {
  position: relative;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.game-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.game-money-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.game-details-table {
  background: var(--clr-surface2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.game-details-table h3 {
  padding: 14px 16px;
  background: var(--clr-header);
  color: #1a0a00;
  font-size: 0.95rem;
  margin: 0;
}
.gdt-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.85rem;
}
.gdt-row:last-child {
  border-bottom: none;
}
.gdt-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}
.gdt-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.gdt-key {
  color: var(--clr-text-muted);
  min-width: 110px;
  flex-shrink: 0;
}
.gdt-val {
  color: var(--clr-text);
  font-weight: 500;
}

.mobile-app-section {
  background: var(--clr-bg);
}
.app-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
}
.phone-frame {
  width: 200px;
  margin: 0 auto;
  position: relative;
}
.phone-frame-inner {
  background: #111;
  border-radius: 30px;
  border: 3px solid #333;
  overflow: hidden;
  padding: 12px 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.phone-screen {
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9/16;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-notch {
  width: 50px;
  height: 8px;
  background: #333;
  border-radius: 4px;
  margin: 0 auto 8px;
}
.app-info h3 {
  color: var(--clr-gold-light);
  margin-bottom: 16px;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  text-align: left;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.app-table th,
.app-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.88rem;
}
.app-table th {
  background: var(--clr-surface2);
  color: var(--clr-text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.app-table td {
  color: var(--clr-text);
}
.app-table tr:last-child td,
.app-table tr:last-child th {
  border-bottom: none;
}
.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 10px 18px;
  color: var(--clr-text);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.dl-btn:hover {
  border-color: var(--clr-gold);
  background: rgba(181, 143, 53, 0.1);
  color: var(--clr-text);
}
.dl-btn svg {
  flex-shrink: 0;
}
.dl-btn-text .small {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  display: block;
}
.dl-btn-text .big {
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
  color: var(--clr-white);
}

.advantages-section {
  background: var(--clr-surface);
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.adv-card {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.adv-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.adv-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(181, 143, 53, 0.2),
    rgba(181, 143, 53, 0.05)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.adv-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--clr-gold-light);
}
.adv-card p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin: 0;
}

.jackpot-section {
  background: var(--clr-bg);
}
.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jackpot-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}
.jackpot-card--mini {
  background: linear-gradient(160deg, #1a3a2a, #0d2318);
  border: 1px solid #2a5a3a;
}
.jackpot-card--major {
  background: linear-gradient(160deg, #2a2a0a, #1a1800);
  border: 1px solid #5a5020;
}
.jackpot-card--mega {
  background: linear-gradient(160deg, #3a1a08, #200e00);
  border: 1px solid #7a3a10;
}
.jackpot-header {
  padding: 14px 20px;
  text-align: center;
}
.jackpot-card--mini .jackpot-header {
  background: rgba(0, 180, 100, 0.15);
}
.jackpot-card--major .jackpot-header {
  background: rgba(200, 160, 0, 0.15);
}
.jackpot-card--mega .jackpot-header {
  background: rgba(220, 80, 0, 0.15);
}
.jackpot-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.jackpot-card--mini .jackpot-type {
  color: #6ef0a0;
}
.jackpot-card--major .jackpot-type {
  color: #ffe166;
}
.jackpot-card--mega .jackpot-type {
  color: #ff9040;
}
.jackpot-amount {
  font-size: 2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}
.jackpot-card--mini .jackpot-amount {
  color: #6ef0a0;
}
.jackpot-card--major .jackpot-amount {
  color: #ffe166;
}
.jackpot-card--mega .jackpot-amount {
  color: #ff9040;
}
.jackpot-multiplier {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
}
.jackpot-players {
  padding: 14px 20px;
}
.jackpot-players h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  margin-bottom: 10px;
}
.jackpot-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
}
.jackpot-player:last-child {
  border-bottom: none;
}
.jp-nick {
  color: var(--clr-text);
}
.jp-win {
  font-weight: 700;
}
.jackpot-card--mini .jp-win {
  color: #6ef0a0;
}
.jackpot-card--major .jp-win {
  color: #ffe166;
}
.jackpot-card--mega .jp-win {
  color: #ff9040;
}

.video-section {
  background: var(--clr-surface);
}
.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.review-section {
  background: var(--clr-bg);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  border-left: 3px solid var(--clr-gold);
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #1a0a00;
  flex-shrink: 0;
}
.author-info .name {
  font-weight: 700;
  color: var(--clr-white);
  font-size: 0.95rem;
}
.author-info .role {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}
.author-info a {
  color: var(--clr-gold);
  font-size: 0.82rem;
}
.review-updated {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

.content-body {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--clr-text);
}
.content-body h2 {
  color: var(--clr-gold-light);
  font-size: 1.4rem;
  margin: 28px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--clr-border);
}
.content-body h3 {
  color: var(--clr-white);
  font-size: 1.15rem;
  margin: 22px 0 10px;
}
.content-body h4 {
  color: var(--clr-text);
  font-size: 1rem;
  margin: 18px 0 8px;
}
.content-body p {
  margin-bottom: 1rem;
  color: var(--clr-text);
}
.content-body ul,
.content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.content-body li {
  margin-bottom: 0.5rem;
  color: var(--clr-text);
}
.content-body a {
  color: var(--clr-gold);
  text-decoration: underline;
}
.content-body a:hover {
  color: var(--clr-gold-light);
}
.content-body strong {
  color: var(--clr-white);
  font-weight: 700;
}
.content-body em {
  color: var(--clr-text-muted);
  font-style: italic;
}
.content-body blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 12px 20px;
  background: var(--clr-surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 16px 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  text-align: left;
  overflow-x: auto;
  display: block;
}
.content-body table th,
.content-body table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  font-size: 0.88rem;
}
.content-body table th {
  background: var(--clr-surface2);
  color: var(--clr-gold-light);
}
.content-body table td {
  color: var(--clr-text);
}
.content-body img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 12px 0;
}

.faq-section {
  background: var(--clr-surface);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: var(--clr-white);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
}
.faq-q:hover {
  color: var(--clr-gold-light);
}
.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  display: none;
  padding: 0 20px 16px;
  color: var(--clr-text);
  font-size: 0.92rem;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  display: block;
}

.site-footer {
  background: var(--clr-header);
  color: #1a0a00;
  margin-top: auto;
}
.footer-top {
  padding: 40px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 32px;
}
.footer-logo img {
  height: 48px;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.55;
}
.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 12px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  color: #1a0a00;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #5a2800;
}
.footer-payments,
.footer-socials,
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.payment-logo,
.social-icon,
.trust-badge {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.payment-logo:hover,
.social-icon:hover,
.trust-badge:hover {
  background: rgba(0, 0, 0, 0.2);
}
.payment-logo span,
.trust-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a0a00;
}
.social-icon svg {
  color: #1a0a00;
}
.trust-badge {
  padding: 5px 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.footer-extras {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-license {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a0a00;
}
.footer-flag {
  font-size: 1.4rem;
  line-height: 1;
}
.age-badge {
  background: #b2031e;
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 3px 9px;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: linear-gradient(90deg, #0a1e18, #09312a);
  border-top: 2px solid var(--clr-gold);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.widget-text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.widget-text strong {
  color: var(--clr-gold-light);
  display: block;
  font-size: 0.97rem;
}
.widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px;
}
.widget-close:hover {
  color: var(--clr-text);
}

.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.breadcrumb a {
  color: var(--clr-gold);
}
.breadcrumb span {
  margin: 0 6px;
  opacity: 0.5;
}

.rating-stars {
  display: flex;
  gap: 2px;
  align-items: center;
}
.rating-star {
  color: var(--clr-gold-light);
  font-size: 1rem;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
thead th {
  background: var(--clr-surface2);
  color: var(--clr-gold-light);
  font-weight: 700;
  padding: 12px 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--clr-border);
}
tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
  font-size: 0.9rem;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.info-page-content {
  padding: 40px 0 60px;
}
.info-page-content h1 {
  color: var(--clr-gold-light);
  margin-bottom: 24px;
}

.wp-content-hidden {
  display: none !important;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s,
    transform 0.5s;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .game-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .jackpot-grid {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 40px 0 200px;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(9, 49, 42, 0.88) 60%,
      rgba(9, 49, 42, 0.6) 100%
    );
  }
  .hero-bg {
    background-position: center bottom;
  }
  .app-layout {
    grid-template-columns: 1fr;
  }
  .phone-frame {
    margin-bottom: 24px;
  }
  .jackpot-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sticky-widget {
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-rtp {
    gap: 12px;
    padding: 10px 14px;
  }
  .hero-rtp-item .val {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .adv-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .download-btns {
    flex-direction: column;
  }
  .dl-btn {
    width: 100%;
  }
}
