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

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

:root {
    --c-bg: #242630;
    --c-header: #1A1C24;
    --c-green: #00CC5F;
    --c-secondary: #3D404C;
    --c-text: #E8EAF0;
    --c-text-muted: #9DA3B4;
    --c-border: #2E3140;
    --c-card: #1E2030;
    --c-card2: #20222E;
    --c-accent: #00E066;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-green: 0 0 20px rgba(0, 204, 95, 0.25);
    --transition: 0.22s ease;
    --font: 'Montserrat', Arial, sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background: var(--c-bg);
}

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

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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
    outline: none;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    border: none;
    text-decoration: none;
}

.btn--green {
    background: var(--c-green);
    color: #0A0C10;
    box-shadow: var(--shadow-green);
}

.btn--green:hover {
    background: var(--c-accent);
    color: #0A0C10;
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(0, 204, 95, 0.45);
}

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

.btn--secondary:hover {
    background: #4a4e5e;
    color: #fff;
}

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

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

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

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

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

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

.header-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-green);
    letter-spacing: 0.04em;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.header-nav a:hover, .header-nav a.active {
    color: var(--c-green);
    background: rgba(0, 204, 95, 0.08);
}

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

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

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--c-text-muted);
    white-space: nowrap;
}

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

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

.online-count {
    color: var(--c-green);
    font-weight: 700;
}

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

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

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

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-spago.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 28, 36, 0.92) 40%, rgba(26, 28, 36, 0.3) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 204, 95, 0.12);
    border: 1px solid rgba(0, 204, 95, 0.3);
    color: var(--c-green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--c-green);
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
}

.hero-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 14px;
}

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

.hero-subtitle {
    font-size: 1rem;
    color: var(--c-text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 460px;
}

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

.hero-bonus-card {
    flex-shrink: 0;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    text-align: center;
    min-width: 240px;
    box-shadow: var(--shadow), 0 0 40px rgba(0, 204, 95, 0.08);
}

.bonus-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

.bonus-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--c-green);
    line-height: 1.1;
    margin-bottom: 4px;
}

.bonus-desc {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 6px;
}

.bonus-spins {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.bonus-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(61, 64, 76, 0.6);
    border: 1px dashed var(--c-border);
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 16px;
}

.bonus-promo strong {
    color: var(--c-green);
    letter-spacing: 0.06em;
    font-size: 0.9rem;
}

/* ===================== ADVANTAGES ===================== */
.section-gap {
    padding: 64px 0;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

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

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.adv-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 200px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.adv-card:hover {
    border-color: rgba(0, 204, 95, 0.35);
    transform: translateY(-3px);
    box-shadow: var(--shadow), var(--shadow-green);
}

.adv-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: rgba(0, 204, 95, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adv-icon svg {
    width: 24px;
    height: 24px;
    color: var(--c-green);
    fill: var(--c-green);
}

.adv-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.adv-text {
    font-size: 0.83rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

/* ===================== PAYMENT TABLE ===================== */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
}

table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: var(--c-card);
}

thead tr {
    background: var(--c-header);
}

th {
    text-align: left;
    padding: 14px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--c-border);
    white-space: nowrap;
}

td {
    padding: 13px 16px;
    font-size: 0.83rem;
    color: var(--c-text);
    border-bottom: 1px solid rgba(46, 49, 64, 0.6);
    vertical-align: middle;
}

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

tbody tr:hover {
    background: rgba(0, 204, 95, 0.04);
}

.pay-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.83rem;
}

.pay-logo-icon {
    width: 32px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
}

.pay-fast {
    color: var(--c-green);
    font-weight: 600;
    font-size: 0.78rem;
}

.pay-tag {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(0, 204, 95, 0.12);
    color: var(--c-green);
}

/* ===================== LEADERBOARD ===================== */
.leaderboard-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.lb-header {
    background: var(--c-header);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lb-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.lb-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--c-green);
    font-weight: 600;
}

.lb-list {
}

.lb-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    border-bottom: 1px solid rgba(46, 49, 64, 0.5);
    transition: background var(--transition);
}

.lb-row:last-child {
    border-bottom: none;
}

.lb-row:hover {
    background: rgba(0, 204, 95, 0.04);
}

.lb-rank {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--c-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--c-text-muted);
    flex-shrink: 0;
}

.lb-rank.gold {
    background: #FFD700;
    color: #0A0C10;
}

.lb-rank.silver {
    background: #C0C0C0;
    color: #0A0C10;
}

.lb-rank.bronze {
    background: #CD7F32;
    color: #fff;
}

.lb-nick {
    flex: 1;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--c-text);
}

.lb-game {
    font-size: 0.72rem;
    color: var(--c-text-muted);
}

.lb-win {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-green);
}

/* ===================== BONUSES ===================== */
.bonuses-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bonus-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 240px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition);
}

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

.bonus-card.featured {
    border-color: rgba(0, 204, 95, 0.4);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 204, 95, 0.12) 0%, transparent 70%);
}

.bonus-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(0, 204, 95, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-icon svg {
    width: 26px;
    height: 26px;
    color: var(--c-green);
}

.bonus-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
}

.bonus-card .bonus-amount {
    font-size: 1.7rem;
    margin-bottom: 0;
}

.bonus-card .bonus-desc {
    font-size: 0.82rem;
}

.bonus-terms {
    font-size: 0.72rem;
    color: var(--c-text-muted);
    margin-top: auto;
}

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

.bonuses-slider {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-secondary);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--c-green);
    transform: scale(1.3);
}

/* ===================== WHEEL ===================== */
.wheel-section-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.wheel-info {
    max-width: 380px;
}

.wheel-info .section-title {
    text-align: left;
}

.wheel-info .section-sub {
    text-align: left;
}

.wheel-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.wheel-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wheel-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 204, 95, 0.12);
    border: 1px solid rgba(0, 204, 95, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-green);
    flex-shrink: 0;
}

.wheel-step p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

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

.wheel-frame {
    position: relative;
    width: 280px;
    height: 280px;
    filter: drop-shadow(0 0 24px rgba(0, 204, 95, 0.3));
}

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

.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 28px solid var(--c-green);
    filter: drop-shadow(0 2px 6px rgba(0, 204, 95, 0.5));
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-header);
    border: 3px solid var(--c-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(0, 204, 95, 0.4);
}

.wheel-center svg {
    width: 22px;
    height: 22px;
    color: var(--c-green);
}

.wheel-result {
    background: var(--c-card);
    border: 1px solid rgba(0, 204, 95, 0.3);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    text-align: center;
    max-width: 280px;
    display: none;
}

.wheel-result.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.wheel-result.win {
    border-color: var(--c-green);
}

.wheel-result.lose {
    border-color: #e55;
}

.wheel-result-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.wheel-result-text {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

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

/* ===================== REVIEW CONTENT ===================== */
.review-section {
    background: var(--c-card2);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.author-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 32px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--c-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-green);
    border: 2px solid var(--c-green);
}

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

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

.author-bio {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.author-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.author-links a {
    font-size: 0.75rem;
    color: var(--c-green);
    text-decoration: underline;
}

.content-body {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--c-text);
}

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

.content-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 22px 0 10px;
}

.content-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-green);
    margin: 18px 0 8px;
}

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

.content-body ul, .content-body ol {
    margin: 12px 0 16px 22px;
}

.content-body li {
    margin-bottom: 7px;
}

.content-body ul li {
    list-style: disc;
}

.content-body ol li {
    list-style: decimal;
}

.content-body strong {
    color: #fff;
    font-weight: 600;
}

.content-body em {
    font-style: italic;
    color: var(--c-text-muted);
}

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

.content-body a:hover {
    color: var(--c-accent);
}

.content-body blockquote {
    border-left: 3px solid var(--c-green);
    padding: 10px 18px;
    background: rgba(0, 204, 95, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 18px 0;
    color: var(--c-text-muted);
    font-style: italic;
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    background: var(--c-header);
}

.content-body th {
    background: var(--c-secondary);
}

.content-body th, .content-body td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    font-size: 0.85rem;
}

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

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

.content-body code {
    background: var(--c-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85em;
}

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

.content-body pre code {
    background: none;
    padding: 0;
}

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

.footer-top {
    padding: 48px 0 32px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    margin-bottom: 14px;
}

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

.footer-logo .logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-green);
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.footer-flag svg {
    width: 20px;
    height: 15px;
}

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

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

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

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

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

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--c-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.social-btn:hover {
    background: var(--c-green);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--c-text-muted);
    transition: fill var(--transition);
}

.social-btn:hover svg {
    fill: #0A0C10;
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 0;
}

.footer-logos {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-logos-label {
    font-size: 0.72rem;
    color: var(--c-text-muted);
    font-weight: 600;
    width: 80px;
    flex-shrink: 0;
}

.footer-logo-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--c-secondary);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--c-text-muted);
}

.footer-logo-pill svg {
    width: 14px;
    height: 14px;
}

.footer-bottom {
    padding: 20px 0;
}

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

.footer-copy {
    font-size: 0.75rem;
    color: #6a6f82;
    line-height: 1.6;
    max-width: 680px;
}

.footer-copy a {
    color: #6a6f82;
    text-decoration: underline;
}

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

/* ===================== STICKY WIDGET ===================== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: var(--c-header);
    border-top: 1px solid rgba(0, 204, 95, 0.25);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-widget.visible {
    transform: translateY(0);
}

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

.widget-promo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.widget-promo-icon {
    font-size: 1.4rem;
}

.widget-promo-text {
    font-size: 0.82rem;
}

.widget-promo-text strong {
    color: var(--c-green);
    display: block;
    font-size: 0.95rem;
}

.widget-promo-text span {
    color: var(--c-text-muted);
    font-size: 0.75rem;
}

.widget-promo-code {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(61, 64, 76, 0.7);
    border: 1px dashed rgba(0, 204, 95, 0.3);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
}

.widget-code-val {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--c-green);
    letter-spacing: 0.07em;
}

.widget-copy-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--c-text-muted);
    font-size: 0.7rem;
    transition: color var(--transition);
}

.widget-copy-btn:hover {
    color: var(--c-green);
}

.widget-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 1.2rem;
    padding: 4px;
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1;
}

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

/* ===================== MISC ===================== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 0;
}

.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(61, 64, 76, 0.6);
    color: var(--c-text-muted);
    letter-spacing: 0.04em;
}

.tag.green {
    background: rgba(0, 204, 95, 0.12);
    color: var(--c-green);
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars svg {
    width: 16px;
    height: 16px;
    fill: #FFD700;
}

.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 980;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-secondary);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: var(--c-green);
}

.scroll-to-top svg {
    width: 18px;
    height: 18px;
    stroke: var(--c-text);
}

.scroll-to-top:hover svg {
    stroke: #0A0C10;
}

/* ===================== WP COMPAT (unused, fingerprint) ===================== */
.wp-block-group {
}

.entry-content {
}

.post-thumbnail {
}

.elementor-widget-container {
}

.wp-caption {
}

.screen-reader-text {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption-text {
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

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

.wp-block-separator {
    border: none;
    border-top: 1px solid var(--c-border);
}

/* ===================== ANIMATIONS ===================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .adv-card {
        flex: 1 1 calc(50% - 16px);
    }

    .bonus-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--c-header);
        border-bottom: 1px solid var(--c-border);
        padding: 12px 20px 20px;
        gap: 2px;
        z-index: 999;
    }

    .header-nav.open {
        display: flex;
    }

    .header-nav a {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .burger {
        display: flex;
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        position: relative;
    }

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

    .hero-bonus-card {
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .adv-card {
        flex: 1 1 100%;
    }

    .bonus-card {
        flex: 1 1 100%;
    }

    .bonuses-slider .bonus-card {
        flex: 0 0 calc(100% - 16px);
        min-width: calc(100% - 16px);
    }

    .wheel-section-inner {
        flex-direction: column;
    }

    .wheel-info {
        max-width: 100%;
    }

    .wheel-info .section-title, .wheel-info .section-sub {
        text-align: center;
    }

    .wheel-steps {
        align-items: flex-start;
        max-width: 320px;
        margin: 0 auto 24px;
    }

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

    .footer-brand {
        max-width: 100%;
    }

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

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

    .widget-promo-code {
        display: none;
    }

    .author-block {
        flex-direction: column;
    }
}

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

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

    .section-gap {
        padding: 44px 0;
    }

    .bonus-amount {
        font-size: 1.8rem;
    }

    .wheel-frame {
        width: 240px;
        height: 240px;
    }

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

.bsvsf {
    padding: 60px 0;
}

.bsvsf .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bsvsf .content-body {
    background: #1f2230;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

.bsvsf .content-body > *:first-child {
    margin-top: 0;
}

.bsvsf .content-body > *:last-child {
    margin-bottom: 0;
}

.bsvsf .content-body table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.bsvsf .content-body table th,
.bsvsf .content-body table td {
    padding: 14px 16px;
}

.bsvsf .content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.bsvsf .content-body iframe,
.bsvsf .content-body video {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
}

.bsvsf .content-body pre {
    overflow: auto;
    border-radius: 14px;
}

.bsvsf .content-body blockquote {
    border-left: 4px solid #00cc5f;
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
}

@media (max-width: 991px) {

    .bsvsf {
        padding: 50px 0;
    }

    .bsvsf .container {
        padding: 0 16px;
    }

    .bsvsf .content-body {
        padding: 28px;
        border-radius: 18px;
    }

    .bsvsf .content-body h1 {
        font-size: 34px;
    }

    .bsvsf .content-body h2 {
        font-size: 28px;
    }

    .bsvsf .content-body h3 {
        font-size: 22px;
    }

    .bsvsf .content-body p,
    .bsvsf .content-body li {
        font-size: 15px;
        line-height: 1.75;
    }

    .bsvsf .content-body table {
        min-width: 620px;
    }

}

@media (max-width: 768px) {

    .bsvsf {
        padding: 40px 0;
    }

    .bsvsf .container {
        padding: 0 14px;
    }

    .bsvsf .section-title {
        font-size: 30px;
        text-align: center;
    }

    .bsvsf .section-sub {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .bsvsf .content-body {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .bsvsf .content-body h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .bsvsf .content-body h2 {
        font-size: 24px;
    }

    .bsvsf .content-body h3 {
        font-size: 20px;
    }

    .bsvsf .content-body h4 {
        font-size: 18px;
    }

    .bsvsf .content-body p,
    .bsvsf .content-body li {
        font-size: 15px;
        line-height: 1.8;
    }

    .bsvsf .content-body ul,
    .bsvsf .content-body ol {
        padding-left: 20px;
    }

    .bsvsf .content-body table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        min-width: 560px;
        -webkit-overflow-scrolling: touch;
    }

    .bsvsf .content-body table th,
    .bsvsf .content-body table td {
        padding: 12px;
        font-size: 13px;
    }

    .bsvsf .content-body blockquote {
        padding: 16px;
    }

}

@media (max-width: 480px) {

    .bsvsf {
        padding: 32px 0;
    }

    .bsvsf .container {
        padding: 0 12px;
    }

    .bsvsf .section-title {
        font-size: 26px;
    }

    .bsvsf .section-sub {
        font-size: 14px;
    }

    .bsvsf .content-body {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .bsvsf .content-body h1 {
        font-size: 24px;
    }

    .bsvsf .content-body h2 {
        font-size: 21px;
    }

    .bsvsf .content-body h3 {
        font-size: 18px;
    }

    .bsvsf .content-body p,
    .bsvsf .content-body li {
        font-size: 14px;
    }

    .bsvsf .content-body table {
        min-width: 520px;
    }

    .bsvsf .content-body table th,
    .bsvsf .content-body table td {
        padding: 10px;
        font-size: 12px;
    }

}