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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Manrope', sans-serif;
    background-color: #f46c2e;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: #66cc39; text-decoration: none; transition: color .2s; }
a:hover { color: black; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    line-height: 1.3;
    color: #f4b911;
    margin-bottom: .75em;
}

p { margin-bottom: 1em; line-height: 1.7; }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.col { padding-left: 12px; padding-right: 12px; flex: 1 1 0%; }
.col-auto { padding-left: 12px; padding-right: 12px; flex: 0 0 auto; }

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-8 { flex: 0 0 66.6666%; max-width: 66.6666%; }

@media (max-width: 768px) {
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (max-width: 576px) {
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

.mt1 { margin-top: 8px; }
.mt2 { margin-top: 16px; }
.mt3 { margin-top: 24px; }
.mt4 { margin-top: 32px; }
.mb1 { margin-bottom: 8px; }
.mb2 { margin-bottom: 16px; }
.mb3 { margin-bottom: 24px; }
.mb4 { margin-bottom: 32px; }
.pt2 { padding-top: 16px; }
.pt4 { padding-top: 32px; }
.pb2 { padding-bottom: 16px; }
.pb4 { padding-bottom: 32px; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.d-none { display: none; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 16px; }
.gap-4 { gap: 24px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: .93rem;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s, filter .15s;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.35); filter: brightness(1.1); }
.btn:active { transform: translateY(0); }

.btn--play {
    background: linear-gradient(135deg, #f4b911 0%, #e09800 100%);
    color: #2d0a00;
    box-shadow: 0 4px 14px rgba(244,185,17,.4);
}

.btn--bonus {
    background: linear-gradient(135deg, #66cc39 0%, #4aab22 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(102,204,57,.35);
}

.btn--demo {
    background: transparent;
    color: #f4b911;
    border: 2px solid #f4b911;
}
.btn--demo:hover { background: rgba(244,185,17,.1); color: #f4b911; }

.btn--outline {
    background: transparent;
    color: #66cc39;
    border: 2px solid #66cc39;
}
.btn--outline:hover { background: rgba(102,204,57,.1); color: #66cc39; }

.btn--sm { padding: 7px 16px; font-size: .82rem; }
.btn--lg { padding: 14px 32px; font-size: 1.05rem; border-radius: 10px; }
.btn--xl { padding: 18px 44px; font-size: 1.15rem; border-radius: 12px; }

.box {
    background: rgba(64, 13, 0, 0.85);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
}

.box--light {
    background: rgba(255,255,255,.07);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(244,185,17,.15);
}

.box--gold {
    background: linear-gradient(135deg, rgba(64,13,0,.9) 0%, rgba(80,20,0,.9) 100%);
    border: 1px solid rgba(244,185,17,.3);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
}

.section { padding: 48px 0; }
.section-title {
    font-size: 1.8rem;
    color: #f4b911;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(244,185,17,.3);
}
.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,.7);
    margin-bottom: 32px;
    font-size: .95rem;
}

.header-wrap {
    background: #400d00;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(0,0,0,.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 16px;
}

.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-wrap img { height: 60px; width: auto; }

.jackpot-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(244,185,17,.15) 0%, rgba(244,185,17,.05) 100%);
    border: 1px solid rgba(244,185,17,.3);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: .82rem;
    color: #f4b911;
    font-weight: 700;
    white-space: nowrap;
}
.jackpot-badge .jk-dot {
    width: 8px; height: 8px;
    background: #66cc39;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
    color: rgba(255,255,255,.85);
    font-size: .88rem;
    font-weight: 600;
    padding: 7px 11px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .2s, color .2s;
}
.header-nav a:hover { background: rgba(255,255,255,.1); color: #f4b911; }
.header-nav svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-buttons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    flex-shrink: 0;
}
.burger span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .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;
    background: #400d00;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 12px 0 16px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: rgba(255,255,255,.85);
    font-weight: 600;
    font-size: .92rem;
    border-radius: 8px;
    margin: 2px 0;
    transition: background .2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,.1); color: #f4b911; }
.mobile-menu svg { width: 16px; height: 16px; }

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/dragon-pokies-hero.webp');
    background-size: cover;
    background-position: center top;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(64,13,0,.88) 0%, rgba(64,13,0,.55) 50%, rgba(64,13,0,.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 64px 0 48px;
    max-width: 600px;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(244,185,17,.18);
    border: 1px solid rgba(244,185,17,.4);
    color: #f4b911;
    border-radius: 30px;
    padding: 4px 14px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 16px;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
    font-weight: 800;
}
.hero h1 span { color: #f4b911; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: .88rem;
    color: rgba(255,255,255,.8);
}
.stars { color: #f4b911; letter-spacing: 2px; }

.bonus-slider-wrap { position: relative; }
.bonus-cards-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.bonus-cards-track::-webkit-scrollbar { display: none; }

.bonus-card {
    flex: 0 0 calc(33.33% - 14px);
    min-width: 260px;
    scroll-snap-align: start;
    background: linear-gradient(145deg, #4a1000 0%, #2d0800 100%);
    border: 1px solid rgba(244,185,17,.25);
    border-radius: 14px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .25s, box-shadow .25s;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.4); }

.bonus-card-badge {
    display: inline-block;
    background: rgba(102,204,57,.15);
    color: #66cc39;
    border: 1px solid rgba(102,204,57,.3);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.bonus-card-title { font-size: 1.35rem; color: #f4b911; font-weight: 800; line-height: 1.2; }
.bonus-card-amount { font-size: 2rem; font-weight: 900; color: #fff; }
.bonus-card-casino { font-size: .85rem; color: rgba(255,255,255,.65); }

.slider-dots {
    display: none;
}
.slider-dot {
    width: 8px; height: 8px;
    background: rgba(255,255,255,.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.slider-dot.active { background: #f4b911; transform: scale(1.3); }

.demo-block {
    background: linear-gradient(145deg, #3a0c00 0%, #1e0600 100%);
    border: 1px solid rgba(244,185,17,.2);
    border-radius: 16px;
    overflow: hidden;
}
.demo-header {
    background: rgba(64,13,0,.95);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: 1px solid rgba(244,185,17,.15);
}
.demo-title { font-size: 1.15rem; font-weight: 800; color: #f4b911; }
.demo-frame-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}
.demo-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.demo-frame-wrap-info {padding:16px 24px;background:rgba(0,0,0,.2);display:flex;flex-wrap:wrap;gap:16px;justify-content:center;}
.demo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(64,13,0,.95) 0%, rgba(30,6,0,.98) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 2;
}
.demo-overlay h3 { font-size: 1.6rem; color: #f4b911; font-weight: 800; }
.demo-overlay p { color: rgba(255,255,255,.75); font-size: .95rem; text-align: center; max-width: 360px; }
.demo-overlay-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.winners-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.winners-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    font-size: .9rem;
}
.winners-table th {
    background: rgba(244,185,17,.15);
    color: #f4b911;
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid rgba(244,185,17,.2);
}
.winners-table td {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.85);
}
.winners-table tr:hover td { background: rgba(255,255,255,.04); }
.winners-table tr:nth-child(1) td { color: #f4b911; font-weight: 700; }
.winners-table tr:nth-child(2) td { color: #ccc; }
.winners-table tr:nth-child(3) td { color: #cd7f32; }
.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    font-weight: 800;
    font-size: .8rem;
    background: rgba(255,255,255,.1);
    color: #fff;
}
.rank-badge.r1 { background: #f4b911; color: #2d0a00; }
.rank-badge.r2 { background: #bbb; color: #2d0a00; }
.rank-badge.r3 { background: #cd7f32; color: #fff; }

.games-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.game-card {
    flex: 1 1 220px;
    background: linear-gradient(145deg, #3d0f00 0%, #270800 100%);
    border: 1px solid rgba(244,185,17,.18);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.45); }
.game-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.game-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.game-card-name { font-size: 1rem; font-weight: 800; color: #f4b911; }
.game-card-desc { font-size: .83rem; color: rgba(255,255,255,.7); flex: 1; line-height: 1.5; }
.game-card-actions { display: flex; gap: 8px; }

.screenshots-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.screenshots-track::-webkit-scrollbar { display: none; }
.screenshot-item {
    flex: 0 0 calc(33.33% - 12px);
    min-width: 260px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(244,185,17,.15);
}
.screenshot-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}
.screenshot-item:hover img { transform: scale(1.04); }

.content-block { line-height: 1.75; color: rgba(255,255,255,.9); }
.content-block h2 { font-size: 1.5rem; color: #f4b911; margin: 1.5em 0 .5em; }
.content-block h3 { font-size: 1.2rem; color: #f4b911; margin: 1.25em 0 .4em; }
.content-block h4 { font-size: 1.05rem; color: #f4b911; margin: 1em 0 .3em; }
.content-block p { margin-bottom: 1em; }
.content-block ul, .content-block ol { margin: 0 0 1em 1.5em; }
.content-block li { margin-bottom: .4em; }
.content-block a { color: #66cc39; }
.content-block a:hover { color: #f4b911; }
.content-block table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 1.5em auto;
    font-size: .9rem;
    display: block;
    overflow-x: auto;
}
.content-block table th {
    background: rgba(244,185,17,.15);
    color: #f4b911;
    font-weight: 700;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(244,185,17,.2);
}
.content-block table td {
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
}
.content-block table tr:hover td { background: rgba(255,255,255,.04); }
.content-block strong { color: #fff; font-weight: 700; }
.content-block em { color: rgba(255,255,255,.8); font-style: italic; }
.content-block blockquote {
    border-left: 3px solid #f4b911;
    padding: 10px 16px;
    background: rgba(244,185,17,.07);
    border-radius: 0 8px 8px 0;
    margin: 1em 0;
    font-style: italic;
    color: rgba(255,255,255,.8);
}
.content-block img { max-width: 100%; border-radius: 8px; margin: 1em auto; }
.content-block hr { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 1.5em 0; }

.author-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(64,13,0,.8);
    border: 1px solid rgba(244,185,17,.18);
    border-radius: 14px;
    padding: 20px;
}
.author-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(244,185,17,.3); }
.author-info h4 { font-size: 1rem; color: #f4b911; margin-bottom: 4px; }
.author-info p { font-size: .83rem; color: rgba(255,255,255,.7); margin: 0; line-height: 1.5; }
.author-links { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.author-links a {
    font-size: .78rem;
    color: #66cc39;
    border: 1px solid rgba(102,204,57,.3);
    border-radius: 5px;
    padding: 2px 8px;
    transition: background .2s;
}
.author-links a:hover { background: rgba(102,204,57,.1); }

.faq-item {
    border: 1px solid rgba(244,185,17,.15);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: rgba(64,13,0,.7);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    gap: 12px;
    user-select: none;
    transition: background .2s;
}
.faq-question:hover { background: rgba(255,255,255,.05); }
.faq-question.open { color: #f4b911; }
.faq-icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
    color: rgba(255,255,255,.5);
}
.faq-question.open .faq-icon { transform: rotate(45deg); color: #f4b911; }
.faq-icon::before { content: '+'; font-size: 14px; line-height: 1; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    font-size: .9rem;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
}
.faq-answer.open { max-height: 600px; padding: 0 20px 16px; }

.footer-wrap {
    background: #400d00;
    padding: 40px 0 0;
    margin-top: 32px;
}
.footer-top { display: flex; flex-wrap: wrap; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col { flex: 1 1 200px; }
.footer-logo a {display: block;width: fit-content;}
.footer-logo img { height: 60px; width: auto; margin-bottom: 12px; }
.footer-desc { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.footer-col h4 { font-size: .9rem; color: #f4b911; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .04em; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-nav a { font-size: .85rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-nav a:hover { color: #f4b911; }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.payment-badge {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: .75rem;
    color: rgba(255,255,255,.75);
    font-weight: 600;
}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    transition: background .2s, color .2s;
}
.social-link:hover { background: #f4b911; color: #2d0a00; }
.social-link svg { width: 16px; height: 16px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.trust-badge {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: .72rem;
    color: rgba(255,255,255,.7);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: #f4b911; }
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    background: #c0392b;
    color: #fff;
    border-radius: 50%;
    font-size: .75rem;
    font-weight: 800;
    flex-shrink: 0;
}
.au-flag {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    vertical-align: middle;
}
.provider-badge { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.provider-badge img { height: 28px; width: auto; filter: brightness(0) invert(1) opacity(.7); }

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(90deg, #400d00 0%, #5a1200 100%);
    border-top: 2px solid rgba(244,185,17,.4);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0,0,0,.4);
}
.sticky-widget-text {
    font-size: .88rem;
    color: rgba(255,255,255,.85);
    font-weight: 600;
    line-height: 1.3;
}
.sticky-widget-text strong { color: #f4b911; display: block; font-size: 1rem; }
.sticky-widget-close {
    background: none;
    border: none;
    color: rgba(255,255,255,.5);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
}
.sticky-widget-close:hover { color: #fff; }

.game-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.game-info-item {
    flex: 1 1 140px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    padding: 12px 14px;
}
.game-info-label { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.game-info-value { font-size: .95rem; font-weight: 700; color: #f4b911; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .55s ease forwards; }

@keyframes pulse-glow {
    0%,100% { box-shadow: 0 0 8px rgba(244,185,17,.3); }
    50% { box-shadow: 0 0 24px rgba(244,185,17,.7); }
}
.pulse { animation: pulse-glow 2.2s infinite; }

.wp-embed-container { display: none; }
@media (max-width: 1060px) {
.jackpot-badge {display: none;}
}
@media (max-width: 991px) {
    .header-nav { display: none; }
    .burger { display: flex; }
    .jackpot-badge { display: none; }
    .bonus-card { flex: 0 0 calc(50% - 10px); }
    .screenshot-item { flex: 0 0 calc(50% - 8px); }
    .slider-dots {display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;}
}

@media (max-width: 767px) {
    .section { padding: 32px 0; }
    .section-title { font-size: 1.45rem; }
    .hero { min-height: 420px; }
    .hero-content { padding: 48px 0 36px; }
    .bonus-card { flex: 0 0 280px; }
    .games-grid { flex-direction: column; }
    .game-card { flex: none; }
    .author-card { flex-direction: column; gap: 14px; }
    .author-avatar { width: 56px; height: 56px; }
    .footer-top { flex-direction: column; gap: 20px; }
    .footer-col { flex: none; }
    .col-4, .col-6, .col-3, .col-8 { flex: 0 0 100%; max-width: 100%; }
    .box--gold {padding: 20px;}
    .box {padding: 20px;}
}
@media (max-width: 580px) {
.demo-frame-wrap-info {display: none;}
.demo-overlay p {display: none;}
.demo-overlay {gap: 7px;}
}
@media (max-width: 480px) {
    .btn--xl { padding: 14px 28px; font-size: 1rem; }
    .hero h1 { font-size: 1.7rem; }
    .screenshot-item { flex: 0 0 85vw; }
    .sticky-widget-text span { display: none; }
    .demo-overlay-actions a {display: none;}
    .box {padding: 16px;} 
}
@media (max-width: 380px) {
.header-buttons .btn--demo {display: none;}
.demo-overlay :last-child {display: none;}
}
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    padding: 11px 14px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: .92rem;
    margin-bottom: 12px;
    outline: none;
    transition: border-color .2s;
}
input:focus, textarea:focus, select:focus { border-color: #f4b911; }
label { display: block; font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: 5px; }

.d-v8x2k91 { display: none !important; }
.wp-x9c3m0e { visibility: hidden; position: absolute; }
.nx7p2q { opacity: 0; pointer-events: none; position: absolute; width: 1px; height: 1px; }
