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

:root {
    --c-header: #053029;
    --c-footer: #053029;
    --c-bg: #042522;
    --c-btn-login: #013D33;
    --c-btn-reg: #B30AD7;
    --c-accent: #B30AD7;
    --c-text: #e8f0ee;
    --c-text-muted: #8eb8b0;
    --c-border: #0d4a3e;
    --c-card: #062e28;
    --c-card2: #073830;
    --c-green-light: #0a5547;
    --c-plus: #1a7a5e;
    --c-minus: #7a1a3e;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

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

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

body {
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--c-accent);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: #d44af5;
}

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

.x9f2a {
    display: none;
}

.wp-block-spacer {
    display: block;
}

.entry-content {
    display: block;
}

/* ---- LAYOUT ---- */
.sb-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* ---- HEADER ---- */
.sb-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.sb-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.sb-logo img {
    height: 46px;
    width: auto;
}

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

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

.sb-nav a {
    color: #c8e8e0;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.sb-nav a:hover {
    background: var(--c-green-light);
    color: #fff;
}

.sb-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

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

.sb-online__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    animation: pulse-dot 1.8s infinite;
    flex-shrink: 0;
}

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

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

.sb-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

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

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

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

.sb-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--c-header);
    padding: 0 20px;
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease, padding .35s ease;
}

.sb-mobile-menu.open {
    max-height: 400px;
    padding: 12px 20px 20px;
}

.sb-mobile-menu a {
    color: #c8e8e0;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border);
}

.sb-mobile-menu a:last-child {
    border-bottom: none;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, filter .2s;
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 20px;
    line-height: 1;
}

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

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

.btn--login {
    background: var(--c-btn-login);
    color: #a8f0d8;
    border: 1px solid #1a6a55;
}

.btn--login:hover {
    background: #024d42;
    color: #fff;
}

.btn--reg {
    background: var(--c-btn-reg);
    color: #fff;
    box-shadow: 0 2px 12px rgba(179, 10, 215, .4);
}

.btn--reg:hover {
    filter: brightness(1.15);
    box-shadow: 0 4px 20px rgba(179, 10, 215, .6);
}

.btn--hero {
    background: var(--c-btn-reg);
    color: #fff;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(179, 10, 215, .5);
    animation: glow-pulse 2.5s infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 4px 24px rgba(179, 10, 215, .5);
    }
    50% {
        box-shadow: 0 4px 40px rgba(179, 10, 215, .85);
    }
}

.btn--download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--c-btn-login);
    color: #a8f0d8;
    border: 1px solid #1a6a55;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: background .2s, transform .15s;
}

.btn--download:hover {
    background: #024d42;
    transform: translateY(-2px);
    color: #fff;
}

.btn--download svg {
    flex-shrink: 0;
}

.btn--wheel {
    background: var(--c-btn-reg);
    color: #fff;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(179, 10, 215, .4);
    margin-top: 16px;
}

.btn--get-bonus {
    background: var(--c-btn-reg);
    color: #fff;
    font-size: 16px;
    padding: 13px 32px;
    border-radius: 10px;
    margin-top: 12px;
    animation: glow-pulse 2.5s infinite;
}

.btn--submit {
    background: var(--c-btn-reg);
    color: #fff;
    padding: 13px 36px;
    font-size: 15px;
    border-radius: 8px;
    width: 100%;
    margin-top: 4px;
}

.btn--submit:hover {
    filter: brightness(1.12);
}

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

.sb-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/spinbetter-hero.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.sb-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 37, 34, .92) 40%, rgba(4, 37, 34, .3) 100%);
    z-index: 1;
}

.sb-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.sb-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(179, 10, 215, .2);
    border: 1px solid rgba(179, 10, 215, .5);
    color: #e0a0f5;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.sb-hero__title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    text-balance: balance;
    max-width: 600px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .6);
}

.sb-hero__title span {
    color: var(--c-accent);
}

.sb-hero__subtitle {
    font-size: 18px;
    color: #b0d8ce;
    max-width: 480px;
    line-height: 1.55;
}

.sb-hero__bonus-line {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sb-hero__bonus-badge {
    background: linear-gradient(135deg, #013D33, #0a5547);
    border: 1px solid #1a6a55;
    border-radius: 10px;
    padding: 10px 18px;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.sb-hero__bonus-badge strong {
    font-size: 22px;
    color: #a8f0d8;
}

.sb-hero__bonus-badge span {
    font-size: 12px;
    color: var(--c-text-muted);
    margin-top: 2px;
}

/* ---- SECTIONS ---- */
.sb-section {
    padding: 60px 0;
    width: 100%;
}

.sb-section:nth-child(even) {
    background: rgba(5, 48, 41, .3);
}

.sb-section__title {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    text-align: center;
    text-balance: balance;
    position: relative;
    padding-bottom: 14px;
}

.sb-section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--c-accent);
    border-radius: 2px;
    margin: 12px auto 0;
}

/* ---- PROS/CONS ---- */
.sb-proscons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.sb-proscons__col {
    flex: 1;
    min-width: 260px;
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
}

.sb-proscons__col--plus {
    border-top: 3px solid #2ecc71;
}

.sb-proscons__col--minus {
    border-top: 3px solid #e74c3c;
}

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

.sb-proscons__col--plus .sb-proscons__head {
    color: #2ecc71;
}

.sb-proscons__col--minus .sb-proscons__head {
    color: #e74c3c;
}

.sb-proscons__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sb-proscons__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--c-text);
}

.sb-proscons__list li::before {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.sb-proscons__col--plus .sb-proscons__list li::before {
    content: '✓';
    color: #2ecc71;
    font-weight: 700;
}

.sb-proscons__col--minus .sb-proscons__list li::before {
    content: '✕';
    color: #e74c3c;
    font-weight: 700;
}

/* ---- WINNERS TABLE ---- */
.sb-winners {
    overflow-x: auto;
}

.sb-winners__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
    margin: 0 auto;
    background: var(--c-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sb-winners__table thead {
    background: var(--c-header);
}

.sb-winners__table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    border-bottom: 2px solid var(--c-border);
}

.sb-winners__table td {
    padding: 13px 20px;
    font-size: 14.5px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text);
}

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

.sb-winners__table tbody tr {
    transition: background .18s;
}

.sb-winners__table tbody tr:hover {
    background: var(--c-card2);
}

.sb-winners__rank {
    font-weight: 800;
}

.sb-winners__rank--gold {
    color: #f1c40f;
}

.sb-winners__rank--silver {
    color: #bdc3c7;
}

.sb-winners__rank--bronze {
    color: #cd6133;
}

.sb-winners__amount {
    font-weight: 700;
    color: #2ecc71;
}

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

.sb-winners__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-green-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #a8f0d8;
    flex-shrink: 0;
    margin-right: 8px;
    vertical-align: middle;
}

.sb-winners__nick {
    display: inline-flex;
    align-items: center;
}

/* ---- APP INFO ---- */
.sb-app {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.sb-app__table-wrap {
    flex: 1;
    min-width: 280px;
    overflow-x: auto;
}

.sb-app__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 280px;
    background: var(--c-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
}

.sb-app__table th {
    width: 38%;
    text-align: left;
    padding: 13px 18px;
    background: var(--c-header);
    color: var(--c-text-muted);
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid var(--c-border);
    border-right: 1px solid var(--c-border);
}

.sb-app__table td {
    padding: 13px 18px;
    font-size: 14px;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border);
}

.sb-app__table tr:last-child th,
.sb-app__table tr:last-child td {
    border-bottom: none;
}

.sb-app__downloads {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sb-app__downloads-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

/* ---- VIDEO ---- */
.sb-video__wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sb-video__wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ---- WHEEL ---- */
.sb-wheel__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sb-wheel__canvas-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-wheel__canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(179, 10, 215, .4), var(--shadow);
    display: block;
}

.sb-wheel__pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--c-accent);
    filter: drop-shadow(0 2px 6px rgba(179, 10, 215, .7));
    z-index: 10;
}

.sb-wheel__result {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--c-card);
    border: 1px solid var(--c-accent);
    border-radius: var(--radius);
    padding: 24px 32px;
    margin-top: 16px;
    text-align: center;
    animation: fadeIn .4s ease;
}

.sb-wheel__result.visible {
    display: flex;
}

.sb-wheel__result-text {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.sb-wheel__result-sub {
    font-size: 15px;
    color: var(--c-text-muted);
}

.sb-wheel__result--lose .sb-wheel__result-text {
    color: #e74c3c;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ---- CONTENT BLOCK ---- */
.sb-review-block {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 36px 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
}

.sb-review-block h1, .sb-review-block h2, .sb-review-block h3,
.sb-review-block h4, .sb-review-block h5, .sb-review-block h6 {
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 28px;
    margin-bottom: 12px;
}

.sb-review-block h2 {
    font-size: 24px;
}

.sb-review-block h3 {
    font-size: 20px;
}

.sb-review-block h4 {
    font-size: 17px;
}

.sb-review-block p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--c-text);
}

.sb-review-block ul, .sb-review-block ol {
    margin: 12px 0 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sb-review-block li {
    line-height: 1.6;
    color: var(--c-text);
}

.sb-review-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--c-card2);
    border-radius: 8px;
    overflow: hidden;
}

.sb-review-block table th {
    background: var(--c-header);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
}

.sb-review-block table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
}

.sb-review-block table tr:last-child td {
    border-bottom: none;
}

.sb-review-block blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(179, 10, 215, .08);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #c8e8e0;
}

.sb-review-block a {
    color: var(--c-accent);
}

.sb-review-block strong {
    color: #fff;
    font-weight: 700;
}

.sb-review-block em {
    font-style: italic;
    color: #b0d8ce;
}

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

.sb-review-block img {
    border-radius: 8px;
    margin: 16px 0;
}

/* ---- AUTHOR ---- */
.sb-author {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 22px 28px;
    border: 1px solid var(--c-border);
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.sb-author__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--c-accent);
}

.sb-author__name {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}

.sb-author__meta {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-top: 4px;
    line-height: 1.5;
}

.sb-author__link {
    color: var(--c-accent);
    font-size: 13px;
    display: inline-block;
    margin-top: 6px;
}

/* ---- REVIEWS ---- */
.sb-reviews__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.sb-review-card {
    flex: 1;
    min-width: 220px;
    max-width: 380px;
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 24px 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s, box-shadow .2s;
}

.sb-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
}

.sb-review-card__top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sb-review-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--c-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #a8f0d8;
}

.sb-review-card__name {
    font-weight: 700;
    color: #fff;
    font-size: 15px;
}

.sb-review-card__stars {
    display: flex;
    gap: 2px;
    margin-top: 3px;
}

.sb-review-card__text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--c-text);
}

.sb-review-card__date {
    font-size: 12px;
    color: var(--c-text-muted);
}

.star-svg {
    width: 16px;
    height: 16px;
    fill: #f1c40f;
}

/* ---- REVIEW FORM ---- */
.sb-review-form {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 32px 32px;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
    max-width: 560px;
    margin: 0 auto;
}

.sb-review-form__title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

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

.sb-form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
}

.sb-form-input, .sb-form-textarea {
    background: var(--c-bg);
    border: 1.5px solid var(--c-border);
    border-radius: 8px;
    color: var(--c-text);
    font-family: 'Roboto', sans-serif;
    font-size: 14.5px;
    padding: 11px 14px;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
    outline: none;
}

.sb-form-input:focus, .sb-form-textarea:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(179, 10, 215, .15);
}

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

.sb-form-success {
    display: none;
    background: rgba(46, 204, 113, .12);
    border: 1px solid #2ecc71;
    border-radius: 8px;
    padding: 16px 20px;
    color: #2ecc71;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
}

.sb-form-success.visible {
    display: block;
    animation: fadeIn .4s ease;
}

/* ---- FOOTER ---- */
.sb-footer {
    background: var(--c-footer);
    padding: 50px 0 24px;
    margin-top: auto;
    border-top: 1px solid var(--c-border);
}

.sb-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.sb-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
}

.sb-footer__logo img {
    height: 40px;
    width: auto;
}

.sb-footer__tagline {
    font-size: 13px;
    color: var(--c-text-muted);
    max-width: 200px;
    line-height: 1.5;
}

.sb-footer__nav-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 140px;
}

.sb-footer__nav-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 4px;
}

.sb-footer__nav-group a {
    color: #8eb8b0;
    font-size: 14px;
    transition: color .2s;
}

.sb-footer__nav-group a:hover {
    color: #fff;
}

.sb-footer__payments {
    flex: 1;
    min-width: 240px;
}

.sb-footer__payments-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 12px;
}

.sb-footer__payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sb-footer__payment-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #c8e8e0;
    letter-spacing: .3px;
}

.sb-footer__providers-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 12px;
    margin-top: 24px;
}

.sb-footer__provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sb-footer__provider-badge {
    background: rgba(179, 10, 215, .12);
    border: 1px solid rgba(179, 10, 215, .25);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #e0a0f5;
}

.sb-footer__bottom {
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.sb-footer__copy {
    font-size: 12px;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.sb-footer__legal {
    font-size: 11.5px;
    color: var(--c-text-muted);
    max-width: 680px;
    line-height: 1.6;
}

/* ---- WIDGET ---- */
.sb-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: linear-gradient(90deg, #013D33 0%, #053029 30%, #0d0021 100%);
    border-top: 2px solid var(--c-accent);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    animation: slideUp .5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.sb-widget__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sb-widget__title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.sb-widget__bonus {
    font-size: 13px;
    color: #e0a0f5;
    font-weight: 600;
}

.sb-widget__close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 20px;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
    transition: color .2s;
}

.sb-widget__close:hover {
    color: #fff;
}

.sb-widget--hidden {
    display: none;
}

/* ---- MISC UTILS ---- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

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

.mt1 {
    margin-top: 8px;
}

.mb1 {
    margin-bottom: 8px;
}

/* ---- WP DECOYS (non-rendering) ---- */
.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.wp-block-column {
    flex: 1;
    min-width: 0;
}

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

.wp-block-heading {
    display: block;
}

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

.entry-header {
    display: block;
}

.site-header {
    display: block;
}

.elementor-section {
    display: block;
}

.wp-post-image {
    display: inline-block;
}

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

.is-layout-flex {
    display: flex;
}

.wp-container-1, .wp-container-2, .wp-container-3 {
    display: block;
}

/* ---- ANIMATIONS ---- */
.sb-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .sb-nav {
        display: none;
    }

    .sb-burger {
        display: flex;
    }

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

    .sb-app {
        flex-direction: column;
    }

    .sb-review-card {
        min-width: 100%;
    }
}

@media (max-width: 640px) {
    .sb-hero {
        min-height: 420px;
    }

    .sb-hero__content {
        padding: 60px 16px;
    }

    .sb-review-form {
        padding: 24px 18px;
    }

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

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

    .sb-proscons {
        flex-direction: column;
    }

    .sb-footer__top {
        flex-direction: column;
    }

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

    .sb-hero__bonus-badge {
        display: none;
    }
}

@media (max-width: 420px) {
    .sb-header__inner {
        padding: 10px 14px;
    }

    .btn--login, .btn--reg {
        padding: 8px 14px;
        font-size: 13px;
    }
}
