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

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

:root {
  --clr-header: #3a3e51;
  --clr-body: #3e4464;
  --clr-gold: #af8c2f;
  --clr-green: #3d8f58;
  --clr-text: #f0eefc;
  --clr-text-muted: #b8b4d8;
  --clr-card: #2f3349;
  --clr-card2: #363c5a;
  --clr-border: rgba(175,140,47,0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Rubik', sans-serif; background-color: var(--clr-body); color: var(--clr-text); line-height: 1.6; font-size: 16px; overflow-x: hidden; }

a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: #d4aa3e; }

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

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: #fff; }
h1 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

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

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.02em; cursor: pointer; border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(0); }
.btn--green { background: var(--clr-green); color: #fff; }
.btn--green:hover { background: #47a867; color: #fff; }
.btn--gold { background: var(--clr-gold); color: #1a1a1a; }
.btn--gold:hover { background: #c9a236; color: #1a1a1a; }
.btn--outline { background: transparent; border: 2px solid var(--clr-gold); color: var(--clr-gold); }
.btn--outline:hover { background: var(--clr-gold); color: #1a1a1a; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--sm { padding: 7px 16px; font-size: 0.82rem; }

.section { padding: 60px 0; }
.section--tight { padding: 40px 0; }

.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { display: inline-block; position: relative; padding-bottom: 12px; }
.section-title h2::after { content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 60px; height: 3px; background: var(--clr-gold); border-radius: 2px; }
.section-title p { color: var(--clr-text-muted); margin-top: 8px; }

/* ===== HEADER ===== */
.site-header { background: var(--clr-header); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }
.header-logo img { height: 44px; width: auto; }
.header-jackpot { display: flex; align-items: center; gap: 8px; background: rgba(175,140,47,0.15); border: 1px solid var(--clr-border); border-radius: 999px; padding: 5px 14px; font-size: 0.82rem; color: var(--clr-gold); font-weight: 600; white-space: nowrap; }
.header-jackpot svg { flex-shrink: 0; }
.header-jackpot-amount { font-size: 0.95rem; color: #ffe066; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { display: flex; align-items: center; gap: 5px; padding: 7px 11px; border-radius: var(--radius-sm); color: var(--clr-text-muted); font-size: 0.87rem; font-weight: 500; transition: color var(--transition), background var(--transition); }
.header-nav a:hover, .header-nav a.active { color: #fff; background: rgba(255,255,255,0.08); }
.header-nav svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-cta { display: flex; align-items: center; gap: 8px; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: transparent; }
.burger span { display: block; width: 24px; height: 2px; background: var(--clr-text); 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); }
.mobile-menu { display: none; background: var(--clr-header); border-top: 1px solid rgba(255,255,255,0.08); padding: 16px; }
.mobile-menu.open { display: block; animation: fadeIn 0.2s ease; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.mobile-menu nav a { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--clr-text-muted); font-size: 0.9rem; }
.mobile-menu nav a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.mobile-menu-cta { display: flex; gap: 8px; flex-wrap: wrap; }
.mobile-menu-jackpot { display: flex; align-items: center; gap: 8px; background: rgba(175,140,47,0.15); border: 1px solid var(--clr-border); border-radius: 999px; padding: 7px 14px; font-size: 0.82rem; color: var(--clr-gold); font-weight: 600; width: fit-content; margin-bottom: 14px; }
.mobile-menu-jackpot svg { flex-shrink: 0; }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; padding: 60px 0 70px; background: linear-gradient(135deg, #2a2e40 0%, #3e4464 50%, #2f3349 100%); }
.hero-bg { position: absolute; inset: 0; background-image: url('/img/hero-banner.png'); background-size: cover; background-position: center top; opacity: 0.18; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(175,140,47,0.15); border: 1px solid var(--clr-border); border-radius: 999px; padding: 4px 14px; font-size: 0.78rem; font-weight: 600; color: var(--clr-gold); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.hero h1 { margin-bottom: 16px; }
.hero-desc { color: var(--clr-text-muted); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.hero-tile { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.hero-tile-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(175,140,47,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-tile-icon svg { color: var(--clr-gold); }
.hero-tile-label { font-size: 0.72rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-tile-value { font-size: 0.95rem; font-weight: 700; color: #fff; }
.hero-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 2px solid rgba(175,140,47,0.3); }
.hero-img-wrap img { width: 100%; object-fit: cover; }
.hero-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.hero-stars svg { color: var(--clr-gold); width: 18px; height: 18px; }
.hero-stars span { color: var(--clr-text-muted); font-size: 0.85rem; margin-left: 4px; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { background: rgba(0,0,0,0.2); padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.breadcrumbs-list { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; list-style: none; padding: 0; margin: 0; font-size: 0.82rem; }
.breadcrumbs-list li { display: flex; align-items: center; gap: 4px; color: var(--clr-text-muted); }
.breadcrumbs-list li a { color: var(--clr-text-muted); }
.breadcrumbs-list li a:hover { color: var(--clr-gold); }
.breadcrumbs-list li.active { color: var(--clr-gold); }
.breadcrumbs-list li:not(:last-child)::after { content: '›'; margin-left: 4px; opacity: 0.5; }

/* ===== TABLE OF CONTENTS ===== */
.toc-block { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 40px; }
.toc-title { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; color: #fff; }
.toc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.toc-item { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); transition: background var(--transition); }
.toc-item:hover { background: rgba(175,140,47,0.12); }
.toc-item svg { color: var(--clr-gold); flex-shrink: 0; width: 16px; height: 16px; }
.toc-item a { color: var(--clr-text-muted); font-size: 0.88rem; font-weight: 500; transition: color var(--transition); }
.toc-item:hover a { color: #fff; }

/* ===== DEMO BLOCK ===== */
.demo-block { background: var(--clr-card); border-radius: var(--radius); border: 1px solid var(--clr-border); overflow: hidden; margin-bottom: 40px; }
.demo-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: rgba(0,0,0,0.2); flex-wrap: wrap; gap: 10px; }
.demo-header h3 { color: #fff; font-size: 1rem; }
.demo-wrap { position: relative; width: 100%; padding-top: 56.25%; background: #000; }
.demo-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.demo-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: rgba(0,0,0,0.15); flex-wrap: wrap; gap: 10px; }
.demo-info { display: flex; gap: 20px; font-size: 0.82rem; color: var(--clr-text-muted); }
.demo-info span { display: flex; align-items: center; gap: 5px; }

/* ===== ADVANTAGES ===== */
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.adv-card { background: var(--clr-card); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.adv-card:hover { transform: translateY(-4px); border-color: var(--clr-border); box-shadow: var(--shadow); }
.adv-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(175,140,47,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.adv-icon svg { width: 28px; height: 28px; color: var(--clr-gold); }
.adv-card h4 { margin-bottom: 8px; font-size: 1rem; }
.adv-card p { font-size: 0.85rem; color: var(--clr-text-muted); margin: 0; }

/* ===== VIDEO ===== */
.video-block { background: var(--clr-card); border-radius: var(--radius); border: 1px solid var(--clr-border); overflow: hidden; margin-bottom: 40px; }
.video-header { padding: 18px 24px; background: rgba(0,0,0,0.2); }
.video-header h3 { color: #fff; }
.video-header p { color: var(--clr-text-muted); font-size: 0.85rem; margin: 4px 0 0; }
.video-wrap { position: relative; width: 100%; padding-top: 56.25%; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ===== STRATEGIES ===== */
.strategies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.strategy-card { background: var(--clr-card); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.strategy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.strategy-img { width: 100%; height: 160px; object-fit: cover; }
.strategy-body { padding: 18px; }
.strategy-body h4 { margin-bottom: 6px; font-size: 0.98rem; }
.strategy-body p { font-size: 0.83rem; color: var(--clr-text-muted); margin-bottom: 14px; }
.strategy-tag { display: inline-block; background: rgba(175,140,47,0.15); color: var(--clr-gold); border-radius: 999px; padding: 2px 10px; font-size: 0.73rem; font-weight: 600; margin-bottom: 10px; }

/* ===== CONTENT REVIEW ===== */
.content-review { background: var(--clr-card2); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08); padding: 36px 40px; margin-bottom: 40px; }
.content-review h2, .content-review h3, .content-review h4 { color: #fff; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.content-review h2:first-child, .content-review h3:first-child { margin-top: 0; }
.content-review p { color: var(--clr-text-muted); line-height: 1.75; margin-bottom: 1rem; }
.content-review ul, .content-review ol { color: var(--clr-text-muted); margin-bottom: 1rem; padding-left: 1.6rem; }
.content-review li { margin-bottom: 0.4rem; }
.content-review a { color: var(--clr-gold); }
.content-review a:hover { text-decoration: underline; }
.content-review table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: 0.9rem; }
.content-review th { background: rgba(175,140,47,0.15); color: var(--clr-gold); text-align: left; padding: 10px 14px; border: 1px solid rgba(175,140,47,0.3); }
.content-review td { padding: 9px 14px; border: 1px solid rgba(255,255,255,0.1); color: var(--clr-text-muted); text-align: left; }
.content-review tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.content-review blockquote { border-left: 3px solid var(--clr-gold); padding-left: 16px; margin: 1.2rem 0; color: var(--clr-text-muted); font-style: italic; }
.content-review strong { color: #fff; }
.content-review em { color: var(--clr-text); }
.content-review hr { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.5rem 0; }
.content-review code { background: rgba(0,0,0,0.3); border-radius: 4px; padding: 2px 6px; font-size: 0.85rem; font-family: monospace; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--clr-card); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--clr-border); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; cursor: pointer; user-select: none; }
.faq-question span { font-weight: 600; font-size: 0.95rem; color: #fff; }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--clr-gold); transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 16px; color: var(--clr-text-muted); font-size: 0.9rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ===== AUTHOR ===== */
.author-card { background: var(--clr-card); border-radius: var(--radius); border: 1px solid var(--clr-border); padding: 32px; display: flex; gap: 28px; align-items: flex-start; }
.author-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--clr-gold); }
.author-info h3 { margin-bottom: 4px; }
.author-role { color: var(--clr-gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; font-size: 0.8rem; color: var(--clr-text-muted); }
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-bio { color: var(--clr-text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 14px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-social-link { display: flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.07); color: var(--clr-text-muted); font-size: 0.82rem; transition: background var(--transition), color var(--transition); }
.author-social-link:hover { background: rgba(175,140,47,0.2); color: var(--clr-gold); }
.author-date { font-size: 0.78rem; color: var(--clr-text-muted); margin-top: 10px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--clr-header); border-top: 2px solid rgba(175,140,47,0.2); padding: 48px 0 24px; margin-top: auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-logo { margin-bottom: 12px; }
.footer-logo img { height: 40px; }
.footer-desc { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 16px; }
.footer-col h4 { font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-gold); margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { color: var(--clr-text-muted); font-size: 0.84rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-payments { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-payment-icon { background: rgba(255,255,255,0.07); border-radius: 6px; padding: 5px 10px; font-size: 0.72rem; color: var(--clr-text-muted); font-weight: 600; letter-spacing: 0.03em; }
.footer-socials { display: flex; gap: 10px; margin-bottom: 20px; }
.footer-social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--clr-text-muted); transition: background var(--transition), color var(--transition); }
.footer-social:hover { background: var(--clr-gold); color: #1a1a1a; }
.footer-trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-trust-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 5px 10px; font-size: 0.72rem; color: var(--clr-text-muted); font-weight: 600; }
.footer-trust-badge.highlight { border-color: rgba(61,143,88,0.4); color: #5dc27a; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 24px 0 20px; }
.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copyright { font-size: 0.78rem; color: var(--clr-text-muted); }
.footer-legal { font-size: 0.75rem; color: rgba(184,180,216,0.55); max-width: 560px; line-height: 1.6; }
.footer-flag { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--clr-text-muted); }

/* ===== WIDGET ===== */
.bonus-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: linear-gradient(90deg, #1e2233 0%, #2a2e40 100%); 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); }
.bonus-widget-text { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.bonus-widget-badge { background: var(--clr-gold); color: #1a1a1a; border-radius: 6px; padding: 3px 10px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; flex-shrink: 0; }
.bonus-widget-msg { font-size: 0.88rem; color: var(--clr-text); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bonus-widget-msg strong { color: #ffe066; }
.bonus-widget-close { background: transparent; border: none; color: var(--clr-text-muted); cursor: pointer; padding: 4px; line-height: 1; flex-shrink: 0; }
.bonus-widget-close:hover { color: #fff; }

/* ===== INFO PAGES ===== */
.info-content { background: var(--clr-card2); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08); padding: 40px; }
.info-content h1, .info-content h2, .info-content h3 { color: #fff; margin-top: 1.4rem; margin-bottom: 0.7rem; }
.info-content h1:first-child { margin-top: 0; }
.info-content p, .info-content li { color: var(--clr-text-muted); line-height: 1.75; }
.info-content ul, .info-content ol { padding-left: 1.6rem; margin-bottom: 1rem; }
.info-content a { color: var(--clr-gold); }
.info-content a:hover { text-decoration: underline; }

/* ===== UTILITIES ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes jackpotCount { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.fade-in { animation: fadeInUp 0.5s ease both; }
.text-center { text-align: center; }
.text-muted { color: var(--clr-text-muted); }
.text-gold { color: var(--clr-gold); }
.text-green { color: var(--clr-green); }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-16 { margin-top: 16px; }
.d-flex { display: flex; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* provider info box */
.provider-box { background: rgba(0,0,0,0.2); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.08); padding: 14px 18px; display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.provider-box img { height: 28px; filter: brightness(0) invert(1); opacity: 0.7; }
.provider-box a { color: var(--clr-gold); font-size: 0.85rem; }

/* game info table */
.game-info-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.game-info-table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.game-info-table td { padding: 9px 14px; border: 1px solid rgba(255,255,255,0.08); }
.game-info-table td:first-child { color: var(--clr-text-muted); font-weight: 500; width: 40%; }
.game-info-table td:last-child { color: #fff; font-weight: 600; }

/* block spacing */
main .section:not(:first-child) { padding-top: 48px; }

/* ===== WP COMPAT (non-functional, structural only) ===== */
.wp-block-group, .wp-block-columns, .entry-content, .site-main, .post-thumbnail { display: contents; }
.wp-caption { display: none; }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
[data-elementor-type], [data-elementor-id] { display: contents; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .strategies-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .hero-tiles { grid-template-columns: 1fr; }
  .toc-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .strategies-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .content-review { padding: 20px; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .author-links { justify-content: center; }
  .bonus-widget-msg { display: none; }
  .section { padding: 40px 0; }
  .header-jackpot { display: none; }
  .header-cta a.btn { display: none; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .demo-info { flex-direction: column; gap: 6px; }
  .footer-trust { gap: 8px; }
}

/* hidden unused styles for uniqualization */
.xk7f2-panel, .rp9m3-widget, .qz8t1-overlay, .nv4b6-badge, .lw3j9-ticker { display: none !important; }
.wc-block-grid__products { display: none !important; }
.entry-meta, .entry-footer, .posted-on, .cat-links { display: none !important; }
