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

:root {
    --clr-bg: #101010;
    --clr-nav: #1a1b1d;
    --clr-green: #29a90a;
    --clr-green-hover: #22920a;
    --clr-dark: #000000;
    --clr-text: #e8e8e8;
    --clr-text-muted: #a0a0a0;
    --clr-border: #2a2b2e;
    --clr-card: #1e1f22;
    --clr-card-hover: #252629;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition: 0.25s ease;
    --font-main: 'Roboto', sans-serif;
}

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

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

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden
}

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

a {
    color: var(--clr-green);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: #4fd626
}

ul {
    list-style: none
}

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

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

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

.section-gap {
    margin-bottom: 40px
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--clr-green);
    border-radius: 2px;
    margin-top: 8px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1.2
}

.btn--green {
    background: var(--clr-green);
    color: #fff
}

.btn--green:hover {
    background: var(--clr-green-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(41, 169, 10, 0.4)
}

.btn--dark {
    background: #1e1f22;
    color: #e8e8e8;
    border: 1px solid var(--clr-border)
}

.btn--dark:hover {
    background: #252629;
    color: #fff;
    transform: translateY(-1px)
}

.btn--outline {
    background: transparent;
    color: var(--clr-green);
    border: 1px solid var(--clr-green)
}

.btn--outline:hover {
    background: var(--clr-green);
    color: #fff
}

.btn--sm {
    padding: 7px 16px;
    font-size: .82rem
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem
}

.btn--full {
    width: 100%
}

.header-wrap {
    background: var(--clr-nav);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .6)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 64px
}

.header-logo img {
    height: 40px;
    width: auto;
    object-fit: contain
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    color: var(--clr-text-muted);
    font-size: .88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition)
}

.header-nav a:hover, .header-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, .06)
}

.header-nav a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px
}

.jackpot-badge {
    background: linear-gradient(135deg, #1a2e0a, #0d1f06);
    border: 1px solid var(--clr-green);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    font-size: .78rem;
    font-weight: 600;
    color: #a3e88b;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.jackpot-badge svg {
    color: var(--clr-green);
    width: 14px;
    height: 14px
}

.jackpot-amount {
    color: var(--clr-green);
    font-weight: 700
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: background var(--transition)
}

.burger:hover {
    background: rgba(255, 255, 255, .06)
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all .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-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, .97);
    backdrop-filter: blur(8px);
    z-index: 999;
    padding: 24px 16px;
    overflow-y: auto;
    flex-direction: column;
    gap: 8px
}

.mobile-nav.open {
    display: flex
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--clr-text);
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    transition: all var(--transition)
}

.mobile-nav a:hover {
    background: var(--clr-card);
    border-color: var(--clr-green)
}

.mobile-nav .btn {
    margin-top: 4px
}

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-nav)
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner.png');
    background-size: cover;
    background-position: center;
    opacity: .35;
    transition: opacity .5s
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 16, 16, .95) 40%, rgba(16, 16, 16, .5) 100%)
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding: 60px 0
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(41, 169, 10, .15);
    border: 1px solid rgba(41, 169, 10, .4);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--clr-green);
    margin-bottom: 20px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.hero-eyebrow span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--clr-green);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px
}

.hero-title span {
    color: var(--clr-green)
}

.hero-desc {
    font-size: 1.05rem;
    color: #bbb;
    line-height: 1.65;
    margin-bottom: 28px
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap
}

.hero-stat {
    text-align: center
}

.hero-stat-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-green);
    line-height: 1
}

.hero-stat-lbl {
    font-size: .75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 2px
}

.breadcrumbs-wrap {
    background: var(--clr-nav);
    border-bottom: 1px solid var(--clr-border)
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    font-size: .82rem;
    flex-wrap: wrap
}

.breadcrumbs a {
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

.breadcrumbs a:hover {
    color: var(--clr-green)
}

.breadcrumbs span {
    color: var(--clr-text-muted)
}

.breadcrumbs .bc-current {
    color: var(--clr-text)
}

.breadcrumbs svg {
    width: 12px;
    height: 12px;
    color: #555
}

.main-content {
    padding: 36px 0 60px;
    flex: 1
}

.game-block {
    display: grid;
    grid-template-columns:1fr 380px;
    gap: 24px;
    align-items: start;
    margin-bottom: 36px
}

.demo-frame-wrap {
    border-radius: var(--radius-md);
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    position: relative
}

.demo-frame-wrap iframe {
    width: 100%;
    height: 460px;
    display: block;
    border: 0
}

.demo-frame-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(16, 16, 16, .92);
    z-index: 2;
    transition: opacity var(--transition)
}

.demo-frame-overlay.hidden {
    opacity: 0;
    pointer-events: none
}

.demo-frame-overlay .play-icon {
    width: 72px;
    height: 72px;
    background: var(--clr-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition)
}

.demo-frame-overlay .play-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(41, 169, 10, .5)
}

.demo-frame-overlay .play-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
    margin-left: 4px
}

.demo-frame-overlay p {
    color: #ccc;
    font-size: .9rem
}

.demo-actions {
    display: flex;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid var(--clr-border);
    flex-wrap: wrap
}

.game-details-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden
}

.game-details-header {
    background: var(--clr-nav);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--clr-border)
}

.game-details-header img {
    height: 32px;
    width: auto
}

.game-details-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff
}

.details-table {
    width: 100%
}

.details-table tr {
    border-bottom: 1px solid var(--clr-border)
}

.details-table tr:last-child {
    border-bottom: none
}

.details-table tr:hover td {
    background: rgba(255, 255, 255, .025)
}

.details-table td {
    padding: 9px 14px;
    font-size: .85rem;
    vertical-align: middle
}

.details-table td:first-child {
    color: var(--clr-text-muted);
    width: 50%;
    display: flex;
    align-items: center;
    gap: 8px
}

.details-table td:first-child svg {
    width: 14px;
    height: 14px;
    color: var(--clr-green);
    flex-shrink: 0
}

.details-table td:last-child {
    color: #e8e8e8;
    font-weight: 500;
    text-align: right
}

.rtp-badge {
    background: rgba(41, 169, 10, .15);
    color: var(--clr-green);
    border: 1px solid rgba(41, 169, 10, .3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: .8rem;
    font-weight: 700
}

.volatility-badge {
    background: rgba(255, 90, 60, .12);
    color: #ff5a3c;
    border: 1px solid rgba(255, 90, 60, .3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: .8rem;
    font-weight: 700
}

.mult-badge {
    background: rgba(41, 169, 10, .12);
    color: #7ae05a;
    border: 1px solid rgba(41, 169, 10, .25);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: .8rem;
    font-weight: 600
}

.winners-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 36px
}

.winners-header {
    background: var(--clr-nav);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--clr-border)
}

.winners-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    animation: pulse-dot 1.2s infinite
}

.winners-list {
    padding: 0
}

.winner-row {
    display: grid;
    grid-template-columns:36px 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition)
}

.winner-row:last-child {
    border-bottom: none
}

.winner-row:hover {
    background: rgba(255, 255, 255, .025)
}

.winner-rank {
    font-size: .8rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-align: center
}

.winner-rank.top3 {
    color: var(--clr-green)
}

.winner-medal {
    font-size: 1rem
}

.winner-nick {
    font-size: .9rem;
    font-weight: 500;
    color: #e0e0e0
}

.winner-mult {
    font-size: .82rem;
    color: var(--clr-text-muted)
}

.winner-amount {
    font-size: .95rem;
    font-weight: 700;
    color: var(--clr-green)
}

.bonuses-block {
    margin-bottom: 36px
}

.bonuses-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px
}

.bonus-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--clr-green);
    opacity: 0;
    transition: opacity var(--transition)
}

.bonus-card:hover {
    border-color: rgba(41, 169, 10, .4);
    background: var(--clr-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.bonus-card:hover::before {
    opacity: 1
}

.bonus-casino-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px
}

.bonus-casino-logo span {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em
}

.bonus-badge {
    display: inline-block;
    background: rgba(41, 169, 10, .15);
    color: var(--clr-green);
    border: 1px solid rgba(41, 169, 10, .3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    align-self: flex-start
}

.bonus-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1
}

.bonus-amount span {
    font-size: .9rem;
    font-weight: 400;
    color: var(--clr-text-muted)
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .83rem;
    color: #ccc
}

.bonus-feature svg {
    color: var(--clr-green);
    flex-shrink: 0;
    width: 13px;
    height: 13px
}

.bonus-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.bonus-terms {
    font-size: .72rem;
    color: var(--clr-text-muted)
}

.strategies-block {
    margin-bottom: 36px
}

.strategies-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px
}

.strategy-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer
}

.strategy-card:hover {
    border-color: rgba(41, 169, 10, .4);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .5)
}

.strategy-img {
    height: 140px;
    overflow: hidden
}

.strategy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease
}

.strategy-card:hover .strategy-img img {
    transform: scale(1.06)
}

.strategy-body {
    padding: 18px
}

.strategy-difficulty {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px
}

.diff-easy {
    color: #4fd626
}

.diff-medium {
    color: #f5a623
}

.diff-hard {
    color: #ff5a3c
}

.strategy-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.strategy-desc {
    font-size: .83rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-bottom: 14px
}

.content-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-bottom: 36px;
    overflow: hidden
}

.content-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px
}

.content-block h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 22px 0 10px
}

.content-block h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
    margin: 18px 0 8px
}

.content-block p {
    font-size: .95rem;
    line-height: 1.75;
    color: #c8c8c8;
    margin-bottom: 14px
}

.content-block ul, .content-block ol {
    padding-left: 20px;
    margin-bottom: 14px
}

.content-block ul li, .content-block ol li {
    font-size: .92rem;
    line-height: 1.7;
    color: #c0c0c0;
    margin-bottom: 5px;
    padding-left: 4px
}

.content-block ul {
    list-style: disc
}

.content-block ol {
    list-style: decimal
}

.content-block a {
    color: var(--clr-green);
    text-decoration: underline
}

.content-block a:hover {
    color: #4fd626
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: .88rem
}

.content-block table th {
    background: var(--clr-nav);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
    font-weight: 600
}

.content-block table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
    color: #c8c8c8;
    vertical-align: top
}

.content-block table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02)
}

.content-block blockquote {
    border-left: 3px solid var(--clr-green);
    padding: 12px 18px;
    background: rgba(41, 169, 10, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 18px 0;
    font-style: italic;
    color: #bbb
}

.content-block strong {
    color: #e8e8e8;
    font-weight: 600
}

.content-block em {
    font-style: italic
}

.content-block code {
    background: rgba(255, 255, 255, .08);
    border-radius: 3px;
    padding: 1px 6px;
    font-size: .88em;
    color: #9ae67a
}

.content-block pre {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    overflow-x: auto;
    margin: 16px 0
}

.content-block img {
    border-radius: var(--radius-sm);
    margin: 14px 0
}

.content-block hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 24px 0
}

.author-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 36px
}

.author-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start
}

.author-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-green);
    flex-shrink: 0
}

.author-info {
    flex: 1
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px
}

.author-title {
    font-size: .85rem;
    color: var(--clr-green);
    margin-bottom: 8px;
    font-weight: 500
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px
}

.author-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--clr-text-muted)
}

.author-meta-item svg {
    width: 13px;
    height: 13px;
    color: var(--clr-green);
    flex-shrink: 0
}

.author-bio {
    font-size: .88rem;
    color: #bbb;
    line-height: 1.65;
    margin-bottom: 14px
}

.author-socials {
    display: flex;
    gap: 10px
}

.author-socials a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: .8rem;
    color: var(--clr-text-muted);
    transition: all var(--transition)
}

.author-socials a:hover {
    border-color: var(--clr-green);
    color: var(--clr-green)
}

.author-dates {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--clr-border)
}

.author-date {
    font-size: .78rem;
    color: var(--clr-text-muted)
}

.author-date span {
    color: var(--clr-text)
}

.similar-block {
    margin-bottom: 36px
}

.similar-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px
}

.similar-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition)
}

.similar-card:hover {
    border-color: rgba(41, 169, 10, .35);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .45)
}

.similar-img {
    height: 130px;
    overflow: hidden;
    background: #0d0e10
}

.similar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.similar-card:hover .similar-img img {
    transform: scale(1.05)
}

.similar-body {
    padding: 16px
}

.similar-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px
}

.similar-desc {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-bottom: 12px
}

.similar-actions {
    display: flex;
    gap: 8px
}

.footer-wrap {
    background: var(--clr-nav);
    border-top: 1px solid var(--clr-border);
    margin-top: auto
}

.footer-main {
    padding: 40px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px
}

.footer-col h4 {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.footer-col ul li a {
    font-size: .85rem;
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

.footer-col ul li a:hover {
    color: var(--clr-green)
}

.footer-logo {
    margin-bottom: 12px
}

.footer-logo img {
    height: 36px
}

.footer-tagline {
    font-size: .83rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
    margin-bottom: 16px
}

.footer-email a {
    font-size: .85rem;
    color: var(--clr-green)
}

.footer-payments {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px
}

.footer-payment-badge {
    background: #222326;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: .72rem;
    font-weight: 700;
    color: #bbb;
    letter-spacing: .04em
}

.footer-providers {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.footer-provider-badge {
    background: #222326;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 700;
    color: #d0d0d0
}

.footer-trust {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #222326;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: .73rem;
    font-weight: 600;
    color: #aaa
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    color: var(--clr-green);
    flex-shrink: 0
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 8px
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition)
}

.footer-socials a:hover {
    background: rgba(41, 169, 10, .15);
    border-color: var(--clr-green)
}

.footer-socials a svg {
    width: 16px;
    height: 16px;
    color: var(--clr-text-muted)
}

.footer-socials a:hover svg {
    color: var(--clr-green)
}

.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding: 18px 0
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--clr-text-muted)
}

.footer-flag img {
    width: 22px;
    height: auto;
    border-radius: 2px
}

.footer-copyright {
    font-size: .8rem;
    color: var(--clr-text-muted);
    text-align: center
}

.footer-legal {
    font-size: .75rem;
    color: #666;
    line-height: 1.55;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--clr-border)
}

.footer-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #ff4444;
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: linear-gradient(90deg, #0e2208, #1a1b1d);
    border-top: 2px solid var(--clr-green);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5)
}

.widget-text {
    font-size: .88rem;
    color: #e0e0e0;
    font-weight: 500
}

.widget-text strong {
    color: var(--clr-green)
}

.widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    transition: color var(--transition);
    padding: 4px
}

.widget-close:hover {
    color: #aaa
}

.widget-close svg {
    width: 16px;
    height: 16px
}

body.widget-shown {
    padding-bottom: 58px
}

.slider-wrap {
    position: relative;
    overflow: hidden
}

.slider-track {
    display: flex;
    gap: 18px;
    transition: transform .35s ease
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px
}

.slider-btn {
    width: 32px;
    height: 32px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0
}

.slider-btn:hover {
    background: var(--clr-card-hover);
    border-color: var(--clr-green)
}

.slider-btn svg {
    width: 14px;
    height: 14px;
    color: var(--clr-text)
}

.slider-dots {
    display: flex;
    gap: 5px;
    align-items: center
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-border);
    cursor: pointer;
    transition: all var(--transition)
}

.slider-dot.active {
    background: var(--clr-green);
    width: 18px;
    border-radius: 4px
}

.wp-block-group {
    margin-bottom: 0
}

.elementor-section {
    display: block
}

.wp-caption {
    max-width: 100%
}

.alignnone, .aligncenter {
    display: block
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .6;
        transform: scale(.85)
    }
}

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

@keyframes jackpotCount {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.06)
    }
    100% {
        transform: scale(1)
    }
}

.animate-fade-up {
    animation: fadeInUp .5s ease both
}

.page-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 36px;
    margin: 36px 0
}

.page-content h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px
}

.page-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e0e0e0;
    margin: 24px 0 10px
}

.page-content p {
    font-size: .93rem;
    line-height: 1.75;
    color: #c0c0c0;
    margin-bottom: 12px
}

.page-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 14px
}

.page-content ul li {
    font-size: .9rem;
    line-height: 1.7;
    color: #bbb;
    margin-bottom: 5px
}

.page-content a {
    color: var(--clr-green);
    text-decoration: underline
}

@media (max-width: 1024px) {
    .game-block {
        grid-template-columns:1fr
    }

    .demo-frame-wrap iframe {
        height: 380px
    }

    .bonuses-grid, .strategies-grid, .similar-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .hero-content {
        padding: 40px 0
    }

    .hero-cta .btn--lg {
        padding: 12px 20px;
        font-size: .9rem
    }

    .bonuses-grid, .strategies-grid, .similar-grid, .footer-grid {
        grid-template-columns:1fr
    }

    .author-inner {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .author-meta {
        justify-content: center
    }

    .author-socials {
        justify-content: center
    }

    .author-dates {
        justify-content: center
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center
    }

    .winner-row {
        grid-template-columns:28px 1fr auto
    }

    .winner-mult {
        display: none
    }

    .section-title {
        font-size: 1.25rem
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem
    }

    .hero-stats {
        gap: 16px
    }

    .hero-stat-val {
        font-size: 1.3rem
    }

    .jackpot-badge {
        display: none
    }

    .demo-frame-wrap iframe {
        height: 300px
    }

    .game-details-card {
        overflow-x: auto
    }

    .details-table {
        min-width: 280px
    }

    .bonus-amount {
        font-size: 1.3rem
    }

    .bottom-widget {
        flex-direction: column;
        gap: 8px;
        padding: 8px 40px 8px 16px;
        text-align: center
    }
}

.pp-demo {
    width: 100%;
    margin: 32px 0;
}

.pp-demo__frame {
    position: relative;
    width: 100%;
    background: #111;
    border: 1px solid #2b2b2b;
    border-radius: 16px;
}

.pp-demo__frame iframe {
    display: block;
    width: 100%;
    height: 700px;
    border: 0;
    background: #000;
}

.pp-demo__start {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 15, .96);
    color: #fff;
    border: 0;
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    transition: .3s;
}

.pp-demo__start:hover {
    background: rgba(15, 15, 15, .9);
}

@media (max-width: 991px) {

    .pp-demo__frame iframe {
        height: 600px;
    }

}

@media (max-width: 768px) {

    .pp-demo {
        margin: 20px 0;
    }

    .pp-demo__frame {
        border-radius: 12px;
    }

    .pp-demo__frame iframe {
        height: 520px;
    }

    .pp-demo__start {
        font-size: 18px;
    }

}

@media (max-width: 480px) {

    .pp-demo__frame iframe {
        height: 460px;
    }

    .pp-demo__start {
        font-size: 16px;
    }

}