:root {
    --c-header: #797979;
    --c-footer: #797979;
    --c-bg: #ffad0b;
    --c-btn-red: #960000;
    --c-btn-green: #00e844;
    --c-btn-green-dark: #00b835;
    --c-btn-red-dark: #720000;
    --c-text-dark: #1a1a1a;
    --c-text-light: #f5f5f5;
    --c-text-muted: #555;
    --c-white: #ffffff;
    --c-block-bg: #fff8ec;
    --c-block-alt: #fff3d6;
    --c-border: #e0c07a;
    --c-accent: #960000;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-card: 0 4px 18px rgba(0,0,0,.10);
    --font-head: 'Archivo Black', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --trans: .22s ease;
}

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

html { scroll-behavior: smooth; background: var(--c-bg); }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text-dark);
    background: var(--c-bg);
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.2; color: var(--c-text-dark); }
a { color: var(--c-accent); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--c-btn-red-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.22);
    padding: 10px 0;
}

.hdr-inner { gap: 12px; flex-wrap: wrap; }

.hdr-logo img { width: 140px; height: auto; }

.hdr-jackpot-ticker {
    background: rgba(0,0,0,.35);
    border-radius: 20px;
    padding: 5px 14px;
    gap: 7px;
    color: var(--c-btn-green);
    font-family: var(--font-head);
    font-size: .85rem;
    white-space: nowrap;
}
.jackpot-label { color: var(--c-text-light); font-size: .8rem; }
.jackpot-value { font-size: 1rem; animation: jackpotPulse 2.5s ease-in-out infinite; }
@keyframes jackpotPulse { 0%,100% { opacity:1; } 50% { opacity:.65; } }

.hdr-nav { gap: 4px; }
.hdr-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--c-text-light);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-weight: 600;
    transition: background var(--trans), color var(--trans);
}
.hdr-nav-link:hover { background: rgba(255,255,255,.15); color: var(--c-btn-green); }

.hdr-cta-group { gap: 8px; }

.btn-play-hdr, .btn-bonus-hdr {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    cursor: pointer;
    border: none;
    transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
    white-space: nowrap;
    text-decoration: none;
}
.btn-play-hdr {
    background: var(--c-btn-green);
    color: #000;
    box-shadow: 0 3px 10px rgba(0,232,68,.35);
}
.btn-play-hdr:hover { background: var(--c-btn-green-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,232,68,.45); color: #000; }

.btn-bonus-hdr {
    background: var(--c-btn-red);
    color: var(--c-text-light);
    box-shadow: 0 3px 10px rgba(150,0,0,.35);
}
.btn-bonus-hdr:hover { background: var(--c-btn-red-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(150,0,0,.45); color: var(--c-text-light); }

.hdr-burger {
    background: transparent;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: var(--radius-sm);
    padding: 7px 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    transition: border-color var(--trans);
}
.hdr-burger:hover { border-color: var(--c-btn-green); }
.burger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text-light);
    border-radius: 2px;
    transition: transform var(--trans), opacity var(--trans);
}
.hdr-burger.is-open .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.is-open .burger-bar:nth-child(2) { opacity: 0; }
.hdr-burger.is-open .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    background: #3a3a3a;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4,0,.2,1);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.mobile-menu.is-open { max-height: 420px; }
.mobile-menu-inner { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.mob-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--c-text-light);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background var(--trans);
}
.mob-nav-link:hover { background: rgba(255,255,255,.1); color: var(--c-btn-green); }
.mob-cta-group { display: flex; flex-direction: column; gap: 8px; padding-top: 10px; margin-top: 4px; border-top: 1px solid rgba(255,255,255,.1); }
.mob-cta-group .btn-play-hdr, .mob-cta-group .btn-bonus-hdr { justify-content: center; }
.mob-footer-links { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 8px; }
.mob-info-link { color: rgba(255,255,255,.6); font-size: .8rem; }
.mob-info-link:hover { color: var(--c-btn-green); }

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a0a00;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .55;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(150,0,0,.7) 0%, rgba(0,0,0,.55) 60%, rgba(255,173,11,.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 60px 16px;
}
.hero-badge {
    display: inline-block;
    background: var(--c-btn-red);
    color: var(--c-text-light);
    font-size: .75rem;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    animation: fadeInDown .6s ease;
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: var(--c-white);
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
    animation: fadeInUp .7s ease .1s both;
}
.hero-title span { color: var(--c-btn-green); }
.hero-subtitle {
    color: rgba(255,255,255,.88);
    font-size: 1.1rem;
    margin-bottom: 28px;
    line-height: 1.65;
    animation: fadeInUp .7s ease .2s both;
}
.hero-stats-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp .7s ease .3s both;
}
.hero-stat {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    text-align: center;
}
.hero-stat-value { font-family: var(--font-head); font-size: 1.2rem; color: var(--c-btn-green); display: block; }
.hero-stat-label { font-size: .72rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; }
.hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp .7s ease .4s both;
}

.btn-primary-lg, .btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-md);
    font-family: var(--font-head);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
    border: none;
    transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
    text-decoration: none;
}
.btn-primary-lg {
    background: var(--c-btn-green);
    color: #000;
    box-shadow: 0 5px 20px rgba(0,232,68,.4);
}
.btn-primary-lg:hover { background: var(--c-btn-green-dark); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,232,68,.5); color: #000; }

.btn-secondary-lg {
    background: transparent;
    color: var(--c-white);
    border: 2px solid rgba(255,255,255,.6);
}
.btn-secondary-lg:hover { background: rgba(255,255,255,.12); border-color: var(--c-white); transform: translateY(-3px); color: var(--c-white); }

@keyframes fadeInDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

.site-content { background: var(--c-bg); }

.section-block {
    background: var(--c-block-bg);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--c-border);
}
.section-block-alt {
    background: var(--c-block-alt);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--c-border);
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.4rem,3vw,2rem);
    color: var(--c-text-dark);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--c-btn-red);
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title svg { flex-shrink: 0; color: var(--c-btn-red); }

.toc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-top: 16px; }
.toc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--c-text-dark);
    font-weight: 600;
    font-size: .9rem;
    transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
    text-decoration: none;
}
.toc-item:hover { background: var(--c-btn-red); color: var(--c-white); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(150,0,0,.25); }
.toc-item svg { flex-shrink: 0; }

.demo-block { position: relative; }
.demo-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #0d0d0d;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--c-btn-red);
    margin-bottom: 16px;
}
.demo-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.demo-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 14px; }

.advantages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 16px; }
.advantage-card {
    background: var(--c-white);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-card);
    transition: transform var(--trans), box-shadow var(--trans);
}
.advantage-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(150,0,0,.15); }
.advantage-icon { width: 52px; height: 52px; background: var(--c-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.advantage-icon svg { color: var(--c-btn-red); }
.advantage-title { font-family: var(--font-head); font-size: 1rem; margin-bottom: 8px; }
.advantage-desc { font-size: .875rem; color: var(--c-text-muted); line-height: 1.6; }

.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }
@media (max-width: 576px) { .pros-cons-grid { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
    border-radius: var(--radius-md);
    padding: 22px 20px;
    border: 2px solid;
}
.pros-box { background: #f0fff4; border-color: #00e844; }
.cons-box { background: #fff0f0; border-color: #960000; }
.pros-cons-title { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.pros-box .pros-cons-title { color: #007a23; }
.cons-box .pros-cons-title { color: var(--c-btn-red); }
.pros-cons-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pros-cons-list li { display: flex; align-items: flex-start; gap: 9px; font-size: .9rem; line-height: 1.55; }
.pros-cons-list li::before { content: ''; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; display: block; margin-top: 2px; }
.pros-box .pros-cons-list li::before { background: var(--c-btn-green); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.cons-box .pros-cons-list li::before { background: var(--c-btn-red); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

.strategies-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 16px; }
.strategy-card {
    background: var(--c-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform var(--trans), box-shadow var(--trans);
}
.strategy-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(150,0,0,.18); }
.strategy-img { width: 100%; height: 160px; object-fit: cover; }
.strategy-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.strategy-tag { display: inline-block; background: var(--c-bg); color: var(--c-btn-red); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; }
.strategy-name { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 8px; color: var(--c-text-dark); }
.strategy-desc { font-size: .875rem; color: var(--c-text-muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.btn-strategy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--c-btn-red);
    color: var(--c-text-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background var(--trans), transform var(--trans);
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}
.btn-strategy:hover { background: var(--c-btn-red-dark); transform: translateY(-2px); color: var(--c-text-light); }

.review-content-block { margin-top: 16px; }

.prose-content h2 { font-size: 1.5rem; margin: 28px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--c-border); }
.prose-content h3 { font-size: 1.2rem; margin: 22px 0 10px; color: var(--c-btn-red); }
.prose-content h4 { font-size: 1rem; margin: 18px 0 8px; }
.prose-content p { margin-bottom: 14px; line-height: 1.75; }
.prose-content ul, .prose-content ol { padding-left: 22px; margin-bottom: 14px; }
.prose-content li { margin-bottom: 6px; line-height: 1.65; }
.prose-content a { color: var(--c-accent); text-decoration: underline; }
.prose-content a:hover { color: var(--c-btn-red-dark); }
.prose-content strong { font-weight: 700; }
.prose-content em { font-style: italic; }
.prose-content blockquote { border-left: 4px solid var(--c-btn-red); padding: 10px 18px; margin: 18px 0; background: var(--c-block-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; }
.prose-content table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .9rem; overflow-x: auto; display: block; }
.prose-content table th, .prose-content table td { border: 1px solid var(--c-border); padding: 10px 14px; text-align: left; }
.prose-content table th { background: var(--c-header); color: var(--c-text-light); font-family: var(--font-head); }
.prose-content table tr:nth-child(even) td { background: var(--c-block-alt); }
.prose-content img { border-radius: var(--radius-sm); margin: 14px auto; }
.prose-content hr { border: none; border-top: 2px solid var(--c-border); margin: 24px 0; }

.faq-block { margin-top: 16px; }
.faq-item {
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    background: var(--c-white);
    overflow: hidden;
    transition: box-shadow var(--trans);
}
.faq-item:hover { box-shadow: 0 3px 12px rgba(150,0,0,.1); }
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .95rem;
    color: var(--c-text-dark);
    transition: background var(--trans);
}
.faq-question:hover { background: rgba(255,173,11,.12); }
.faq-question.is-open { color: var(--c-btn-red); background: rgba(150,0,0,.05); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--trans); color: var(--c-btn-red); }
.faq-question.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.4,0,.2,1), padding var(--trans); padding: 0 20px; }
.faq-answer.is-open { max-height: 600px; padding: 0 20px 18px; }
.faq-answer p { margin: 0; font-size: .9rem; line-height: 1.7; color: var(--c-text-muted); }

.author-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.author-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--c-bg);
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
    flex-shrink: 0;
}
.author-info { flex: 1; min-width: 0; }
.author-name { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 4px; }
.author-role { font-size: .875rem; color: var(--c-btn-red); font-weight: 700; margin-bottom: 6px; }
.author-location { font-size: .8rem; color: var(--c-text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.author-bio { font-size: .9rem; line-height: 1.7; color: var(--c-text-muted); margin-bottom: 12px; }
.author-meta-row { display: flex; gap: 14px; flex-wrap: wrap; font-size: .8rem; color: var(--c-text-muted); margin-bottom: 12px; }
.author-meta-item { display: flex; align-items: center; gap: 5px; }
.author-social-links { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.author-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    border: 1px solid var(--c-border);
    color: var(--c-text-dark);
    transition: background var(--trans), color var(--trans), border-color var(--trans);
    text-decoration: none;
}
.author-social-link:hover { background: var(--c-btn-red); color: var(--c-white); border-color: var(--c-btn-red); }
.author-dates { margin-top: 12px; font-size: .78rem; color: var(--c-text-muted); display: flex; gap: 16px; flex-wrap: wrap; }
.author-dates span { display: flex; align-items: center; gap: 5px; }

.site-footer {
    background: var(--c-footer);
    color: var(--c-text-light);
    padding: 40px 0 0;
}
.ftr-inner { padding-bottom: 0; }
.ftr-logo-link img { filter: brightness(10); }
.ftr-desc { font-size: .83rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.ftr-flag-wrap { display: flex; align-items: center; gap: 7px; font-size: .8rem; color: rgba(255,255,255,.8); }
.ftr-section-title { font-family: var(--font-head); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-bg); margin-bottom: 10px; margin-top: 0; }
.ftr-nav-link { display: block; color: rgba(255,255,255,.7); font-size: .85rem; padding: 3px 0; transition: color var(--trans); text-decoration: none; }
.ftr-nav-link:hover { color: var(--c-btn-green); }
.ftr-payments-row { display: flex; flex-wrap: wrap; gap: 8px; }
.ftr-pay-badge { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-sm); padding: 5px 12px; font-size: .78rem; font-weight: 600; }
.ftr-provider-link { display: inline-block; }
.ftr-provider-link img { filter: brightness(10) grayscale(1); opacity: .8; transition: opacity var(--trans); }
.ftr-provider-link:hover img { opacity: 1; }
.ftr-social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.ftr-social-link {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: rgba(255,255,255,.8);
    transition: background var(--trans), color var(--trans);
}
.ftr-social-link:hover { background: var(--c-btn-red); color: var(--c-white); border-color: var(--c-btn-red); }
.ftr-trust-row { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); margin: 22px 0 0; }
.ftr-trust-badge {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255,255,255,.8);
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
}
.ftr-trust-18 { background: var(--c-btn-red); color: var(--c-white); border-color: var(--c-btn-red); font-size: .85rem; }
.ftr-trust-badge-link { text-decoration: none; }
.ftr-trust-badge-link:hover .ftr-trust-badge { background: rgba(255,255,255,.2); color: var(--c-white); }
.ftr-bottom { padding: 18px 0 22px; }
.ftr-copyright { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.ftr-legal { font-size: .72rem; color: rgba(255,255,255,.45); line-height: 1.7; }
.ftr-legal a { color: rgba(255,255,255,.65); text-decoration: underline; }
.ftr-legal a:hover { color: var(--c-btn-green); }

.sticky-bonus-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: #1a0a00;
    border-top: 3px solid var(--c-btn-red);
    padding: 12px 16px;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.sticky-bonus-widget.is-visible { transform: translateY(0); }
.sticky-bonus-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 14px; justify-content: space-between; flex-wrap: wrap; }
.sticky-bonus-text { display: flex; flex-direction: column; }
.sticky-bonus-text strong { font-family: var(--font-head); color: var(--c-white); font-size: .95rem; }
.sticky-bonus-text span { font-size: .8rem; color: rgba(255,255,255,.65); }
.sticky-bonus-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--c-btn-green);
    color: #000;
    font-family: var(--font-head);
    font-size: .9rem;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: background var(--trans), transform var(--trans);
    white-space: nowrap;
}
.sticky-bonus-btn:hover { background: var(--c-btn-green-dark); transform: scale(1.03); color: #000; }
.sticky-close-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,.5);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color var(--trans);
}
.sticky-close-btn:hover { color: var(--c-white); }

.info-page-breadcrumbs { font-size: .85rem; color: var(--c-text-muted); display: flex; align-items: center; gap: 7px; }
.info-page-breadcrumbs a { color: var(--c-accent); }
.info-page-box {
    background: var(--c-block-bg);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--c-border);
}
.info-page-title { font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: 22px; }
.info-page-content p { margin-bottom: 14px; line-height: 1.75; }
.info-page-content h2 { font-size: 1.3rem; margin: 22px 0 10px; }
.info-page-content ul, .info-page-content ol { padding-left: 20px; margin-bottom: 14px; }
.info-page-content li { margin-bottom: 5px; line-height: 1.65; }

.game-info-table { width: 100%; border-collapse: collapse; margin-top: 16px; overflow-x: auto; display: block; }
.game-info-table th, .game-info-table td { border: 1px solid var(--c-border); padding: 10px 16px; text-align: left; }
.game-info-table th { background: var(--c-header); color: var(--c-text-light); font-family: var(--font-head); font-size: .85rem; }
.game-info-table td:first-child { font-weight: 700; color: var(--c-btn-red); width: 40%; }
.game-info-table tr:nth-child(even) td { background: var(--c-block-alt); }

.jackpot-tiers-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; justify-content: center; }
.jackpot-tier {
    flex: 1; min-width: 100px; max-width: 180px;
    background: linear-gradient(135deg, #1a0a00, #3a1500);
    border: 2px solid var(--c-btn-red);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    text-align: center;
    color: var(--c-white);
    transition: transform var(--trans), box-shadow var(--trans);
}
.jackpot-tier:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(150,0,0,.35); }
.jackpot-tier-name { font-family: var(--font-head); font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; color: var(--c-bg); margin-bottom: 6px; }
.jackpot-tier-val { font-family: var(--font-head); font-size: 1.3rem; color: var(--c-btn-green); }
.jackpot-tier.is-grand { border-color: var(--c-bg); background: linear-gradient(135deg, #5a2000, #960000); }
.jackpot-tier.is-grand .jackpot-tier-name { color: var(--c-bg); }

.content-area { padding-bottom: 40px; }

@media (max-width: 992px) {
    .section-block, .section-block-alt { padding: 24px 18px; }
}
@media (max-width: 768px) {
    .hero-section { min-height: 420px; }
    .hero-content { padding: 40px 16px; }
    .strategies-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr 1fr; }
    .toc-grid { grid-template-columns: 1fr 1fr; }
    .info-page-box { padding: 22px 16px; }
}
@media (max-width: 480px) {
    .advantages-grid { grid-template-columns: 1fr; }
    .toc-grid { grid-template-columns: 1fr; }
    .hero-stats-row { gap: 10px; }
    .hero-stat { padding: 8px 12px; }
    .hero-stat-value { font-size: 1rem; }
    .section-block, .section-block-alt { padding: 18px 14px; border-radius: var(--radius-md); }
}

.d3k7x { display: none !important; }
.wp-block-separator { margin: 24px 0; border-top: 1px solid var(--c-border); }
.elementor-widget-container { display: contents; }
.yoast-schema-graph { display: none; }
