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

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

:root {
  --c-bg: #080018;
  --c-header: #00000a;
  --c-footer: #00000a;
  --c-primary: #ffa658;
  --c-secondary: #dec867;
  --c-text: #e8e0f5;
  --c-text-muted: #9d90bb;
  --c-border: rgba(222,200,103,0.18);
  --c-card: rgba(255,255,255,0.04);
  --c-card-hover: rgba(255,255,255,0.07);
  --c-overlay: rgba(8,0,24,0.82);
  --radius: 12px;
  --radius-sm: 7px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --shadow: 0 4px 32px rgba(0,0,0,0.45);
  --glow-primary: 0 0 18px rgba(255,166,88,0.35);
  --glow-secondary: 0 0 18px rgba(222,200,103,0.3);
  --font: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

html { background: var(--c-bg); scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--c-bg); color: var(--c-text); font-size: 16px; line-height: 1.6; min-height: 100vh; overflow-x: hidden; }
a { color: var(--c-secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; }

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

.xq7a2 { display: none; }
.wp-block-group { display: block; }
.entry-content { display: block; }
.elementor-widget-wrap { display: block; }
.pf3m9k { visibility: hidden; height: 0; overflow: hidden; }
.yoast-seo-meta-tag { display: none; }

.x9r2lp { opacity: 0; pointer-events: none; position: absolute; top: -9999px; left: -9999px; }
.wp-block-columns { display: none; }
.elementor-section { display: none; }
.fl-builder-content { display: none; }

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

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; transition: all var(--transition); cursor: pointer; text-decoration: none; white-space: nowrap; border: none; }
.btn--primary { background: linear-gradient(135deg, #ffa658 0%, #ff8528 100%); color: #1a0a00; box-shadow: var(--glow-primary); }
.btn--primary:hover { background: linear-gradient(135deg, #ffb870 0%, #ff9940 100%); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,166,88,0.5); color: #1a0a00; }
.btn--secondary { background: linear-gradient(135deg, #dec867 0%, #c9ae45 100%); color: #1a1000; box-shadow: var(--glow-secondary); }
.btn--secondary:hover { background: linear-gradient(135deg, #ecd87a 0%, #d4bc55 100%); transform: translateY(-2px); color: #1a1000; }
.btn--outline { background: transparent; border: 1.5px solid var(--c-secondary); color: var(--c-secondary); }
.btn--outline:hover { background: var(--c-secondary); color: #1a1000; }
.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius); }
.btn--sm { padding: 7px 14px; font-size: 13px; }

.site-header { background: var(--c-header); border-bottom: 1px solid rgba(222,200,103,0.12); position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 20px; max-width: 1200px; margin: 0 auto; }
.header-logo { flex-shrink: 0; }
.header-logo img { height: 42px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: var(--radius-sm); color: var(--c-text); font-size: 14px; font-weight: 500; transition: all var(--transition); }
.header-nav a:hover, .header-nav a.active { color: var(--c-secondary); background: rgba(222,200,103,0.08); }
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.online-count { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--c-text-muted); white-space: nowrap; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: #4cff91; box-shadow: 0 0 8px #4cff91; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.burger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 38px; height: 38px; background: transparent; border: 1.5px solid rgba(222,200,103,0.3); border-radius: var(--radius-sm); gap: 5px; cursor: pointer; transition: border-color var(--transition); }
.burger span { display: block; width: 20px; height: 2px; background: var(--c-secondary); border-radius: 2px; transition: all 0.3s; }
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 560px; display: flex; align-items: center; background: url('/hero-banner.png') center/cover no-repeat; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,0,24,0.88) 0%, rgba(8,0,24,0.5) 60%, rgba(8,0,24,0.75) 100%); }
.hero-inner { position: relative; z-index: 1; max-width: 700px; padding: 80px 20px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(222,200,103,0.15); border: 1px solid rgba(222,200,103,0.3); border-radius: 30px; padding: 5px 14px; font-size: 13px; color: var(--c-secondary); margin-bottom: 20px; }
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 { font-size: clamp(28px,5vw,52px); font-weight: 900; line-height: 1.15; color: #fff; margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.hero h1 span { color: var(--c-primary); }
.hero-desc { font-size: 17px; color: rgba(232,224,245,0.88); line-height: 1.65; margin-bottom: 30px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-bonus-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,166,88,0.12); border: 1px solid rgba(255,166,88,0.3); border-radius: 8px; padding: 8px 16px; font-size: 14px; color: var(--c-primary); margin-top: 24px; }

.breadcrumbs { background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--c-border); padding: 10px 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; font-size: 13px; }
.breadcrumbs li { display: flex; align-items: center; gap: 4px; color: var(--c-text-muted); }
.breadcrumbs li a { color: var(--c-text-muted); }
.breadcrumbs li a:hover { color: var(--c-secondary); }
.breadcrumbs li:not(:last-child)::after { content: '›'; margin-left: 4px; color: rgba(255,255,255,0.2); }
.breadcrumbs li:last-child { color: var(--c-secondary); }

.section { padding: 60px 0; }
.section--sm { padding: 40px 0; }
.section-title { font-size: clamp(20px,3vw,30px); font-weight: 700; color: #fff; margin-bottom: 10px; }
.section-title span { color: var(--c-primary); }
.section-subtitle { color: var(--c-text-muted); font-size: 15px; margin-bottom: 36px; }
.section-header { margin-bottom: 36px; }

.toc-block { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 40px; }
.toc-block h2 { font-size: 17px; font-weight: 700; color: var(--c-secondary); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.toc-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.toc-list a { display: flex; align-items: center; gap: 8px; color: var(--c-text); font-size: 14px; padding: 7px 10px; border-radius: var(--radius-sm); transition: all var(--transition); }
.toc-list a:hover { background: rgba(222,200,103,0.08); color: var(--c-secondary); }
.toc-list a svg { width: 15px; height: 15px; color: var(--c-secondary); flex-shrink: 0; }

.advantages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.advantage-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 24px 20px; transition: all var(--transition); }
.advantage-card:hover { background: var(--c-card-hover); border-color: rgba(222,200,103,0.35); transform: translateY(-3px); }
.advantage-card .icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(255,166,88,0.15), rgba(222,200,103,0.1)); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.advantage-card .icon svg { width: 24px; height: 24px; color: var(--c-primary); }
.advantage-card h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.advantage-card p { font-size: 13px; color: var(--c-text-muted); line-height: 1.55; }

.jackpots-block { background: linear-gradient(135deg, rgba(255,166,88,0.08) 0%, rgba(222,200,103,0.06) 100%); border: 1px solid rgba(255,166,88,0.2); border-radius: var(--radius-lg); padding: 40px; text-align: center; }
.jackpot-amount { font-size: clamp(42px,7vw,80px); font-weight: 900; background: linear-gradient(135deg, #ffa658, #dec867); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin: 16px 0; display: block; animation: jackpot-shine 3s ease-in-out infinite; }
@keyframes jackpot-shine { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.2); } }
.jackpot-label { font-size: 13px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1.5px; }
.jackpot-sub { font-size: 14px; color: var(--c-text); margin-top: 8px; }
.jackpot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.jackpot-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,166,88,0.15); border-radius: var(--radius); padding: 20px 14px; }
.jackpot-item .j-label { font-size: 12px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.jackpot-item .j-val { font-size: 24px; font-weight: 800; color: var(--c-primary); }

.bonuses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bonus-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.bonus-card:hover { border-color: rgba(255,166,88,0.35); transform: translateY(-3px); box-shadow: var(--glow-primary); }
.bonus-card-top { padding: 28px 22px 18px; background: linear-gradient(135deg, rgba(255,166,88,0.1), rgba(222,200,103,0.06)); flex: 1; }
.bonus-card-top .bonus-tag { display: inline-block; background: var(--c-primary); color: #1a0a00; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 30px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.bonus-card-top h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.bonus-card-top .bonus-amount { font-size: 32px; font-weight: 900; color: var(--c-primary); }
.bonus-card-top p { font-size: 13px; color: var(--c-text-muted); margin-top: 10px; line-height: 1.5; }
.bonus-card-bottom { padding: 16px 22px; border-top: 1px solid var(--c-border); }
.bonus-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.bonus-meta span { font-size: 12px; color: var(--c-text-muted); display: flex; align-items: center; gap: 4px; }
.bonus-meta span svg { width: 13px; height: 13px; color: var(--c-secondary); }

.slots-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.slot-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.slot-card:hover { transform: translateY(-4px); border-color: rgba(255,166,88,0.4); box-shadow: var(--shadow); }
.slot-img { width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, #1a0040 0%, #2d0060 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.slot-img svg { width: 48px; height: 48px; color: rgba(222,200,103,0.3); }
/* Art is padded to a square with transparency, so the gradient shows through. */
.slot-img img { width: 100%; height: 100%; object-fit: contain; }
.slot-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%); }
.slot-info { padding: 10px 12px; }
.slot-info h4 { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.slot-info .provider { font-size: 11px; color: var(--c-text-muted); margin-bottom: 8px; }

.demo-block { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; }
.demo-header { padding: 24px 28px; border-bottom: 1px solid var(--c-border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.demo-iframe-wrap { position: relative; padding-bottom: 56.25%; height: 0; background: #0d0025; }
.demo-iframe-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.demo-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; background: linear-gradient(135deg, #0d0025, #1a0040); }
.demo-placeholder svg { width: 64px; height: 64px; color: rgba(222,200,103,0.3); }
.demo-placeholder p { color: var(--c-text-muted); font-size: 14px; }

.review-content { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 36px 40px; }
.review-content h2, .review-content h3, .review-content h4 { color: #fff; margin: 28px 0 12px; }
.review-content h2 { font-size: 22px; }
.review-content h3 { font-size: 18px; color: var(--c-secondary); }
.review-content h4 { font-size: 16px; }
.review-content p { color: var(--c-text); line-height: 1.72; margin-bottom: 16px; }
.review-content ul { margin: 14px 0 18px 20px; list-style: disc; }
.review-content ul li { color: var(--c-text); line-height: 1.65; margin-bottom: 7px; }
.review-content ol { margin: 14px 0 18px 20px; list-style: decimal; }
.review-content ol li { color: var(--c-text); line-height: 1.65; margin-bottom: 7px; }
.review-content table { width: 100%; border-collapse: collapse; margin: 20px 0; overflow-x: auto; display: block; min-width: 400px; }
.review-content table th, .review-content table td { padding: 11px 16px; text-align: left; border: 1px solid var(--c-border); font-size: 14px; }
.review-content table th { background: rgba(222,200,103,0.1); color: var(--c-secondary); font-weight: 600; }
.review-content table td { color: var(--c-text); background: rgba(255,255,255,0.02); }
.review-content a { color: var(--c-secondary); text-decoration: underline; }
.review-content a:hover { color: var(--c-primary); }
.review-content strong { color: #fff; font-weight: 600; }
.review-content em { color: var(--c-text-muted); font-style: italic; }
.review-content blockquote { border-left: 3px solid var(--c-secondary); padding: 12px 20px; background: rgba(222,200,103,0.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 20px 0; color: var(--c-text-muted); font-style: italic; }
.review-content hr { border: none; border-top: 1px solid var(--c-border); margin: 28px 0; }
.review-content img { border-radius: var(--radius-sm); margin: 16px 0; }
.review-content pre { background: rgba(0,0,0,0.4); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 16px; overflow-x: auto; font-size: 13px; margin: 16px 0; }
.review-content code { background: rgba(222,200,103,0.1); padding: 2px 6px; border-radius: 4px; font-size: 13px; color: var(--c-secondary); }

.steps-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--c-border); }
.steps-table th { background: rgba(222,200,103,0.12); color: var(--c-secondary); font-weight: 600; padding: 13px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--c-border); }
.steps-table td { padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14px; color: var(--c-text); vertical-align: top; }
.steps-table tr:last-child td { border-bottom: none; }
.steps-table tr:hover td { background: rgba(255,255,255,0.02); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: linear-gradient(135deg, #ffa658, #ff8528); color: #1a0a00; font-weight: 700; font-size: 13px; border-radius: 50%; flex-shrink: 0; }
.steps-td-step { display: flex; align-items: flex-start; gap: 10px; }
.steps-wrap { overflow-x: auto; border-radius: var(--radius); }

.responsible-block { background: linear-gradient(135deg, rgba(75,0,130,0.15), rgba(8,0,24,0.8)); border: 1px solid rgba(222,200,103,0.15); border-radius: var(--radius-lg); padding: 40px; }
.responsible-intro { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px; }
.responsible-intro .icon-wrap { flex-shrink: 0; width: 56px; height: 56px; background: rgba(255,166,88,0.12); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.responsible-intro .icon-wrap svg { width: 28px; height: 28px; color: var(--c-primary); }
.responsible-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-top: 24px; }
.responsible-link { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 12px 16px; transition: all var(--transition); }
.responsible-link:hover { border-color: rgba(222,200,103,0.3); background: rgba(222,200,103,0.06); }
.responsible-link svg { width: 20px; height: 20px; color: var(--c-secondary); flex-shrink: 0; }
.responsible-link span { font-size: 13px; color: var(--c-text); font-weight: 500; }
.responsible-tips { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-top: 22px; }
.responsible-tip { background: rgba(255,255,255,0.03); border-left: 3px solid var(--c-primary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 12px 16px; font-size: 13px; color: var(--c-text); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.is-open { border-color: rgba(222,200,103,0.3); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; gap: 12px; }
.faq-question h3 { font-size: 15px; font-weight: 500; color: #fff; flex: 1; margin: 0; }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(222,200,103,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s; }
.faq-icon svg { width: 12px; height: 12px; color: var(--c-secondary); }
.faq-item.is-open .faq-icon { transform: rotate(180deg); background: rgba(222,200,103,0.2); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer p { padding: 0 22px 18px; font-size: 14px; color: var(--c-text-muted); line-height: 1.65; }
.faq-item.is-open .faq-answer { max-height: 400px; }

.author-block { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 32px 36px; display: flex; gap: 28px; align-items: flex-start; }
.author-avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(222,200,103,0.3); flex-shrink: 0; background: linear-gradient(135deg, #1a0040, #2d0060); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.author-avatar svg { width: 44px; height: 44px; color: rgba(222,200,103,0.4); }
.author-info { flex: 1; }
.author-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.author-role { font-size: 13px; color: var(--c-primary); font-weight: 500; margin-bottom: 12px; }
.author-bio { font-size: 14px; color: var(--c-text); line-height: 1.65; margin-bottom: 14px; }
.author-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--c-text-muted); margin-bottom: 14px; }
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-meta span svg { width: 13px; height: 13px; color: var(--c-secondary); }
.author-socials { display: flex; gap: 10px; }
.author-social { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; font-size: 12px; color: var(--c-text); transition: all var(--transition); }
.author-social:hover { border-color: rgba(222,200,103,0.4); color: var(--c-secondary); background: rgba(222,200,103,0.07); }
.author-social svg { width: 14px; height: 14px; }

.site-footer { background: var(--c-footer); border-top: 1px solid rgba(222,200,103,0.12); padding: 50px 0 24px; margin-top: 60px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-logo { display: flex; flex-direction: column; gap: 14px; }
.footer-logo img { height: 38px; width: auto; }
.footer-logo-country { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--c-text-muted); }
.footer-logo-country img { width: 22px; height: 16px; border-radius: 2px; }
.footer-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; margin-top: 6px; }
.footer-nav h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-secondary); margin-bottom: 14px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 7px; }
.footer-nav ul a { font-size: 13px; color: var(--c-text-muted); transition: color var(--transition); }
.footer-nav ul a:hover { color: var(--c-secondary); }
.footer-nav-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.footer-social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer-social:hover { background: rgba(222,200,103,0.12); border-color: rgba(222,200,103,0.3); }
.footer-social svg { width: 16px; height: 16px; color: var(--c-text-muted); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 20px 0; }
.footer-logos-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; padding: 20px 0; }
.footer-logo-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 7px 14px; font-size: 11px; color: var(--c-text-muted); font-weight: 600; display: flex; align-items: center; gap: 6px; white-space: nowrap; transition: all var(--transition); }
.footer-logo-badge svg { width: 16px; height: 16px; }
.footer-logo-badge:hover { border-color: rgba(222,200,103,0.25); color: var(--c-text); }
.footer-logos-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.25); width: 100%; text-align: center; margin-bottom: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.7; text-align: center; }
.footer-legal a { color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--c-secondary); }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.25); text-align: center; margin-top: 10px; }

.sticky-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: linear-gradient(90deg, #0d0025 0%, #00000a 100%); border-top: 1px solid rgba(255,166,88,0.3); padding: 12px 20px; box-shadow: 0 -4px 24px rgba(0,0,0,0.5); }
.sticky-widget-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sticky-widget-text { display: flex; flex-direction: column; }
.sticky-widget-text strong { font-size: 15px; color: #fff; font-weight: 700; }
.sticky-widget-text span { font-size: 12px; color: var(--c-primary); }
.sticky-widget-close { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); flex-shrink: 0; }
.sticky-widget-close:hover { background: rgba(255,255,255,0.15); }
.sticky-widget-close svg { width: 12px; height: 12px; color: var(--c-text-muted); }
body.widget-closed .sticky-widget { display: none; }
body.widget-closed main { padding-bottom: 0; }

.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 997; opacity: 0; transition: opacity 0.3s; }
.mobile-nav-overlay.is-open { opacity: 1; }
.mobile-nav { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: #00000d; z-index: 998; transition: right 0.35s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; padding: 24px 20px; border-left: 1px solid rgba(222,200,103,0.12); }
.mobile-nav.is-open { right: 0; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-close { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.07); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.mobile-nav-close svg { width: 14px; height: 14px; color: var(--c-text-muted); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.mobile-nav ul a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: var(--radius-sm); color: var(--c-text); font-size: 15px; transition: all var(--transition); }
.mobile-nav ul a:hover { background: rgba(222,200,103,0.08); color: var(--c-secondary); }
.mobile-nav ul a svg { width: 17px; height: 17px; color: var(--c-secondary); }
.mobile-nav-btns { display: flex; flex-direction: column; gap: 10px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-btns .btn { justify-content: center; }

.wp-content-area { display: block; }
.wp-page-banner { display: none; }
.page-template-default { display: block; }

.slider-wrap { position: relative; overflow: hidden; }
/* Desktop keeps the real grid layout (.slots-grid / .bonuses-grid).
   The flex slider is mobile-only - see the max-width:768px block. */
.slider-track { transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.slider-nav { display: none; gap: 10px; justify-content: center; margin-top: 16px; }
.slider-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); }
.slider-btn:hover { background: rgba(222,200,103,0.15); border-color: rgba(222,200,103,0.3); }
.slider-btn:disabled { opacity: 0.35; cursor: default; }
.slider-btn:disabled:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.slider-btn svg { width: 16px; height: 16px; color: var(--c-text); }

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

.info-page-content { max-width: 800px; margin: 0 auto; padding: 50px 20px; }
.info-page-content h1 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 24px; }
.info-page-content h2 { font-size: 20px; font-weight: 600; color: var(--c-secondary); margin: 28px 0 10px; }
.info-page-content p { font-size: 15px; color: var(--c-text); line-height: 1.7; margin-bottom: 16px; }
.info-page-content ul { margin: 12px 0 18px 20px; list-style: disc; }
.info-page-content ul li { color: var(--c-text); font-size: 15px; line-height: 1.65; margin-bottom: 6px; }
.info-page-content a { color: var(--c-secondary); text-decoration: underline; }
.info-page-content a:hover { color: var(--c-primary); }
.info-page-content .contact-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 28px 32px; margin: 24px 0; }
.info-page-content .contact-card h3 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 14px; }
.info-page-content .contact-card p { margin-bottom: 8px; }
.info-page-content .contact-card a { color: var(--c-primary); }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .jackpot-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
  .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .online-count { display: none; }
  /* Inloggen/Registreren live in the burger menu on mobile (.mobile-nav-btns) */
  .header-actions .btn { display: none; }
  .burger { display: flex; }
  .hero { min-height: 460px; }
  .hero-inner { padding: 60px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-nav-cols { grid-template-columns: 1fr 1fr; }
  .jackpot-grid { grid-template-columns: repeat(2, 1fr); }
  .author-block { flex-direction: column; gap: 18px; }
  .toc-list { grid-template-columns: 1fr 1fr; }
  /* Mobile slider: one card per view. Every slide must share the SAME width,
     otherwise the JS step (measured between slides) drifts out of sync. */
  .slider-track { display: flex; flex-wrap: nowrap; gap: 14px; }
  .slider-track > * { flex: 0 0 80vw; width: 80vw; max-width: 80vw; min-width: 0; }
  .responsible-intro { flex-direction: column; gap: 14px; }
  .review-content { padding: 24px 20px; }
  .jackpots-block { padding: 28px 20px; }
  .slider-nav { display: flex; }
}

@media (max-width: 480px) {
  .slider-track > * { flex-basis: 86vw; width: 86vw; max-width: 86vw; }
  .toc-list { grid-template-columns: 1fr; }
  .footer-nav-cols { grid-template-columns: 1fr; }
  .jackpot-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .responsible-links { grid-template-columns: 1fr; }
  .responsible-tips { grid-template-columns: 1fr; }
  .sticky-widget-inner { flex-wrap: wrap; gap: 10px; }
  .sticky-widget-text strong { font-size: 14px; }
}

.m3k9z { color: transparent; font-size: 0; line-height: 0; user-select: none; pointer-events: none; }
