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

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

:root {
    --c-header: #020A06;
    --c-bg: #16181B;
    --c-btn-primary: #F5BF00;
    --c-btn-secondary: #24262B;
    --c-text: #E8E9EA;
    --c-text-muted: #9CA3AF;
    --c-border: #2A2D33;
    --c-card: #1E2025;
    --c-card2: #1A1C20;
    --c-gold: #F5BF00;
    --c-gold-light: #FFD54F;
    --c-green: #16A34A;
    --c-red: #DC2626;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --shadow-gold: 0 0 20px rgba(245, 191, 0, .18);
    --trans: .22s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--c-gold);
    text-decoration: none;
    transition: color var(--trans);
}

a:hover {
    color: var(--c-gold-light);
}

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

ul {
    list-style: none;
}

.wrapper {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    text-decoration: none;
    transition: all var(--trans);
    white-space: nowrap;
    letter-spacing: .3px;
}

.btn--primary {
    background: var(--c-btn-primary);
    color: #0A0A0A;
    box-shadow: 0 2px 12px rgba(245, 191, 0, .3);
}

.btn--primary:hover {
    background: var(--c-gold-light);
    color: #0A0A0A;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(245, 191, 0, .45);
}

.btn--secondary {
    background: var(--c-btn-secondary);
    color: var(--c-text);
}

.btn--secondary:hover {
    background: #30333A;
    color: #fff;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn--sm {
    padding: 7px 14px;
    font-size: 13px;
}

.btn--outline {
    background: transparent;
    border: 1.5px solid var(--c-gold);
    color: var(--c-gold);
}

.btn--outline:hover {
    background: var(--c-gold);
    color: #0A0A0A;
}

.btn--full {
    width: 100%;
}

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

.header-wrap {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .6);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    height: 68px;
}

.header-logo {
    display: flex;
    align-items: center;
}

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

.header-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-gold);
    letter-spacing: -.3px;
    margin-left: 10px;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #B0B8C4;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--trans);
}

.header-nav a:hover, .header-nav a.active {
    color: var(--c-gold);
    background: rgba(245, 191, 0, .07);
}

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

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

.header-online {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--c-text-muted);
    margin-right: 4px;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22C55E;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

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

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--trans);
}

.burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
    opacity: 0;
}

.burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-header);
    z-index: 899;
    overflow-y: auto;
    flex-direction: column;
    padding: 20px;
    animation: slideDown .22s ease;
}

.mobile-menu.is-open {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-menu nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #C0C8D0;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.mobile-menu nav a:hover {
    color: var(--c-gold);
    background: rgba(245, 191, 0, .06);
}

.mobile-menu-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.hero-wrap {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 10, 6, .92) 40%, rgba(2, 10, 6, .5) 80%, transparent 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 191, 0, .12);
    border: 1px solid rgba(245, 191, 0, .3);
    color: var(--c-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 5px 12px;
    border-radius: 99px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.hero-title span {
    color: var(--c-gold);
}

.hero-sub {
    font-size: 16px;
    color: #C0C8D0;
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero-bonus-tile {
    background: rgba(245, 191, 0, .1);
    border: 1.5px solid rgba(245, 191, 0, .35);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-bonus-tile .bonus-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--c-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hero-bonus-tile .bonus-value {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

.hero-bonus-tile .bonus-sub {
    font-size: 14px;
    color: #B0BAC5;
    margin-top: 2px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.section {
    padding: 64px 0;
}

.section-title {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.section-sub {
    font-size: 15px;
    color: var(--c-text-muted);
    margin-bottom: 36px;
}

.section-header {
    margin-bottom: 36px;
}

.pros-cons-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-block, .cons-block {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--c-border);
}

.pros-block {
    border-top: 3px solid var(--c-green);
}

.cons-block {
    border-top: 3px solid var(--c-red);
}

.pc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
}

.pros-block .pc-head {
    color: #4ADE80;
}

.cons-block .pc-head {
    color: #F87171;
}

.pc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--c-text);
    line-height: 1.5;
}

.pc-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    font-size: 10px;
    font-weight: 800;
}

.pros-block .pc-icon {
    background: rgba(74, 222, 128, .15);
    color: #4ADE80;
}

.cons-block .pc-icon {
    background: rgba(248, 113, 113, .15);
    color: #F87171;
}

.winners-wrap {
    background: var(--c-card2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    overflow: hidden;
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
}

.winners-table th {
    background: var(--c-header);
    color: var(--c-text-muted);
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    letter-spacing: .5px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--c-border);
}

.winners-table td {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(42, 45, 51, .5);
}

.winners-table tr:last-child td {
    border-bottom: none;
}

.winners-table tr:hover td {
    background: rgba(245, 191, 0, .03);
}

.winner-rank {
    font-weight: 700;
    color: var(--c-text-muted);
    font-size: 13px;
}

.winner-rank.top1 {
    color: #F5BF00;
}

.winner-rank.top2 {
    color: #C0C0C0;
}

.winner-rank.top3 {
    color: #CD7F32;
}

.winner-ava {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-btn-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-gold);
    flex-shrink: 0;
}

.winner-nick {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #E0E4EA;
}

.winner-game {
    color: var(--c-text-muted);
    font-size: 13px;
}

.winner-amount {
    font-weight: 700;
    color: #4ADE80;
    font-size: 14px;
}

.app-block {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    padding: 32px;
}

.app-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.app-table-wrap {
    overflow-x: auto;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
}

.app-table tr {
    border-bottom: 1px solid var(--c-border);
}

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

.app-table td {
    padding: 11px 16px;
    font-size: 14px;
}

.app-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 500;
    width: 45%;
}

.app-table td:last-child {
    color: var(--c-text);
    font-weight: 600;
}

.app-download {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.app-download-head {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.app-dl-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--c-btn-secondary);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    color: var(--c-text);
    text-decoration: none;
    transition: all var(--trans);
}

.app-dl-btn:hover {
    border-color: var(--c-gold);
    background: rgba(245, 191, 0, .06);
    color: var(--c-text);
}

.app-dl-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--c-gold);
}

.app-dl-label {
    font-size: 11px;
    color: var(--c-text-muted);
}

.app-dl-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

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

.slot-card {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
    transition: all var(--trans);
    position: relative;
}

.slot-card:hover {
    border-color: rgba(245, 191, 0, .35);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.slot-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.slot-card:hover .slot-img-wrap img {
    transform: scale(1.05);
}

.slot-provider-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(2, 10, 6, .75);
    color: var(--c-gold);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 99px;
    letter-spacing: .4px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.slot-body {
    padding: 14px 16px;
}

.slot-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.slot-rtp {
    font-size: 12px;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}

.slot-rtp span {
    color: #4ADE80;
    font-weight: 600;
}

.wheel-wrap {
    background: var(--c-card2);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
    border: 1px solid var(--c-border);
    position: relative;
    overflow: hidden;
}

.wheel-wrap::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 191, 0, .06) 0%, transparent 70%);
    pointer-events: none;
}

.wheel-canvas-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 28px;
}

.wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(245, 191, 0, .2), 0 0 40px rgba(245, 191, 0, .08);
}

.wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 22px solid var(--c-gold);
    filter: drop-shadow(0 2px 4px rgba(245, 191, 0, .5));
    z-index: 2;
}

.wheel-btn-wrap {
    margin-bottom: 20px;
}

.wheel-result {
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    margin-top: 20px;
    display: none;
    animation: fadeIn .4s ease;
}

.wheel-result.win {
    background: rgba(74, 222, 128, .1);
    border: 1.5px solid rgba(74, 222, 128, .3);
}

.wheel-result.lose {
    background: rgba(248, 113, 113, .07);
    border: 1.5px solid rgba(248, 113, 113, .2);
}

.wheel-result-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.wheel-result.win .wheel-result-title {
    color: #4ADE80;
}

.wheel-result.lose .wheel-result-title {
    color: #F87171;
}

.wheel-result p {
    font-size: 15px;
    color: var(--c-text-muted);
    margin-bottom: 16px;
}

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

.review-block {
    background: var(--c-card2);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--c-border);
}

.review-block .review-content {
    font-size: 15px;
    line-height: 1.75;
    color: #D4D8DE;
}

.review-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 28px 0 12px;
}

.review-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #E8E9EA;
    margin: 22px 0 10px;
}

.review-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #D4D8DE;
    margin: 18px 0 8px;
}

.review-content p {
    margin-bottom: 14px;
}

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

.review-content ul {
    list-style: disc;
}

.review-content ol {
    list-style: decimal;
}

.review-content li {
    margin-bottom: 5px;
}

.review-content a {
    color: var(--c-gold);
    text-decoration: underline;
}

.review-content strong, .review-content b {
    color: #fff;
    font-weight: 700;
}

.review-content em, .review-content i {
    color: #C5CAD2;
    font-style: italic;
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block;
}

.review-content th {
    background: var(--c-header);
    color: var(--c-text-muted);
    text-align: left;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--c-border);
}

.review-content td {
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid var(--c-border);
    vertical-align: top;
}

.review-content blockquote {
    border-left: 3px solid var(--c-gold);
    padding: 12px 18px;
    background: rgba(245, 191, 0, .05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    color: #C5CAD2;
}

.review-content img {
    border-radius: var(--radius-md);
    margin: 12px 0;
}

.review-content code {
    background: var(--c-header);
    color: var(--c-gold);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: .9em;
}

.review-content pre {
    background: var(--c-header);
    padding: 16px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 14px 0;
}

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

.author-card {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    border: 1px solid var(--c-border);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
}

.author-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(245, 191, 0, .3);
    flex-shrink: 0;
}

.author-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.author-position {
    font-size: 13px;
    color: var(--c-gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.author-links {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.author-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--c-text-muted);
    transition: color var(--trans);
}

.author-link:hover {
    color: var(--c-gold);
}

.author-meta {
    font-size: 12px;
    color: var(--c-text-muted);
    margin-top: 12px;
}

.footer-wrap {
    background: var(--c-header);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 48px 0 24px;
}

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

.footer-logo-block .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 36px;
    width: auto;
}

.footer-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #7A8491;
}

.footer-flag {
    font-size: 18px;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 14px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    font-size: 13px;
    color: #7A8491;
    transition: color var(--trans);
}

.footer-nav a:hover {
    color: var(--c-gold);
}

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

.footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: var(--c-btn-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: all var(--trans);
}

.footer-social-link:hover {
    background: rgba(245, 191, 0, .15);
    color: var(--c-gold);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.footer-logo-chip {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 11px;
    color: #888E99;
    font-weight: 600;
    white-space: nowrap;
}

.footer-logo-chip.gold {
    border-color: rgba(245, 191, 0, .25);
    color: var(--c-gold);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin: 24px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-legal {
    font-size: 12px;
    color: #4A5260;
    line-height: 1.65;
}

.footer-copyright {
    font-size: 12px;
    color: #4A5260;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: linear-gradient(90deg, #020A06 0%, #0A1A0F 100%);
    border-top: 1px solid rgba(245, 191, 0, .25);
    padding: 10px 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
}

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

.sticky-bonus-text {
    font-size: 13px;
    color: var(--c-text-muted);
}

.sticky-bonus-value {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}

.sticky-code {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-code-label {
    font-size: 11px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.sticky-code-value {
    background: rgba(245, 191, 0, .12);
    border: 1.5px dashed rgba(245, 191, 0, .5);
    color: var(--c-gold);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: var(--radius-sm);
}

.sticky-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 4px;
    transition: color var(--trans);
}

.sticky-close:hover {
    color: #fff;
}

.section--alt {
    background: rgba(255, 255, 255, .015);
}

.separator {
    width: 48px;
    height: 3px;
    background: var(--c-gold);
    border-radius: 2px;
    margin: 10px 0 20px;
}

.breadcrumb {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--c-text-muted);
}

.breadcrumb a:hover {
    color: var(--c-gold);
}

.breadcrumb span {
    margin: 0 6px;
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: var(--c-gold);
    font-size: 16px;
    margin-bottom: 6px;
}

.rating-num {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}

.rating-label {
    font-size: 13px;
    color: var(--c-text-muted);
}

.info-page-content {
    padding: 48px 0 80px;
}

.info-page-content h1 {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
}

.info-page-inner {
    max-width: 800px;
}

.info-page-inner h2 {
    font-size: 20px;
    font-weight: 700;
    color: #E0E4EA;
    margin: 28px 0 12px;
}

.info-page-inner h3 {
    font-size: 17px;
    font-weight: 600;
    color: #D4D8DE;
    margin: 20px 0 8px;
}

.info-page-inner p {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.info-page-inner ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 14px;
}

.info-page-inner li {
    font-size: 15px;
    color: var(--c-text-muted);
    margin-bottom: 6px;
    line-height: 1.6;
}

.info-page-inner a {
    color: var(--c-gold);
    text-decoration: underline;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

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

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

    .footer-logo-block {
        grid-column: 1/-1;
    }

    .app-inner {
        grid-template-columns: 1fr;
    }
}

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

    .burger {
        display: flex;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .header-online .online-count-text {
        display: none;
    }

    .pros-cons-wrap {
        grid-template-columns: 1fr;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .author-card {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sticky-inner {
        flex-wrap: wrap;
        gap: 8px;
    }

    .sticky-code {
        flex-wrap: wrap;
    }

    .section {
        padding: 40px 0;
    }

    .hero-wrap {
        min-height: 500px;
    }

    .review-block {
        padding: 24px 18px;
    }

    .app-block {
        padding: 22px 16px;
    }

    .footer-wrap {
        padding: 32px 0 80px;
    }

    .winners-table-wrap {
        overflow-x: auto;
    }

    .app-table-wrap {
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 8px;
    }
}

.wpe-x8f2a {
    display: none;
}

.wp-block-hidden-ref {
    display: none;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.wrapper,
main,
.container,
.hero-wrap,
.section,
.sticky-widget {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-wrap,
    .section,
    .review-block,
    .app-block,
    .pros-block,
    .cons-block,
    .winners-wrap,
    .wheel-wrap,
    .sticky-widget {
        width: 100%;
        max-width: 100%;
    }

    .hero-inner,
    .hero-content,
    .hero-bonus-tile,
    .hero-btns,
    .sticky-inner {
        width: 100%;
        max-width: 100%;
    }

    .hero-bg,
    .hero-bg img {
        width: 100%;
        max-width: 100%;
    }

    .winners-table,
    .app-table,
    .review-content table {
        max-width: none;
    }

    .winners-table-wrap,
    .app-table-wrap,
    .review-content table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sticky-inner {
        overflow: hidden;
    }

    .sticky-code,
    .sticky-bonus-value {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-wrap {
        min-width: 0;
    }

    .slots-grid {
        width: 100%;
        max-width: 100%;
    }

    .slot-card {
        min-width: 0;
    }
}

.header-wrap {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    background: var(--c-header, #020A06) !important;
}

.header-inner {
    height: 68px !important;
}

body {
    padding-top: 68px !important;
}

@media (max-width: 768px) {
    .header-inner {
        height: 64px !important;
    }

    body {
        padding-top: 64px !important;
    }
}