:root {
    --c-bg: #042522;
    --c-header: #053029;
    --c-btn-login: #013D33;
    --c-btn-reg: #B30AD7;
    --c-text: #e8f0ef;
    --c-text-muted: #9ab8b4;
    --c-accent: #B30AD7;
    --c-accent2: #00d9a6;
    --c-border: rgba(255, 255, 255, 0.08);
    --c-card: rgba(5, 48, 41, 0.7);
    --c-card2: rgba(3, 37, 34, 0.9);
    --radius: 12px;
    --radius-sm: 8px;
    --font-main: 'Open Sans', Arial, sans-serif;
    --font-heading: 'Roboto', Arial, sans-serif;
    --transition: 0.25s ease;
}

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

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

body {
    font-family: var(--font-main);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--c-text);
}

.wp-content-area {
    display: none;
    position: absolute;
    left: -9999px;
}

.elementor-hidden-el {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.wp-post-meta {
    display: none;
}

.yoast-hidden {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.x9a2b {
    display: none;
}

.m7k3q {
    position: absolute;
    left: -9999px;
}

.sbw-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.sbw-section {
    padding: 60px 0;
}

.sbw-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    font-family: var(--font-heading);
    color: var(--c-text);
    letter-spacing: -0.02em;
}

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

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

.sbw-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}

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

.sbw-btn-login {
    background: var(--c-btn-login);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 12px rgba(1, 61, 51, 0.4);
}

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

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

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

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

.sbw-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 68px;
}

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

.sbw-logo img {
    height: 24px;
    width: auto;
}

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

.sbw-nav a {
    color: rgba(232, 240, 239, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.sbw-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.sbw-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

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

.sbw-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d9a6;
    animation: sbw-pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

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

.sbw-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

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

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

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

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

.sbw-mobile-nav {
    display: none;
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 16px;
    flex-direction: column;
    gap: 8px;
}

.sbw-mobile-nav.open {
    display: flex;
}

.sbw-mobile-nav a {
    color: var(--c-text);
    font-size: 0.9rem;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: block;
}

.sbw-mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
}

/* HERO */
.sbw-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background: #021a18;
}

.sbw-hero-slider {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.sbw-hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.sbw-hero-slide.active {
    opacity: 1;
    pointer-events: all;
    position: relative;
}

.sbw-hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sbw-hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 37, 34, 0.9) 0%, rgba(4, 37, 34, 0.5) 50%, rgba(4, 37, 34, 0.15) 100%);
}

.sbw-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 16px 60px 48px;
}

.sbw-hero-badge {
    display: inline-block;
    background: rgba(179, 10, 215, 0.2);
    border: 1px solid rgba(179, 10, 215, 0.4);
    color: #d966f5;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sbw-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.03em;
}

.sbw-hero-title .accent {
    color: var(--c-accent);
}

.sbw-hero-sub {
    font-size: 1.05rem;
    color: rgba(232, 240, 239, 0.8);
    margin-bottom: 28px;
    line-height: 1.6;
}

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

.sbw-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 12px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.sbw-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}

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

/* CONTENT SECTIONS */
.sbw-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    backdrop-filter: blur(8px);
}

.sbw-card2 {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
}

/* PROS CONS */
.sbw-pros-cons {
    display: flex;
    gap: 20px;
}

.sbw-pros-col, .sbw-cons-col {
    flex: 1;
    border-radius: var(--radius);
    padding: 24px;
}

.sbw-pros-col {
    background: rgba(0, 180, 120, 0.08);
    border: 1px solid rgba(0, 217, 166, 0.2);
}

.sbw-cons-col {
    background: rgba(179, 10, 215, 0.07);
    border: 1px solid rgba(179, 10, 215, 0.2);
}

.sbw-pros-col h3, .sbw-cons-col h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sbw-pros-col h3 {
    color: #00d9a6;
}

.sbw-cons-col h3 {
    color: #d966f5;
}

.sbw-pros-col ul, .sbw-cons-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sbw-pros-col li, .sbw-cons-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--c-text);
}

.sbw-pros-col li::before {
    content: '✓';
    color: #00d9a6;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.sbw-cons-col li::before {
    content: '✕';
    color: #d966f5;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* JACKPOTS */
.sbw-jackpots-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sbw-jackpot-card {
    background: linear-gradient(135deg, #053029 0%, #021a18 100%);
    border: 1px solid rgba(179, 10, 215, 0.3);
    border-radius: var(--radius);
    padding: 24px 28px;
    text-align: center;
    min-width: 200px;
    flex: 1;
    max-width: 280px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.sbw-jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(179, 10, 215, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sbw-jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(179, 10, 215, 0.25);
}

.sbw-jackpot-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.sbw-jackpot-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.sbw-jackpot-game {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-top: 6px;
}

/* MIRRORS TABLE */
.sbw-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
}

.sbw-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 560px;
}

.sbw-table thead {
    background: var(--c-header);
}

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

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

.sbw-table tbody tr {
    transition: background var(--transition);
}

.sbw-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

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

.sbw-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sbw-status-ok {
    background: rgba(0, 217, 166, 0.12);
    color: #00d9a6;
    border: 1px solid rgba(0, 217, 166, 0.25);
}

.sbw-status-ok::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00d9a6;
    display: inline-block;
}

.sbw-mirror-link {
    color: var(--c-accent2);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}

.sbw-mirror-link:hover {
    color: var(--c-accent);
}

.sbw-mirror-datetime {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-bottom: 16px;
}

.sbw-mirror-datetime svg {
    flex-shrink: 0;
}

/* GAMES */
.sbw-games-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.sbw-game-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    width: calc(33.33% - 12px);
    min-width: 200px;
    max-width: 280px;
    transition: transform var(--transition), box-shadow var(--transition);
    flex-shrink: 0;
}

.sbw-game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.sbw-game-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.sbw-game-card-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sbw-game-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--c-text);
}

.sbw-game-provider {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

/* MOBILE GAMES SLIDER */
.sbw-games-slider-wrap {
    display: none;
    overflow-x: auto;
    gap: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}

.sbw-games-slider-wrap::-webkit-scrollbar {
    display: none;
}

.sbw-games-slider-wrap .sbw-game-card {
    min-width: 200px;
    flex-shrink: 0;
}

/* SLOT GAME */
.sbw-slot-machine {
    background: linear-gradient(135deg, #053029 0%, #031e1b 100%);
    border: 1px solid rgba(179, 10, 215, 0.3);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.sbw-slot-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--c-text);
}

.sbw-slot-subtitle {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 28px;
}

.sbw-slot-reels {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.sbw-reel {
    width: 88px;
    height: 88px;
    background: rgba(4, 37, 34, 0.8);
    border: 2px solid rgba(179, 10, 215, 0.4);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    transition: border-color var(--transition);
    overflow: hidden;
    position: relative;
}

.sbw-reel.spinning {
    border-color: var(--c-accent);
    animation: sbw-reel-spin 0.1s linear infinite;
}

.sbw-reel.win-reel {
    border-color: #ffd700;
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.4);
}

@keyframes sbw-reel-spin {
    0% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(2px);
    }
    100% {
        transform: translateY(-2px);
    }
}

.sbw-slot-spin-btn {
    background: linear-gradient(135deg, var(--c-btn-reg) 0%, #8b00a8 100%);
    color: #fff;
    border: none;
    padding: 16px 48px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    box-shadow: 0 4px 24px rgba(179, 10, 215, 0.5);
    font-family: var(--font-main);
    letter-spacing: 0.02em;
}

.sbw-slot-spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(179, 10, 215, 0.7);
}

.sbw-slot-spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.sbw-slot-result {
    margin-top: 20px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sbw-slot-win {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    text-align: center;
    animation: sbw-fadein 0.4s ease;
}

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

.sbw-slot-win-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
}

.sbw-slot-lose {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    animation: sbw-fadein 0.4s ease;
}

/* REVIEW / CONTENT BLOCK */
.sbw-review-block {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 36px;
}

.sbw-review-block h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--c-text);
}

.sbw-review-block h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--c-text);
}

.sbw-review-block h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    margin-top: 20px;
    color: var(--c-text);
}

.sbw-review-block p {
    margin-bottom: 16px;
    color: var(--c-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

.sbw-review-block ul, .sbw-review-block ol {
    margin: 0 0 16px 20px;
    color: var(--c-text);
}

.sbw-review-block li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.sbw-review-block a {
    color: var(--c-accent2);
}

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

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

.sbw-review-block em {
    color: var(--c-text-muted);
    font-style: italic;
}

.sbw-review-block blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 12px 16px;
    background: rgba(179, 10, 215, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    color: var(--c-text-muted);
    font-style: italic;
}

.sbw-review-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.88rem;
    text-align: left;
}

.sbw-review-block table th {
    background: var(--c-header);
    color: var(--c-text-muted);
    padding: 12px 14px;
    font-weight: 600;
    border: 1px solid var(--c-border);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.sbw-review-block table td {
    padding: 12px 14px;
    border: 1px solid var(--c-border);
    color: var(--c-text);
    vertical-align: top;
}

.sbw-review-block table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* AUTHOR */
.sbw-author-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
}

.sbw-author-img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-accent);
    flex-shrink: 0;
}

.sbw-author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 4px;
}

.sbw-author-role {
    font-size: 0.8rem;
    color: var(--c-accent2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    font-weight: 600;
}

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

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

.sbw-author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.sbw-author-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-text);
}

/* FOOTER */
.sbw-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 24px;
    margin-top: 40px;
}

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

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

.sbw-footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
}

.sbw-footer-desc {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    max-width: 280px;
}

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

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

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

.sbw-footer-col li a {
    font-size: 0.85rem;
    color: rgba(232, 240, 239, 0.65);
    text-decoration: none;
    transition: color var(--transition);
}

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

.sbw-footer-payments {
    margin-bottom: 24px;
}

.sbw-footer-payments-title {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    font-weight: 600;
}

.sbw-payment-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.sbw-payment-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.75rem;
    color: var(--c-text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.sbw-provider-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.sbw-provider-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.72rem;
    color: var(--c-text-muted);
    font-weight: 500;
}

.sbw-footer-legal {
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sbw-footer-copyright {
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

.sbw-footer-legal-text {
    font-size: 0.72rem;
    color: rgba(154, 184, 180, 0.5);
    line-height: 1.6;
    max-width: 900px;
}

/* WIDGET */
.sbw-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #053029 0%, #031e1b 50%, #053029 100%);
    border-top: 2px solid var(--c-accent);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(179, 10, 215, 0.25);
    transform: translateY(0);
    transition: transform var(--transition);
}

.sbw-widget-text {
    font-size: 0.88rem;
    color: #fff;
    font-weight: 600;
    flex: 1;
}

.sbw-widget-text .sbw-widget-bonus {
    color: #ffd700;
    font-weight: 800;
}

.sbw-widget-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--c-btn-reg);
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: filter var(--transition), transform var(--transition);
    box-shadow: 0 2px 16px rgba(179, 10, 215, 0.5);
    white-space: nowrap;
    flex-shrink: 0;
}

.sbw-widget-btn:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
    color: #fff;
}

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

.sbw-widget-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

body.sbw-widget-shown {
    padding-bottom: 68px;
}

/* SECTION DIVIDER */
.sbw-divider {
    height: 1px;
    background: var(--c-border);
    margin: 0;
}

/* FADE IN ANIMATION */
.sbw-fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.sbw-fadein.visible {
    opacity: 1;
    transform: translateY(0);
}

/* UNUSED ELEMENTS FOR UNIQUALIZATION */
.wp-block-group__inner-container {
    display: contents;
}

.wp-site-blocks {
    display: contents;
}

.entry-content {
    display: contents;
}

.post-thumbnail {
    display: none;
}

.wp-post-navigation {
    display: none;
}

.wpcf7-not-valid-tip {
    color: #d63638;
    font-size: 0.8rem;
    display: block;
    margin-top: 4px;
}

.elementor-section {
    display: contents;
}

.elementor-column {
    display: contents;
}

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

.rnd-a9f2 {
    display: none;
}

.rnd-k4m7 {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.rnd-x2p8 {
    font-size: 0;
    line-height: 0;
}

/* FAQ */
.sbw-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sbw-faq-item {
    border-bottom: 1px solid var(--c-border);
    padding: 20px 0;
}

.sbw-faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sbw-faq-item:first-child {
    padding-top: 0;
}

.sbw-faq-q {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.sbw-faq-a p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin: 0;
}

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

    .sbw-burger {
        display: flex;
    }

    .sbw-online-count {
        display: none;
    }

    .sbw-hero-title {
        font-size: 2rem;
    }

    .sbw-hero-content {
        padding: 40px 16px 40px 20px;
    }

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

    .sbw-game-card {
        width: calc(50% - 8px);
    }

    .sbw-games-grid {
        display: none;
    }

    .sbw-games-slider-wrap {
        display: flex;
    }

    .sbw-footer-top {
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .sbw-section {
        padding: 40px 0;
    }

    .sbw-section-title {
        font-size: 1.4rem;
    }

    .sbw-hero {
        min-height: 400px;
    }

    .sbw-hero-slider {
        min-height: 400px;
    }

    .sbw-hero-title {
        font-size: 1.6rem;
    }

    .sbw-hero-content {
        padding: 32px 16px;
    }

    .sbw-hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .sbw-btn-lg {
        width: 100%;
        text-align: center;
    }

    .sbw-jackpots-grid {
        flex-direction: column;
        align-items: center;
    }

    .sbw-jackpot-card {
        max-width: 100%;
        width: 100%;
    }

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

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

    .sbw-review-block {
        padding: 20px 16px;
    }

    .sbw-slot-reels {
        gap: 6px;
    }

    .sbw-reel {
        width: 72px;
        height: 72px;
        font-size: 2rem;
    }

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

    .sbw-widget-text {
        font-size: 0.8rem;
    }

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