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

:root {
  --c-primary: #362871;
  --c-primary-dark: #271d56;
  --c-primary-light: #4a3890;
  --c-btn-orange: #e76213;
  --c-btn-orange-h: #c9530f;
  --c-btn-green: #3b6b1b;
  --c-btn-green-h: #2d5214;
  --c-bg: #bc1377;
  --c-bg-dark: #9a0f62;
  --c-bg-darker: #7a0b4e;
  --c-text: #fff;
  --c-text-muted: rgba(255,255,255,0.72);
  --c-text-dark: #1a1230;
  --c-gold: #f5c542;
  --c-gold-light: #ffe08a;
  --c-border: rgba(255,255,255,0.15);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.45);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; background: var(--c-bg); }
body {
  font-family: 'Oswald', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--c-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4em; }

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

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

/* ========== HEADER ========== */
.site-header {
  background: var(--c-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  border-bottom: 2px solid rgba(245,197,66,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo img { height: 52px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: center; }
.header-nav a {
  display: flex; align-items: center; gap: 6px;
  color: var(--c-text-muted);
  font-size: 13px; font-weight: 500; letter-spacing: 0.03em;
  padding: 6px 10px; border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.header-nav a:hover, .header-nav a.active { color: var(--c-gold); background: rgba(245,197,66,0.1); }
.header-nav svg { width: 15px; height: 15px; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.jackpot-live {
  background: rgba(245,197,66,0.12);
  border: 1px solid rgba(245,197,66,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px; font-weight: 600;
  color: var(--c-gold);
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.jackpot-live .dot {
  width: 7px; height: 7px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse-dot 1.4s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 9px 20px; border-radius: 8px;
  font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  cursor: pointer; border: none; text-decoration: none;
  transition: all var(--transition); white-space: nowrap;
}
.btn--orange { background: var(--c-btn-orange); color: #fff; }
.btn--orange:hover { background: var(--c-btn-orange-h); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(231,98,19,0.5); }
.btn--green { background: var(--c-btn-green); color: #fff; }
.btn--green:hover { background: var(--c-btn-green-h); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(59,107,27,0.5); }
.btn--outline { background: transparent; color: var(--c-gold); border: 2px solid var(--c-gold); }
.btn--outline:hover { background: var(--c-gold); color: var(--c-primary-dark); }
.btn--sm { padding: 6px 14px; font-size: 12px; }
.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }
.btn svg { width: 16px; height: 16px; }

.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--c-text); border-radius: 2px; transition: all 0.3s; }
.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; flex-direction: column;
  background: var(--c-primary-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex; align-items: center; gap: 10px;
  color: var(--c-text-muted); font-size: 14px; font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--c-gold); }
.mobile-menu svg { width: 16px; height: 16px; }
.mobile-menu-actions {
  display: flex; gap: 10px; margin-top: 14px;
}
.mobile-menu-actions .btn {
  flex: 1; padding: 10px 14px; border-bottom: none; color: #fff;
}
.mobile-menu-actions .btn:hover { color: #fff; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--c-primary-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/img/banner.png');
  background-size: cover; background-position: center;
  filter: brightness(0.45);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(54,40,113,0.92) 0%, rgba(54,40,113,0.4) 60%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 600px;
  padding: 60px 20px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(245,197,66,0.15); border: 1px solid rgba(245,197,66,0.4);
  border-radius: 20px; padding: 4px 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-gold); margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; line-height: 1.15;
  color: #fff; margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero h1 span { color: var(--c-gold); }
.hero-sub {
  font-size: 15px; color: var(--c-text-muted);
  margin-bottom: 28px; line-height: 1.6;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-val { font-size: 22px; font-weight: 700; color: var(--c-gold); }
.hero-stat-lbl { font-size: 11px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
  background: var(--c-primary-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
}
.breadcrumbs-list {
  display: flex; align-items: center; gap: 6px;
  list-style: none; padding: 0; margin: 0;
  font-size: 13px;
}
.breadcrumbs-list li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs-list a { color: var(--c-text-muted); }
.breadcrumbs-list a:hover { color: var(--c-gold); }
.breadcrumbs-list .sep { color: rgba(255,255,255,0.3); font-size: 10px; }
.breadcrumbs-list .current { color: var(--c-gold); }

/* ========== SECTIONS ========== */
.section { padding: 56px 0; }
.section--alt { background: rgba(0,0,0,0.15); }
.section-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700; color: #fff;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.section-title svg { width: 26px; height: 26px; color: var(--c-gold); flex-shrink: 0; }
.section-title span { color: var(--c-gold); }
.section-sub { font-size: 14px; color: var(--c-text-muted); margin-bottom: 32px; }

/* ========== BOXES ========== */
.box {
  background: rgba(54,40,113,0.65);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.box--dark { background: rgba(39,29,86,0.8); }
.box--gold { border-color: rgba(245,197,66,0.35); }

/* ========== TABLE OF CONTENTS ========== */
.toc { }
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.toc-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: 8px; padding: 12px 14px;
  color: var(--c-text-muted); font-size: 13px; font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}
.toc-item:hover {
  background: rgba(245,197,66,0.1);
  border-color: rgba(245,197,66,0.3);
  color: var(--c-gold);
  transform: translateX(3px);
}
.toc-item svg { width: 16px; height: 16px; color: var(--c-gold); flex-shrink: 0; }
.toc-num {
  min-width: 22px; height: 22px;
  background: var(--c-btn-orange);
  border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ========== MOBILE APP BLOCK ========== */
.app-block { }
.app-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px; align-items: start;
}
.app-phone-wrap {
  position: relative;
  width: 200px; flex-shrink: 0;
}
.phone-frame {
  position: relative;
  background: #0e0b1e;
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: 32px;
  padding: 16px 10px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
}
.phone-notch {
  width: 60px; height: 10px;
  background: #0e0b1e;
  border-radius: 0 0 8px 8px;
  margin: 0 auto 12px;
  position: relative; z-index: 2;
  border: 1px solid rgba(255,255,255,0.08);
}
.phone-screen { border-radius: 18px; overflow: hidden; }
.phone-screen img { width: 100%; display: block; border-radius: 14px; }
.phone-home { width: 40px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; margin: 12px auto 0; }
.app-info { }
.app-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 20px; }
.app-table th, .app-table td { padding: 9px 12px; border: 1px solid rgba(255,255,255,0.1); text-align: left; }
.app-table th { background: rgba(54,40,113,0.8); color: var(--c-gold); font-weight: 600; white-space: nowrap; width: 40%; }
.app-table td { color: var(--c-text-muted); }
.app-table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.app-dl-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 10px 18px;
  color: #fff; text-decoration: none;
  transition: all var(--transition);
}
.btn-store:hover { background: rgba(255,255,255,0.13); border-color: rgba(245,197,66,0.4); color: var(--c-gold); }
.btn-store svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-store-text { display: flex; flex-direction: column; }
.btn-store-text small { font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.7; }
.btn-store-text strong { font-size: 14px; font-weight: 600; }

/* ========== VIDEO ========== */
.video-wrap {
  position: relative;
  width: 100%; padding-bottom: 56.25%;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}

/* ========== CONTENT / REVIEW ========== */
.content-body { line-height: 1.75; font-size: 15px; color: rgba(255,255,255,0.88); }
.content-body h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 28px 0 12px; }
.content-body h3 { font-size: 1.2rem; font-weight: 600; color: var(--c-gold); margin: 22px 0 10px; }
.content-body h4 { font-size: 1.05rem; font-weight: 600; color: var(--c-gold-light); margin: 18px 0 8px; }
.content-body p { margin-bottom: 14px; }
.content-body ul, .content-body ol { margin-bottom: 14px; }
.content-body li { margin-bottom: 6px; }
.content-body strong { color: var(--c-gold); font-weight: 600; }
.content-body em { color: var(--c-gold-light); }
.content-body a { color: var(--c-gold); text-decoration: underline; }
.content-body a:hover { color: var(--c-gold-light); }
.content-body table { width: 100%; border-collapse: collapse; margin: 18px 0; overflow-x: auto; display: block; }
.content-body table th { background: rgba(54,40,113,0.9); color: var(--c-gold); padding: 10px 12px; border: 1px solid rgba(255,255,255,0.12); text-align: left; font-weight: 600; white-space: nowrap; }
.content-body table td { padding: 9px 12px; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.82); }
.content-body table tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.content-body blockquote { border-left: 3px solid var(--c-gold); padding: 12px 18px; background: rgba(245,197,66,0.06); border-radius: 0 8px 8px 0; margin: 16px 0; font-style: italic; color: var(--c-text-muted); }
.content-body img { max-width: 100%; border-radius: 8px; margin: 14px 0; }
.content-body code { background: rgba(255,255,255,0.08); padding: 2px 7px; border-radius: 4px; font-size: 13px; }

.author-box {
  display: flex; align-items: flex-start; gap: 18px;
  background: rgba(54,40,113,0.6); border: 1px solid rgba(245,197,66,0.2);
  border-radius: var(--radius-lg); padding: 20px;
  margin-top: 28px;
}
.author-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--c-primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: var(--c-gold);
  flex-shrink: 0;
}
.author-name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.author-title { font-size: 12px; color: var(--c-gold); margin-bottom: 6px; font-weight: 500; }
.author-bio { font-size: 13px; color: var(--c-text-muted); line-height: 1.5; }
.author-link { font-size: 12px; color: var(--c-gold); margin-top: 6px; display: inline-block; }

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: rgba(54,40,113,0.55);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(245,197,66,0.3); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: #fff;
  user-select: none;
}
.faq-question:hover { color: var(--c-gold); }
.faq-icon {
  width: 22px; height: 22px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--c-btn-orange); border-color: var(--c-btn-orange); transform: rotate(45deg); }
.faq-icon svg { width: 10px; height: 10px; }
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px; color: var(--c-text-muted); line-height: 1.65;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer a { color: var(--c-gold); }

/* ========== SIMILAR GAMES ========== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.game-card {
  background: rgba(54,40,113,0.7);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); border-color: rgba(245,197,66,0.3); }
.game-thumb { position: relative; overflow: hidden; }
.game-thumb img { width: 100%; height: 140px; object-fit: cover; transition: transform 0.4s; }
.game-card:hover .game-thumb img { transform: scale(1.05); }
.game-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--c-btn-orange); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.game-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.game-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.game-desc { font-size: 12px; color: var(--c-text-muted); line-height: 1.5; flex: 1; margin-bottom: 12px; }
.game-actions { display: flex; gap: 6px; }
.game-actions .btn { flex: 1; font-size: 11px; padding: 7px 8px; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--c-primary);
  border-top: 2px solid rgba(245,197,66,0.15);
  margin-top: auto;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px; margin-bottom: 36px;
}
.footer-logo img { height: 44px; margin-bottom: 12px; }
.footer-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.55; margin-bottom: 14px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-muted);
  transition: all var(--transition);
}
.footer-social a:hover { background: rgba(245,197,66,0.15); border-color: rgba(245,197,66,0.4); color: var(--c-gold); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 14px; }
.footer-nav { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 13px; color: var(--c-text-muted); transition: color var(--transition); }
.footer-nav a:hover { color: var(--c-gold); }
.footer-divider { height: 1px; background: var(--c-border); margin: 24px 0; }
.footer-logos { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.footer-logos img { height: 28px; width: auto; opacity: 0.7; filter: grayscale(0.3); transition: opacity var(--transition); }
.footer-logos img:hover { opacity: 1; }
.trust-badges { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 5px 10px;
  font-size: 11px; font-weight: 600; color: var(--c-text-muted);
}
.trust-badge svg { width: 14px; height: 14px; }
.payments-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 20px; }
.payment-badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 4px 10px;
  font-size: 11px; font-weight: 700; color: var(--c-text-muted); letter-spacing: 0.03em;
}
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-legal a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.footer-legal a:hover { color: var(--c-gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-flag { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--c-text-muted); }
.flag-au {
  display: inline-block; width: 24px; height: 16px;
  background: #00008b;
  border-radius: 2px; overflow: hidden; position: relative;
  flex-shrink: 0;
}

/* ========== STICKY WIDGET ========== */
.sticky-widget {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: linear-gradient(90deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
  border-top: 2px solid rgba(245,197,66,0.3);
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.sticky-text { font-size: 13px; font-weight: 600; color: var(--c-text-muted); }
.sticky-text strong { color: var(--c-gold); }
.sticky-actions { display: flex; gap: 10px; align-items: center; }
.sticky-close {
  background: none; border: none; color: rgba(255,255,255,0.4);
  cursor: pointer; font-size: 18px; padding: 4px;
  transition: color var(--transition); flex-shrink: 0;
}
.sticky-close:hover { color: #fff; }

/* ========== RATING STARS ========== */
.stars { display: flex; gap: 2px; }
.star { color: var(--c-gold); font-size: 14px; }
.star.empty { color: rgba(255,255,255,0.2); }
.rating-row { display: flex; align-items: center; gap: 8px; }
.rating-score { font-size: 18px; font-weight: 700; color: var(--c-gold); }
.rating-count { font-size: 12px; color: var(--c-text-muted); }

/* ========== INFO TABLE ========== */
.info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.info-table th, .info-table td { padding: 10px 14px; border: 1px solid rgba(255,255,255,0.1); text-align: left; }
.info-table th { background: rgba(39,29,86,0.9); color: var(--c-gold); font-weight: 600; white-space: nowrap; width: 38%; }
.info-table td { color: rgba(255,255,255,0.82); }
.info-table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); }

/* ========== RTP BAR ========== */
.rtp-bar { margin: 10px 0; }
.rtp-bar-track { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.rtp-bar-fill { height: 100%; background: linear-gradient(90deg, var(--c-btn-green), var(--c-gold)); border-radius: 4px; }

/* ========== PROS CONS ========== */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pros, .cons {
  background: rgba(0,0,0,0.15); border-radius: var(--radius);
  padding: 18px 20px;
}
.pros { border-left: 3px solid var(--c-btn-green); }
.cons { border-left: 3px solid #c0392b; }
.pros-title, .cons-title { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.pros-title { color: #5dbb3d; }
.cons-title { color: #e74c3c; }
.pros ul li::before { content: '+'; color: #5dbb3d; font-weight: 700; margin-right: 6px; }
.cons ul li::before { content: '-'; color: #e74c3c; font-weight: 700; margin-right: 6px; }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros ul li, .cons ul li { font-size: 13px; color: var(--c-text-muted); padding: 4px 0; }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease both; }
.fade-in-d1 { animation-delay: 0.1s; }
.fade-in-d2 { animation-delay: 0.2s; }
.fade-in-d3 { animation-delay: 0.3s; }

@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.gold-shimmer {
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-gold-light) 50%, var(--c-gold) 100%);
  background-size: 400px 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2.5s linear infinite;
}

/* ========== UTILITY ========== */
.text-gold { color: var(--c-gold); }
.text-muted { color: var(--c-text-muted); }
.text-center { text-align: center; }
.text-sm { font-size: 13px; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; } .gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .flex-wrap { flex-wrap: wrap; } .items-center { align-items: center; }
.w-100 { width: 100%; }

/* ========== HIDDEN WP ELEMENTS (decoy) ========== */
.wp-block-separator,.wp-block-spacer,.alignleft,.alignright,.aligncenter,.wp-caption,.screen-reader-text,.skip-link,.entry-content,.post-thumbnail,.entry-meta,.cat-links,.tags-links,.comments-link,.edit-link { display: none !important; }

/* ========== INFO PAGE ========== */
.info-content { max-width: 820px; margin: 0 auto; }
.info-content h2 { font-size: 1.4rem; color: var(--c-gold); margin: 28px 0 12px; }
.info-content h3 { font-size: 1.15rem; color: #fff; margin: 20px 0 8px; }
.info-content p { color: var(--c-text-muted); margin-bottom: 12px; font-size: 14px; line-height: 1.7; }
.info-content ul, .info-content ol { color: var(--c-text-muted); font-size: 14px; margin-bottom: 12px; }
.info-content li { margin-bottom: 5px; }
.info-content a { color: var(--c-gold); text-decoration: underline; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-actions-btn { display: none; }
  .burger { display: flex; }
  .app-grid { grid-template-columns: 1fr; }
  .app-phone-wrap { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .hero { min-height: 420px; }
  .hero-content { padding: 40px 20px; }
  .sticky-widget { flex-wrap: wrap; padding: 8px 16px; }
  .sticky-text { font-size: 12px; }
}
@media (max-width: 480px) {
  .toc-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .header-inner { padding: 8px 14px; }
  .header-logo img { height: 40px; }
  .games-grid { grid-template-columns: 1fr 1fr; }
}
