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

:root {
    --c-bg: #242630;
    --c-hdr: #1A1C24;
    --c-card: #1E2030;
    --c-card2: #20222E;
    --c-primary: #00CC5F;
    --c-primary-h: #00E86A;
    --c-secondary: #3D404C;
    --c-border: #2E3040;
    --c-text: #E8E9EE;
    --c-muted: #9A9CB0;
    --c-gold: #F5C518;
    --font: 'Montserrat', Arial, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --sp: 8px;
    --transition: .25s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

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

a:hover {
    color: var(--c-primary-h);
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--c-text);
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    margin-bottom: .8rem;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: .6rem;
}

p {
    margin-bottom: .9rem;
    line-height: 1.7;
}

.x7r2k {
    display: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--sp) * 2);
}

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

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

.btn:hover {
    transform: translateY(-1px);
}

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

.btn-primary {
    background: var(--c-primary);
    color: #0A0B0F;
}

.btn-primary:hover {
    background: var(--c-primary-h);
    box-shadow: 0 4px 20px rgba(0, 204, 95, .35);
    color: #0A0B0F;
}

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

.btn-secondary:hover {
    background: #484B5A;
    color: var(--c-text);
}

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

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

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

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

.section-title {
    font-size: clamp(1.25rem, 3vw, 1.7rem);
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: calc(var(--sp) * 3);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--c-border);
    margin-left: 8px;
}

.section-title span.accent {
    color: var(--c-primary);
}

/* ===== HEADER ===== */
.site-header {
    background: var(--c-hdr);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .4);
}

.hdr-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: calc(var(--sp) * 2);
    padding: 12px calc(var(--sp) * 2);
    max-width: 1200px;
    margin: 0 auto;
}

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

.hdr-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

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

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

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

.hdr-nav a:hover, .hdr-nav a.active {
    color: var(--c-text);
    background: rgba(255, 255, 255, .06);
}

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

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

.hdr-online .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-primary);
    animation: pulse-dot 2s infinite;
}

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

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

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--c-hdr);
    z-index: 1050;
    flex-direction: column;
    padding: 80px 24px 32px;
    gap: 8px;
    overflow-y: auto;
}

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

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--c-border);
    transition: background var(--transition);
    text-decoration: none;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, .05);
}

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

.mobile-menu-btns {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--c-border);
}

.mobile-menu-btns .btn {
    flex: 1;
    justify-content: center;
}

/* ===== HERO ===== */
.hero-block {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-hdr);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/spinago-banner.png');
    background-size: cover;
    background-position: center;
    opacity: .25;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 28, 36, .95) 40%, rgba(36, 38, 48, .7) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 204, 95, .12);
    border: 1px solid rgba(0, 204, 95, .3);
    color: var(--c-primary);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-title .hl {
    color: var(--c-primary);
}

.hero-sub {
    color: var(--c-muted);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.65;
}

.hero-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .05);
    border: 1.5px dashed rgba(0, 204, 95, .4);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    margin-bottom: 28px;
    font-size: .88rem;
}

.hero-promo-label {
    color: var(--c-muted);
}

.hero-promo-code {
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--c-primary);
    cursor: pointer;
}

.hero-promo-copy {
    background: none;
    border: none;
    color: var(--c-muted);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color var(--transition);
}

.hero-promo-copy:hover {
    color: var(--c-primary);
}

.hero-promo-copy svg {
    width: 16px;
    height: 16px;
}

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

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--c-border);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-primary);
}

.hero-stat span {
    font-size: .78rem;
    color: var(--c-muted);
}

/* ===== BLOCKS ===== */
.block-section {
    padding: 52px 0;
}

.block-section + .block-section {
    border-top: 1px solid var(--c-border);
}

/* ===== CASINO INFO TABLE ===== */
.info-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    background: var(--c-card);
}

.info-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--c-border);
    vertical-align: middle;
    text-align: left;
}

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

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

.info-table .param-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--c-muted);
    white-space: nowrap;
    min-width: 180px;
}

.info-table .param-icon {
    width: 28px;
    height: 28px;
    background: rgba(0, 204, 95, .1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-table .param-icon svg {
    width: 15px;
    height: 15px;
    color: var(--c-primary);
}

.info-table .val-cell {
    color: var(--c-text);
}

.badge-license {
    display: inline-block;
    background: rgba(0, 204, 95, .12);
    color: var(--c-primary);
    border-radius: 5px;
    padding: 2px 8px;
    font-size: .78rem;
    font-weight: 600;
}

/* ===== TOURNAMENTS ===== */
.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: calc(var(--sp) * 2.5);
}

.tournament-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary), #00998A);
}

.tournament-card:hover {
    border-color: rgba(0, 204, 95, .35);
    transform: translateY(-2px);
}

.tournament-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-primary);
    background: rgba(0, 204, 95, .1);
    padding: 3px 9px;
    border-radius: 4px;
    width: fit-content;
}

.tournament-name {
    font-size: 1.05rem;
    font-weight: 700;
}

.tournament-desc {
    font-size: .85rem;
    color: var(--c-muted);
    flex: 1;
}

.tournament-prize {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-gold);
}

.tournament-timer {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: .8rem;
    color: var(--c-muted);
}

.timer-blocks {
    display: flex;
    gap: 5px;
}

.timer-unit {
    background: var(--c-hdr);
    border-radius: 5px;
    padding: 4px 7px;
    text-align: center;
    min-width: 38px;
}

.timer-unit .t-val {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--c-text);
}

.timer-unit .t-lbl {
    display: block;
    font-size: .6rem;
    color: var(--c-muted);
    text-transform: uppercase;
}

.tournaments-slider-wrap {
    position: relative;
    display: none;
}

/* ===== APP INFO ===== */
.app-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--sp) * 4);
    align-items: start;
}

.app-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    background: var(--c-card);
}

.app-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--c-border);
    text-align: left;
}

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

.app-table .td-key {
    font-weight: 600;
    color: var(--c-muted);
    white-space: nowrap;
}

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

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

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    padding: 14px 20px;
    color: var(--c-text);
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition);
}

.app-download-btn:hover {
    border-color: var(--c-primary);
    background: rgba(0, 204, 95, .06);
    color: var(--c-text);
}

.app-download-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.app-download-btn .btn-text {
    display: flex;
    flex-direction: column;
}

.app-download-btn .btn-text small {
    font-size: .72rem;
    color: var(--c-muted);
}

.app-download-btn .btn-text strong {
    font-size: .95rem;
    font-weight: 600;
}

.app-promo-note {
    background: rgba(0, 204, 95, .07);
    border: 1px solid rgba(0, 204, 95, .2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: .85rem;
    color: var(--c-muted);
    margin-top: 8px;
}

/* ===== BONUSES ===== */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--sp) * 2.5);
}

.bonus-card {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 204, 95, .3);
}

.bonus-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--c-primary), #009944);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-card-icon svg {
    width: 24px;
    height: 24px;
    color: #0A0B0F;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-primary);
}

.bonus-name {
    font-size: 1rem;
    font-weight: 600;
}

.bonus-desc {
    font-size: .85rem;
    color: var(--c-muted);
    flex: 1;
}

.bonus-terms {
    font-size: .75rem;
    color: var(--c-muted);
    opacity: .7;
}

/* ===== WHEEL GAME ===== */
.wheel-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--sp) * 4);
    align-items: center;
}

.wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.wheel-canvas-wrap {
    position: relative;
    width: 300px;
    height: 300px;
}

.wheel-canvas-wrap canvas {
    border-radius: 50%;
}

.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--c-primary);
    filter: drop-shadow(0 2px 4px rgba(0, 204, 95, .5));
}

.wheel-result {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    display: none;
    flex-direction: column;
    gap: 12px;
    animation: fadeIn .4s ease;
}

.wheel-result.win {
    border-color: rgba(0, 204, 95, .4);
    background: rgba(0, 204, 95, .06);
}

.wheel-result.lose {
    border-color: rgba(255, 100, 100, .3);
    background: rgba(255, 60, 60, .04);
}

.wheel-result-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.wheel-result.win .wheel-result-title {
    color: var(--c-primary);
}

.wheel-result-bonus {
    font-size: .95rem;
    color: var(--c-muted);
}

.wheel-info {
}

.wheel-info h3 {
    margin-bottom: 14px;
}

.wheel-info p {
    color: var(--c-muted);
    font-size: .9rem;
    margin-bottom: 16px;
}

.wheel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.wheel-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    color: var(--c-muted);
}

.wheel-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-primary);
    flex-shrink: 0;
}

/* ===== REVIEW CONTENT ===== */
.review-content-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px 36px;
}

.review-content-block h2 {
    margin-bottom: 1rem;
}

.review-content-block h3 {
    margin-top: 1.6rem;
    margin-bottom: .7rem;
}

.review-content-block h4 {
    margin-top: 1.2rem;
    margin-bottom: .5rem;
}

.review-content-block p {
    color: var(--c-muted);
}

.review-content-block ul, .review-content-block ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.review-content-block li {
    color: var(--c-muted);
    margin-bottom: .4rem;
}

.review-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: .9rem;
    text-align: left;
}

.review-content-block table td,
.review-content-block table th {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
}

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

.review-content-block a {
    text-decoration: underline;
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    margin-top: 28px;
}

.author-box img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-meta .author-name {
    font-weight: 700;
    font-size: .95rem;
}

.author-meta .author-title {
    font-size: .8rem;
    color: var(--c-muted);
    margin-bottom: 6px;
}

.author-meta .author-bio {
    font-size: .82rem;
    color: var(--c-muted);
    margin: 0;
}

.author-meta a {
    font-size: .8rem;
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: calc(var(--sp) * 2.5);
    margin-bottom: calc(var(--sp) * 4);
}

.review-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color var(--transition);
}

.review-card:hover {
    border-color: rgba(0, 204, 95, .25);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--c-secondary);
}

.review-author-name {
    font-weight: 600;
    font-size: .95rem;
}

.review-author-loc {
    font-size: .78rem;
    color: var(--c-muted);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    color: var(--c-gold);
}

.review-text {
    font-size: .88rem;
    color: var(--c-muted);
    line-height: 1.65;
}

.review-date {
    font-size: .75rem;
    color: var(--c-muted);
    opacity: .6;
}

.review-form-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px 32px;
    max-width: 560px;
}

.review-form-wrap h3 {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-muted);
}

.form-control {
    background: var(--c-hdr);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-family: var(--font);
    font-size: .9rem;
    padding: 10px 14px;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}

.form-control:focus {
    border-color: var(--c-primary);
}

.form-control::placeholder {
    color: var(--c-muted);
    opacity: .5;
}

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

.form-success {
    display: none;
    background: rgba(0, 204, 95, .1);
    border: 1px solid rgba(0, 204, 95, .3);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--c-primary);
    font-size: .9rem;
    text-align: center;
    margin-top: 12px;
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: .93rem;
    user-select: none;
    transition: background var(--transition);
}

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

.faq-arrow {
    width: 20px;
    height: 20px;
    color: var(--c-muted);
    transition: transform var(--transition);
    flex-shrink: 0;
}

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

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

.faq-answer-inner {
    padding: 0 20px 16px;
    color: var(--c-muted);
    font-size: .88rem;
    line-height: 1.7;
}

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

/* ===== FOOTER ===== */
.site-footer {
    background: var(--c-hdr);
    border-top: 1px solid var(--c-border);
    margin-top: auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: calc(var(--sp) * 4);
    padding: 48px 0 36px;
}

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

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

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

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

.footer-nav a {
    font-size: .85rem;
    color: var(--c-muted);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--c-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-muted);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--c-primary);
    color: #0A0B0F;
}

.social-btn svg {
    width: 15px;
    height: 15px;
}

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

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

.footer-logo-badge {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--c-muted);
    white-space: nowrap;
}

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

.footer-legal {
    font-size: .75rem;
    color: var(--c-muted);
    opacity: .65;
    line-height: 1.65;
    max-width: 800px;
}

.footer-copyright {
    font-size: .78rem;
    color: var(--c-muted);
    margin-bottom: 8px;
}

/* ===== FLOATING WIDGET ===== */
.float-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1A1C24 0%, #1E2030 100%);
    border-top: 1.5px solid rgba(0, 204, 95, .3);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .4);
    padding: 12px calc(var(--sp) * 2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fw-text {
    display: flex;
    flex-direction: column;
}

.fw-text small {
    font-size: .72rem;
    color: var(--c-muted);
}

.fw-text strong {
    font-size: .95rem;
    color: var(--c-text);
}

.fw-promo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--c-muted);
}

.fw-promo .fw-code {
    background: rgba(0, 204, 95, .12);
    border: 1px dashed rgba(0, 204, 95, .35);
    border-radius: 4px;
    padding: 2px 8px;
    color: var(--c-primary);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .06em;
}

.fw-close {
    background: none;
    border: none;
    color: var(--c-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    font-size: 18px;
    transition: color var(--transition);
}

.fw-close:hover {
    color: var(--c-text);
}

/* ===== SLIDER ===== */
.slider-wrap {
    overflow: hidden;
    position: relative;
}

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

.slider-track > * {
    flex-shrink: 0;
}

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

.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-secondary);
    border: none;
    color: var(--c-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.slider-btn:hover {
    background: var(--c-primary);
    color: #0A0B0F;
}

.slider-btn svg {
    width: 16px;
    height: 16px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.fade-in {
    animation: fadeIn .5s ease forwards;
}

.promo-code-copied {
    color: var(--c-primary) !important;
}

/* ===== WP COMPAT DECOYS ===== */
.entry-content {
    display: contents;
}

.post-content {
    display: contents;
}

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

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

#wpadminbar {
    display: none !important;
}

.wp-caption {
    display: none;
}

.size-full {
}

.aligncenter {
    display: block;
    margin: auto;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--c-hdr);
}

::-webkit-scrollbar-thumb {
    background: var(--c-secondary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--c-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

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

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

    .wheel-wrap {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
    }
}

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

    .burger-btn {
        display: flex;
    }

    .hdr-online {
        display: none;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .tournaments-grid {
        display: none;
    }

    .tournaments-slider-wrap .slider-track {
        display: flex;
    }

    .tournaments-slider-wrap {
        display: block;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

    .review-form-wrap {
        padding: 20px;
    }

    .review-content-block {
        padding: 20px;
    }

    .block-section {
        padding: 36px 0;
    }

    .float-widget {
        flex-wrap: wrap;
    }

    .fw-promo {
        display: none;
    }

    .hero-content {
        padding: 40px 0;
    }

    .wheel-canvas-wrap {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

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

    .footer-logos-row {
        gap: 6px;
    }

    .hdr-actions .btn-secondary {
        display: none;
    }
}
