:root {
    --clr-bg: #111111;
    --clr-hdr: #030303;
    --clr-primary: #500202;
    --clr-primary-hover: #6e0303;
    --clr-secondary: #030303;
    --clr-secondary-hover: #1a1a1a;
    --clr-text: #e8e8e8;
    --clr-text-muted: #a0a0a0;
    --clr-text-dark: #c5c5c5;
    --clr-gold: #c9a84c;
    --clr-gold-light: #f0d080;
    --clr-card: #1a1a1a;
    --clr-card-border: #2a2a2a;
    --clr-input-bg: #1e1e1e;
    --clr-success: #2e7d32;
    --clr-danger: #c62828;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-main: 'Poppins', sans-serif;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .45);
    --shadow-btn: 0 2px 10px rgba(80, 2, 2, .4);
    --transition: .25s ease;
}

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

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

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

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

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

.ws-main {
    flex: 1;
}

a {
    color: var(--clr-gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--clr-gold-light);
}

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

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

h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    letter-spacing: .02em;
}

.btn--primary {
    background: var(--clr-primary);
    color: #fff;
    box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
    background: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(80, 2, 2, .55);
    color: #fff;
}

.btn--secondary {
    background: var(--clr-secondary);
    color: var(--clr-text);
    border: 1px solid #2a2a2a;
}

.btn--secondary:hover {
    background: var(--clr-secondary-hover);
    color: #fff;
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--clr-gold);
    color: #111;
    font-weight: 700;
}

.btn--gold:hover {
    background: var(--clr-gold-light);
    color: #111;
    transform: translateY(-2px);
}

.btn--sm {
    padding: .45rem 1rem;
    font-size: .82rem;
}

.btn--md {
    padding: .65rem 1.4rem;
    font-size: .95rem;
}

.btn--lg {
    padding: .85rem 2rem;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

.hdr-container {
    padding-top: 0;
    padding-bottom: 0;
}

.hdr-box {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-hdr);
    border-bottom: 1px solid #1e1e1e;
    padding: 0 20px;
}

.hdr-x9k2 {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1rem;
    min-height: 64px;
}

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

.hdr-nav-wrap {
    display: flex;
    align-items: center;
}

.hdr-nav-list {
    display: flex;
    align-items: center;
    gap: .15rem;
    list-style: none;
}

.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: var(--clr-text-muted);
    font-size: .85rem;
    font-weight: 500;
    padding: .5rem .7rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.hdr-nav-link:hover {
    color: var(--clr-text);
    background: rgba(255, 255, 255, .05);
}

.nav-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.hdr-actions-wrap {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.hdr-online-count {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.hdr-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 6px #4caf50;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

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

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

.burger-bar {
    width: 20px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.hdr-burger.active .burger-bar:nth-child(2) {
    opacity: 0;
}

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

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: clamp(320px, 50vw, 580px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .4) 60%, transparent 100%);
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
    max-width: 600px;
}

.hero-eyebrow {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--clr-gold);
    margin-bottom: .6rem;
}

.hero-title {
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: .75rem;
}

.hero-subtitle {
    font-size: clamp(.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, .8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.hero-dot.active {
    background: var(--clr-gold);
    width: 24px;
    border-radius: 4px;
}

.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
    font-size: 1.1rem;
}

.hero-prev {
    left: 16px;
}

.hero-next {
    right: 16px;
}

.hero-prev:hover, .hero-next:hover {
    background: var(--clr-primary);
}

.ws-section {
    padding: 3rem 0;
}

.ws-section--dark {
    background: #0d0d0d;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: .5rem;
}

.section-subtitle {
    color: var(--clr-text-muted);
    font-size: .95rem;
}

.section-line {
    width: 48px;
    height: 3px;
    background: var(--clr-primary);
    border-radius: 2px;
    margin: .75rem auto 0;
}

.ws-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

.ws-card--hover {
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pros-cons-col {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--clr-card-border);
}

.pros-cons-col--pros {
    border-top: 3px solid var(--clr-success);
}

.pros-cons-col--cons {
    border-top: 3px solid var(--clr-danger);
}

.pros-cons-col-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.pros-cons-col-title--pros {
    color: #66bb6a;
}

.pros-cons-col-title--cons {
    color: #ef5350;
}

.pros-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.pros-cons-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .92rem;
    color: var(--clr-text-dark);
    line-height: 1.5;
}

.pros-cons-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: .1rem;
}

.pros-cons-icon--pro {
    color: #66bb6a;
}

.pros-cons-icon--con {
    color: #ef5350;
}

.mirrors-section {
}

.mirrors-datetime {
    text-align: right;
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
}

.mirrors-datetime strong {
    color: var(--clr-gold);
}

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

.mirrors-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    background: var(--clr-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.mirrors-table thead tr {
    background: #1e1e1e;
}

.mirrors-table th {
    text-align: left;
    padding: 14px 16px;
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--clr-text-muted);
    border-bottom: 1px solid var(--clr-card-border);
}

.mirrors-table td {
    padding: 13px 16px;
    font-size: .9rem;
    color: var(--clr-text-dark);
    border-bottom: 1px solid #1e1e1e;
    vertical-align: middle;
}

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

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

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .8rem;
    font-weight: 600;
}

.mirror-status--active {
    color: #66bb6a;
}

.mirror-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.mirror-link {
    color: var(--clr-gold);
    text-decoration: none;
    font-weight: 500;
}

.mirror-link:hover {
    text-decoration: underline;
    color: var(--clr-gold-light);
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.winner-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.winner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .5);
}

.winner-rank {
    font-size: 1.1rem;
    font-weight: 800;
    min-width: 28px;
    color: var(--clr-text-muted);
}

.winner-rank--gold {
    color: #f5c518;
}

.winner-rank--silver {
    color: #c0c0c0;
}

.winner-rank--bronze {
    color: #cd7f32;
}

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

.winner-info {
    flex: 1;
    min-width: 0;
}

.winner-nick {
    font-weight: 600;
    font-size: .9rem;
    color: var(--clr-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.winner-game {
    font-size: .75rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.winner-amount {
    font-weight: 700;
    color: var(--clr-gold);
    font-size: .95rem;
    white-space: nowrap;
}

.video-section {
}

.video-embed-wrap {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: #000;
    aspect-ratio: 16/9;
}

.video-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.bonuses-slider-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.bonus-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.bonus-card--featured::before {
    background: var(--clr-gold);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, .55);
}

.bonus-badge {
    display: inline-block;
    background: var(--clr-primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .6rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .06em;
    width: fit-content;
}

.bonus-badge--gold {
    background: var(--clr-gold);
    color: #111;
}

.bonus-amount {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--clr-gold);
    line-height: 1.1;
}

.bonus-subtitle {
    font-size: .88rem;
    color: var(--clr-text-muted);
}

.bonus-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-top: .25rem;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--clr-text-dark);
}

.bonus-feature-icon {
    color: var(--clr-gold);
    flex-shrink: 0;
}

.bonus-card-footer {
    margin-top: auto;
    padding-top: .75rem;
}

.slot-game-wrap {
    max-width: 480px;
    margin: 0 auto;
}

.slot-machine {
    background: var(--clr-card);
    border: 2px solid #2a2a2a;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 0 40px rgba(80, 2, 2, .2);
}

.slot-machine-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.slot-reel {
    width: 80px;
    height: 80px;
    background: #0d0d0d;
    border: 2px solid #2a2a2a;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition);
}

.slot-reel.spinning {
    animation: reelSpin .12s linear infinite;
    border-color: var(--clr-gold);
}

@keyframes reelSpin {
    0% {
        transform: translateY(0)
    }
    25% {
        transform: translateY(-4px)
    }
    75% {
        transform: translateY(4px)
    }
    100% {
        transform: translateY(0)
    }
}

.slot-result {
    min-height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}

.slot-result-win {
    animation: winPop .5s ease;
}

@keyframes winPop {
    0% {
        transform: scale(.8);
        opacity: 0
    }
    60% {
        transform: scale(1.1)
    }
    100% {
        transform: scale(1);
        opacity: 1
    }
}

.slot-result-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-gold);
}

.slot-result-bonus {
    font-size: .85rem;
    color: var(--clr-text-muted);
}

.slot-spin-btn {
    min-width: 160px;
}

.slot-balance {
    margin-top: 1rem;
    font-size: .82rem;
    color: var(--clr-text-muted);
}

.slot-balance strong {
    color: var(--clr-text);
}

.review-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.author-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #0d0d0d;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border: 1px solid var(--clr-card-border);
}

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

.author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--clr-text);
}

.author-title {
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-top: .1rem;
}

.author-bio {
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-top: .35rem;
    line-height: 1.5;
}

.author-link {
    font-size: .8rem;
    color: var(--clr-gold);
}

.review-content h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--clr-text);
    margin-top: 1.75rem;
    margin-bottom: .65rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--clr-card-border);
}

.review-content h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--clr-text);
    margin-top: 1.25rem;
    margin-bottom: .5rem;
}

.review-content p {
    color: var(--clr-text-dark);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: .9rem;
}

.review-content ul, .review-content ol {
    padding-left: 1.5rem;
    margin-bottom: .9rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.review-content li {
    color: var(--clr-text-dark);
    font-size: .95rem;
    line-height: 1.6;
}

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

.review-content strong {
    color: var(--clr-text);
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.review-content th {
    background: #1e1e1e;
    padding: 10px 14px;
    text-align: left;
    font-size: .85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    border-bottom: 1px solid var(--clr-card-border);
}

.review-content td {
    padding: 10px 14px;
    border-bottom: 1px solid #1e1e1e;
    font-size: .9rem;
    color: var(--clr-text-dark);
}

.review-content tbody tr:hover {
    background: rgba(255, 255, 255, .03);
}

.review-content blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: .75rem 1rem;
    background: #0d0d0d;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1rem 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-width: 860px;
    margin: 0 auto;
}

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

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

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

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

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

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

.faq-answer-inner {
    padding: 0 1.25rem 1.1rem;
    color: var(--clr-text-muted);
    font-size: .9rem;
    line-height: 1.7;
}

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

.ws-footer {
    background: var(--clr-hdr);
    border-top: 1px solid #1e1e1e;
}

.ftr-x7m1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px 2rem;
}

.ftr-top {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1e1e1e;
}

.ftr-logo {
    height: 38px;
    width: auto;
    margin-bottom: .75rem;
}

.ftr-country {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .85rem;
    color: var(--clr-text-muted);
    margin-bottom: .75rem;
}

.ftr-flag {
    width: 22px;
    height: auto;
    border-radius: 2px;
}

.ftr-social {
    display: flex;
    gap: .5rem;
    margin-bottom: .75rem;
}

.ftr-social-link {
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.ftr-social-link:hover {
    color: var(--clr-gold);
}

.ftr-contact {
    font-size: .82rem;
    color: var(--clr-text-muted);
}

.ftr-email {
    color: var(--clr-gold);
    font-size: .82rem;
}

.ftr-col-title {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-text-muted);
    margin-bottom: .75rem;
}

.ftr-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.ftr-nav-link {
    font-size: .85rem;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.ftr-nav-link:hover {
    color: var(--clr-gold);
}

.ftr-trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.ftr-trust-badge {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.ftr-payments-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid #1e1e1e;
}

.ftr-payments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: .5rem;
}

.ftr-pay-badge {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid #222;
}

.ftr-providers-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid #1e1e1e;
}

.ftr-providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .5rem;
}

.ftr-prov-badge {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: var(--radius-sm);
    padding: .35rem .8rem;
    font-size: .78rem;
    color: var(--clr-text-muted);
}

.ftr-legal-section {
    padding-top: 1.5rem;
    text-align: center;
}

.ftr-legal-text {
    font-size: .78rem;
    color: #555;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto .75rem;
}

.ftr-legal-link {
    color: #666;
    text-decoration: underline;
}

.ftr-copyright {
    font-size: .78rem;
    color: #444;
}

.ws-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #030303;
    border-top: 2px solid var(--clr-primary);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
}

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

.ws-widget-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: .85rem 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.ws-widget-text {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.ws-widget-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-text-muted);
}

.ws-widget-bonus {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.ws-widget-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ws-widget-promo {
    font-size: .85rem;
    color: var(--clr-text);
    background: #1a1a1a;
    border: 1px dashed #3a3a3a;
    border-radius: var(--radius-sm);
    padding: .35rem .85rem;
}

.ws-widget-promo strong {
    color: var(--clr-gold);
}

.ws-widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: .25rem;
    transition: color var(--transition);
}

.ws-widget-close:hover {
    color: var(--clr-text);
}

.ws-info-text h1 {
    margin-bottom: 1.5rem;
}

.ws-info-text h2 {
    font-size: 1.3rem;
    color: var(--clr-text);
    margin-top: 1.75rem;
    margin-bottom: .6rem;
    border-bottom: 1px solid var(--clr-card-border);
    padding-bottom: .5rem;
}

.ws-info-text p {
    color: var(--clr-text-dark);
    line-height: 1.75;
    margin-bottom: .85rem;
    font-size: .95rem;
}

.ws-info-text ul, .ws-info-text ol {
    padding-left: 1.5rem;
    margin-bottom: .85rem;
}

.ws-info-text li {
    color: var(--clr-text-dark);
    line-height: 1.65;
    margin-bottom: .3rem;
    font-size: .95rem;
}

.ws-info-text a {
    color: var(--clr-gold);
}

.ws-content--info {
    padding: 2.5rem 0;
}

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

.bonuses-slider-nav {
    display: none;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
}

.bonuses-slider-nav-btn {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #333;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    padding: 0;
}

.bonuses-slider-nav-btn.active {
    background: var(--clr-gold);
}

.wp-content-placeholder {
    display: none;
}

.entry-content {
    display: none;
}

:focus-visible {
    outline: 2px solid var(--clr-gold);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .hdr-x9k2 {
        grid-template-columns: 1fr auto auto;
    }

    .hdr-nav-wrap {
        position: fixed;
        inset: 64px 0 0 0;
        background: var(--clr-hdr);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        overflow-y: auto;
        z-index: 999;
    }

    .hdr-nav-list {
        flex-direction: column;
        width: 100%;
        gap: .25rem;
    }

    .hdr-nav-link {
        font-size: 1rem;
        padding: .75rem 1rem;
        width: 100%;
    }

    .hdr-burger {
        display: flex;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .ftr-top {
        grid-template-columns: 1fr 1fr;
    }

    .bonuses-slider-track {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .bonuses-slider-nav {
        display: flex;
    }
}

@media (max-width: 640px) {
    .hero-slide-content {
        max-width: 100%;
    }

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

    .ftr-top {
        grid-template-columns: 1fr;
    }

    .ws-widget-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: .75rem;
    }

    .ws-widget-actions {
        width: 100%;
    }

    .ws-widget-btn {
        width: 100%;
    }

    .slot-reel {
        width: 68px;
        height: 68px;
        font-size: 1.8rem;
    }

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

.ws-main--info .ws-content--info {
    padding: 2.5rem 0;
}

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

#bonus {
    display: block;
    height: 0;
    visibility: hidden;
}

.slot-reel {
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    user-select: none;
}

.entry-meta, .post-navigation, .wp-block-navigation, .wp-block-site-title, .wp-block-query {
    display: none;
}

.has-global-padding {
    padding: 0;
}

.c1x7a, .b3f92, .z9q4r, .m2k8p, .v5n1j {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 900px) {

    .hdr-x9k2 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 64px;
        padding: 10px 16px;
        position: relative;
    }

    .hdr-logo-wrap {
        flex: 0 0 auto;
    }

    .hdr-logo-img {
        width: 120px;
        height: auto;
        display: block;
    }

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

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

    .hdr-actions-wrap .btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .hdr-burger {
        display: flex;
        width: 42px;
        height: 42px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: #111;
        border: 1px solid #2f2f2f;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .burger-bar {
        width: 20px;
        height: 2px;
        background: #fff;
    }

    .hdr-nav-wrap {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #090909;
        z-index: 99999;
        padding: 20px;
        overflow-y: auto;
        display: block;
        transform: translateX(100%);
        transition: .35s;
    }

    .hdr-nav-wrap.active {
        transform: translateX(0);
    }

    .hdr-nav-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hdr-nav-item {
        width: 100%;
        list-style: none;
    }

    .hdr-nav-link {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px 18px;
        background: #171717;
        border: 1px solid #2b2b2b;
        border-radius: 12px;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
    }

    .hdr-nav-link svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

}

@media (max-width: 600px) {

    .hdr-logo-img {
        width: 100px;
    }

    .hdr-actions-wrap .btn {
        padding: 7px 10px;
        font-size: 12px;
    }

    .hdr-burger {
        width: 38px;
        height: 38px;
    }

    .hdr-nav-wrap {
        top: 60px;
    }

    .hdr-nav-link {
        padding: 14px 16px;
        font-size: 14px;
    }

}

@media (max-width: 900px) {
    .hdr-box {
        position: sticky;
        top: 0;
        z-index: 99999;
        padding: 0;
        background: #030303;
    }

    .hdr-x9k2 {
        display: grid;
        grid-template-columns:auto 1fr auto;
        align-items: center;
        gap: 8px;
        min-height: 64px;
        padding: 8px 12px;
        width: 100%;
        max-width: 100%;
    }

    .hdr-logo-wrap {
        min-width: 0;
    }

    .hdr-logo-link {
        display: flex;
        align-items: center;
        max-width: 100%;
    }

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

    .hdr-actions-wrap {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
        min-width: 0;
    }

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

    .hdr-actions-wrap .btn {
        min-height: 32px;
        padding: 7px 10px;
        font-size: 11px;
        line-height: 1;
        border-radius: 6px;
    }

    .hdr-burger {
        display: flex;
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        border: 1px solid #2a2a2a;
        border-radius: 8px;
        background: #111;
    }

    .burger-bar {
        width: 18px;
        height: 2px;
        background: #e8e8e8;
        border-radius: 2px;
    }

    .hdr-nav-wrap {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99998;
        display: block;
        padding: 14px 12px 22px;
        background: #030303;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .25s ease;
    }

    .hdr-nav-wrap.active {
        transform: translateX(0);
    }

    .hdr-nav-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .hdr-nav-link {
        width: 100%;
        min-height: 44px;
        padding: 11px 13px;
        border-radius: 10px;
        background: #151515;
        border: 1px solid #292929;
        color: #e8e8e8;
        font-size: 14px;
    }

    .nav-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 420px) {
    .hdr-x9k2 {
        padding: 7px 10px;
        gap: 6px;
    }

    .hdr-logo-img {
        max-width: 82px;
        max-height: 34px;
    }

    .hdr-actions-wrap .btn {
        padding: 7px 8px;
        font-size: 10px;
    }

    .hdr-burger {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }
}

@media (max-width: 768px) {

    .winners-grid {
        display: grid;
        grid-template-columns:1fr;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }

    .winner-card {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 14px;
        border-radius: 14px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .winner-rank {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .winner-avatar {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .winner-info {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .winner-nick,
    .winner-game {
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .winner-nick {
        font-size: 15px;
    }

    .winner-game {
        font-size: 12px;
    }

    .winner-amount {
        flex: 0 0 auto;
        margin-left: 10px;
        font-size: 14px;
        font-weight: 700;
        text-align: right;
        white-space: nowrap;
    }

}

@media (max-width: 480px) {

    .winner-card {
        display: grid;
        grid-template-columns:36px 42px 1fr;
        grid-template-areas:
        "rank avatar info"
        "rank avatar amount";
        row-gap: 4px;
        column-gap: 10px;
        padding: 12px;
    }

    .winner-rank {
        grid-area: rank;
    }

    .winner-avatar {
        grid-area: avatar;
    }

    .winner-info {
        grid-area: info;
    }

    .winner-amount {
        grid-area: amount;
        margin: 0;
        text-align: left;
        font-size: 15px;
    }

    .winner-nick {
        font-size: 14px;
    }

    .winner-game {
        font-size: 11px;
    }

}

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

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