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

:root {
    --bg: #111111;
    --header-bg: #030303;
    --footer-bg: #030303;
    --btn-primary: #500202;
    --btn-primary-hover: #6e0303;
    --btn-secondary: #030303;
    --btn-secondary-hover: #1a1a1a;
    --text: #f0ece4;
    --text-muted: #9a9590;
    --text-dim: #6a6460;
    --border: #242424;
    --border-light: #2e2e2e;
    --card-bg: #181818;
    --card-bg2: #1d1d1d;
    --accent: #c41e1e;
    --accent-soft: #7a1212;
    --gold: #d4a437;
    --green: #1a7a3c;
    --green-light: #22a050;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .7);
    --font: 'Poppins', sans-serif;
    --transition: .22s cubic-bezier(.4, 0, .2, 1);
}

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

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

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

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

a {
    color: var(--gold);
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

ul, ol {
    padding-left: 1.4em;
}

.x7k2m {
    display: none;
}

.p9q3r {
    visibility: hidden;
    position: absolute;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: .92rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--btn-primary);
    color: #fff;
    padding: 12px 24px;
}

.btn--primary:hover {
    background: var(--btn-primary-hover);
    color: #fff;
}

.btn--secondary {
    background: var(--btn-secondary);
    color: var(--text);
    padding: 12px 24px;
    border: 1px solid var(--border-light);
}

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

.btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

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

.btn--gold {
    background: var(--gold);
    color: #0a0a0a;
    padding: 14px 30px;
}

.btn--gold:hover {
    background: #e0b44a;
    color: #0a0a0a;
}

.btn--green {
    background: var(--green);
    color: #fff;
    padding: 12px 24px;
}

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

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-light);
    padding: 10px 22px;
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.site-header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .6);
}

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

.header-logo {
    flex-shrink: 0;
}

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

.header-logo a {
    display: block;
    text-decoration: none;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 400;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.header-nav a:hover {
    color: var(--text);
    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;
    flex-shrink: 0;
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--green-light);
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
}

.online-counter .dot {
    width: 7px;
    height: 7px;
    background: var(--green-light);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

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

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0;
}

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 71px;
    left: 0;
    right: 0;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 16px 20px;
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--shadow-lg);
}

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

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: .9rem;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, .06);
}

.mobile-menu a svg {
    width: 16px;
    height: 16px;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
}

.mobile-menu-actions {
    display: flex;
    gap: 8px;
    padding: 4px 0;
}

.mobile-menu-actions .btn {
    flex: 1;
}

.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-woo.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(.28) saturate(.7);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(80, 2, 2, .55) 0%, rgba(0, 0, 0, .8) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 280px;
}

.hero-content h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.promo-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(212, 164, 55, .35);
    border-radius: var(--radius-md);
    padding: 14px 20px;
}

.promo-label {
    font-size: .8rem;
    color: var(--text-muted);
}

.promo-code {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    cursor: pointer;
    user-select: all;
}

.promo-copy {
    background: none;
    border: 1px solid rgba(212, 164, 55, .4);
    border-radius: 4px;
    color: var(--gold);
    font-size: .72rem;
    padding: 4px 10px;
    cursor: pointer;
    transition: background var(--transition);
    font-family: var(--font);
}

.promo-copy:hover {
    background: rgba(212, 164, 55, .15);
}

.hero-badge {
    background: rgba(255, 255, 255, .09);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    min-width: 220px;
    backdrop-filter: blur(10px);
}

.hero-badge .bonus-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.hero-badge .bonus-label {
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 12px;
}

.hero-badge .spins {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

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

.block-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 28px;
}

.block-card + .block-card {
    margin-top: 0;
}

.block-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.block-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 22px;
    background: var(--btn-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.pros-cons-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pros-col, .cons-col {
    flex: 1;
    min-width: 220px;
}

.pros-col {
    background: rgba(26, 122, 60, .1);
    border: 1px solid rgba(26, 122, 60, .3);
    border-radius: var(--radius-md);
    padding: 22px;
}

.cons-col {
    background: rgba(80, 2, 2, .12);
    border: 1px solid rgba(80, 2, 2, .35);
    border-radius: var(--radius-md);
    padding: 22px;
}

.col-head {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-col .col-head {
    color: var(--green-light);
}

.cons-col .col-head {
    color: #e05050;
}

.pros-cons-list {
    list-style: none;
    padding: 0;
}

.pros-cons-list li {
    padding: 7px 0;
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    color: rgba(240, 236, 228, .85);
}

.pros-cons-list li:last-child {
    border-bottom: none;
}

.pros-col .pros-cons-list li::before {
    content: '✓';
    color: var(--green-light);
    font-weight: 700;
    flex-shrink: 0;
}

.cons-col .pros-cons-list li::before {
    content: '✕';
    color: #e05050;
    font-weight: 700;
    flex-shrink: 0;
}

.app-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    min-width: 400px;
}

.app-table th, .app-table td {
    text-align: left;
    padding: 13px 18px;
    border: 1px solid var(--border);
}

.app-table th {
    background: rgba(255, 255, 255, .04);
    color: var(--text-muted);
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.app-table td {
    color: var(--text);
}

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

.app-table tr:hover td {
    background: rgba(255, 255, 255, .04);
}

.app-download-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.bonuses-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bonus-card {
    flex: 1;
    min-width: 240px;
    background: var(--card-bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.bonus-card:nth-child(2)::before {
    background: var(--gold);
}

.bonus-card:nth-child(3)::before {
    background: var(--green);
}

.bonus-card-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--btn-primary);
    background: rgba(80, 2, 2, .2);
    border-radius: 4px;
    padding: 3px 10px;
    margin-bottom: 14px;
}

.bonus-card:nth-child(2) .bonus-card-tag {
    color: var(--gold);
    background: rgba(212, 164, 55, .15);
}

.bonus-card:nth-child(3) .bonus-card-tag {
    color: var(--green-light);
    background: rgba(26, 122, 60, .15);
}

.bonus-card-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.bonus-card-sub {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.bonus-card-desc {
    font-size: .85rem;
    color: rgba(240, 236, 228, .75);
    line-height: 1.6;
    margin-bottom: 18px;
}

.bonus-card-terms {
    font-size: .72rem;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.slot-machine {
    background: linear-gradient(145deg, #1a0a0a, #0d0d0d);
    border: 1px solid rgba(80, 2, 2, .5);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.slot-machine-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gold);
}

.slot-machine-sub {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.slot-reel {
    width: 90px;
    height: 90px;
    background: #0a0a0a;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 12px rgba(0, 0, 0, .6);
}

.slot-reel.spinning .reel-inner {
    animation: spin-reel .7s linear;
}

@keyframes spin-reel {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-200%);
    }
}

.reel-inner {
    transition: none;
}

.slot-win-msg {
    display: none;
    background: linear-gradient(135deg, rgba(26, 122, 60, .25), rgba(26, 122, 60, .1));
    border: 1px solid rgba(26, 122, 60, .5);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
    animation: fade-in .4s ease;
}

.slot-win-msg.show {
    display: block;
}

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

.slot-win-msg .win-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-light);
    margin-bottom: 6px;
}

.slot-win-msg .win-bonus {
    font-size: .9rem;
    color: rgba(240, 236, 228, .85);
}

.slot-btn {
    min-width: 180px;
}

.slot-btn.spinning-state {
    opacity: .7;
    pointer-events: none;
}

.review-block {
    padding: 0;
}

.review-content-inner {
    font-size: .95rem;
    line-height: 1.75;
    color: rgba(240, 236, 228, .88);
}

.review-content-inner h1, .review-content-inner h2, .review-content-inner h3, .review-content-inner h4 {
    color: var(--text);
    font-weight: 700;
    margin: 1.4em 0 .6em;
    line-height: 1.3;
}

.review-content-inner h2 {
    font-size: 1.3rem;
}

.review-content-inner h3 {
    font-size: 1.1rem;
}

.review-content-inner p {
    margin-bottom: 1em;
}

.review-content-inner ul, .review-content-inner ol {
    margin: .8em 0 1em;
}

.review-content-inner li {
    margin-bottom: .35em;
}

.review-content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: .88rem;
    overflow-x: auto;
    display: block;
}

.review-content-inner table th, .review-content-inner table td {
    text-align: left;
    padding: 10px 16px;
    border: 1px solid var(--border);
}

.review-content-inner table th {
    background: rgba(255, 255, 255, .04);
    color: var(--text-muted);
    font-weight: 600;
}

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

.review-content-inner a {
    color: var(--gold);
}

.review-content-inner blockquote {
    border-left: 3px solid var(--btn-primary);
    padding: 12px 20px;
    background: rgba(255, 255, 255, .03);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1em 0;
    font-style: italic;
    color: var(--text-muted);
}

.review-content-inner strong, .review-content-inner b {
    color: var(--text);
    font-weight: 600;
}

.review-content-inner code {
    background: rgba(255, 255, 255, .08);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: .85em;
}

.review-content-inner img {
    border-radius: var(--radius-sm);
    margin: 1em auto;
}

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

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

.faq-item {
    background: var(--card-bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 600;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, .04);
}

.faq-question .faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-answer-inner {
    padding: 0 20px 18px;
    font-size: .9rem;
    color: rgba(240, 236, 228, .8);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.comments-section {
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.comment-item {
    background: var(--card-bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--btn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    flex-shrink: 0;
}

.comment-meta {
    flex: 1;
}

.comment-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--text);
}

.comment-date {
    font-size: .78rem;
    color: var(--text-dim);
}

.comment-stars {
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: 1px;
}

.comment-text {
    font-size: .88rem;
    color: rgba(240, 236, 228, .8);
    line-height: 1.65;
}

.comment-form {
}

.comment-form-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text);
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.form-field input, .form-field textarea, .form-field select {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: .9rem;
    padding: 11px 14px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}

.form-field input:focus, .form-field textarea:focus {
    border-color: rgba(212, 164, 55, .5);
    box-shadow: 0 0 0 3px rgba(212, 164, 55, .1);
}

.form-field textarea {
    resize: vertical;
    min-height: 110px;
}

.form-row {
    display: flex;
    gap: 14px;
}

.form-row .form-field {
    flex: 1;
}

.form-notice {
    font-size: .78rem;
    color: var(--text-dim);
    margin-top: 10px;
}

.form-success {
    display: none;
    background: rgba(26, 122, 60, .15);
    border: 1px solid rgba(26, 122, 60, .4);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: var(--green-light);
    font-size: .9rem;
    margin-top: 12px;
}

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

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

.author-info {
    flex: 1;
    min-width: 220px;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.author-role {
    font-size: .82rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.author-bio {
    font-size: .88rem;
    color: rgba(240, 236, 228, .78);
    line-height: 1.7;
    margin-bottom: 12px;
}

.author-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.author-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), border-color var(--transition);
}

.author-link:hover {
    color: var(--gold);
    border-color: rgba(212, 164, 55, .4);
}

.author-link svg {
    width: 14px;
    height: 14px;
}

.site-footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

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

.footer-country img {
    width: 22px;
    border-radius: 2px;
}

.footer-nav-col {
    min-width: 150px;
}

.footer-nav-col h4 {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 14px;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-col ul li a {
    font-size: .83rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-nav-col ul li a:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-social-link {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, .12);
    border-color: var(--gold);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
}

.footer-social-link:hover svg {
    fill: var(--gold);
}

.footer-bottom {
}

.footer-logos-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.footer-logos-row h5 {
    font-size: .72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 0;
    width: 100%;
}

.logo-badge {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 7px 14px;
    font-size: .72rem;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 600;
}

.footer-legal {
    font-size: .75rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 14px;
}

.footer-copyright {
    font-size: .78rem;
    color: var(--text-dim);
}

.footer-email a {
    color: var(--gold);
    text-decoration: none;
}

.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.bottom-widget.show {
    transform: translateY(0);
}

.bottom-widget-inner {
    background: linear-gradient(90deg, #0f0303 0%, #2a0606 50%, #0f0303 100%);
    border-top: 2px solid var(--btn-primary);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.widget-promo-text {
    flex: 1;
    min-width: 200px;
}

.widget-promo-text .wt-label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.widget-promo-text .wt-bonus {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.widget-promo-text .wt-code {
    font-size: .82rem;
    color: var(--gold);
    font-weight: 600;
}

.widget-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
}

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

.breadcrumb {
    padding: 12px 0;
    font-size: .8rem;
    color: var(--text-dim);
}

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

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

.breadcrumb span {
    color: var(--text-dim);
    margin: 0 6px;
}

.rating-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.rating-out {
    font-size: .85rem;
    color: var(--text-muted);
}

.info-page-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 0 60px;
}

.info-page-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-page-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.6em 0 .7em;
}

.info-page-content p {
    margin-bottom: 1em;
    font-size: .93rem;
    color: rgba(240, 236, 228, .85);
    line-height: 1.75;
}

.info-page-content ul, .info-page-content ol {
    margin: .8em 0 1em;
}

.info-page-content li {
    font-size: .93rem;
    color: rgba(240, 236, 228, .85);
    margin-bottom: .4em;
}

.d-none {
    display: none !important;
}

.d-flex {
    display: flex !important;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 36px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

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

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

.qr7t8 {
    opacity: 0;
    position: fixed;
    left: -9999px;
}

.wp-block-group {
    display: contents;
}

.elementor-widget-wrap {
    display: contents;
}

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

    .burger {
        display: flex;
    }

    .online-counter {
        display: none;
    }

    .pros-cons-grid {
        flex-direction: column;
    }

    .bonuses-grid {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .bonus-card {
        min-width: 280px;
        scroll-snap-align: start;
    }

    .footer-top {
        gap: 28px;
    }

    .footer-nav-col {
        min-width: 130px;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-badge {
        min-width: 100%;
    }
}

@media (max-width: 600px) {
    .block-card {
        padding: 22px 18px;
    }

    .slot-reels {
        gap: 8px;
    }

    .slot-reel {
        width: 74px;
        height: 74px;
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-inner {
        padding: 50px 0;
    }

    .btn--lg {
        padding: 14px 24px;
        font-size: .95rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .author-links {
        justify-content: center;
    }

    .author-meta {
        justify-content: center;
    }

    .bottom-widget-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .header-actions .online-counter {
        display: none;
    }
}

html,
body {
    background: #111;
}

main,
.site-main,
.content,
.page,
.wrapper,
.container {
    background: #111;
}