:root {
    --c-bg: #0D131C;
    --c-header: #0D131C;
    --c-btn-login: #19212C;
    --c-btn-reg: #FF3939;
    --c-text: #E8EAF0;
    --c-text-muted: #8A9BB5;
    --c-border: #1E2A3A;
    --c-card: #111827;
    --c-card2: #0F1923;
    --c-accent: #FF3939;
    --c-accent2: #FF6B6B;
    --c-green: #1DB954;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --tr: .25s ease
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: 'Inter', Roboto, Arial, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

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

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

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

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

.wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows:auto 1fr auto
}

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

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 14px 20px;
    max-width: 1220px;
    margin: 0 auto
}

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

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

.header-nav a {
    color: var(--c-text-muted);
    font-size: .85rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color var(--tr), background var(--tr);
    white-space: nowrap
}

.header-nav a:hover, .header-nav a.active {
    color: var(--c-text);
    background: var(--c-border)
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--c-green);
    background: rgba(29, 185, 84, .1);
    border: 1px solid rgba(29, 185, 84, .25);
    border-radius: 20px;
    padding: 4px 12px;
    white-space: nowrap
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

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

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform var(--tr), box-shadow var(--tr), opacity var(--tr);
    white-space: nowrap;
    text-decoration: none
}

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

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

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

.btn--reg {
    background: var(--c-btn-reg);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 57, 57, .35)
}

.btn--reg:hover {
    box-shadow: 0 6px 25px rgba(255, 57, 57, .5)
}

.btn--bonus {
    background: linear-gradient(135deg, #FF3939, #FF6B00);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 57, 57, .35)
}

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

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

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

.btn--outline:hover {
    border-color: var(--c-accent);
    color: var(--c-accent)
}

.btn--green {
    background: var(--c-green);
    color: #fff
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    min-height: 440px
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 440px;
    background: linear-gradient(135deg, #0D131C 0%, #1a2535 50%, #0D131C 100%);
    align-items: center;
    justify-content: flex-start
}

.hero-slide.active {
    display: flex
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: .35
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 60px 40px;
    display: grid;
    gap: 18px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 57, 57, .15);
    border: 1px solid rgba(255, 57, 57, .3);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--c-accent);
    width: fit-content
}

.hero-content h1, .hero-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em
}

.hero-content p {
    color: var(--c-text-muted);
    font-size: 1rem;
    line-height: 1.7
}

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

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

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: background var(--tr), width var(--tr)
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, .5);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background var(--tr)
}

.hero-arrow:hover {
    background: var(--c-accent)
}

.hero-arrow--prev {
    left: 16px
}

.hero-arrow--next {
    right: 16px
}

.section {
    padding: 48px 0
}

.section--sm {
    padding: 32px 0
}

.section-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -.02em
}

.section-sub {
    color: var(--c-text-muted);
    font-size: .95rem;
    margin-bottom: 28px
}

.section-head {
    margin-bottom: 28px
}

.block-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow)
}

.block-card--alt {
    background: var(--c-card2)
}

.block-card--accent {
    background: linear-gradient(135deg, rgba(255, 57, 57, .1), rgba(255, 57, 57, .05));
    border-color: rgba(255, 57, 57, .3)
}

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

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem
}

thead tr {
    background: rgba(255, 57, 57, .1)
}

th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--c-text);
    border-bottom: 2px solid var(--c-border);
    white-space: nowrap
}

td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text-muted)
}

td:first-child {
    color: var(--c-text)
}

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

tr:hover td {
    background: rgba(255, 255, 255, .02)
}

.table-link {
    color: var(--c-accent);
    font-weight: 600
}

.table-link:hover {
    color: var(--c-accent2)
}

.table-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--c-green)
}

.table-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--c-green);
    border-radius: 50%
}

.mirror-time {
    font-size: .82rem;
    color: var(--c-text-muted)
}

.tournaments-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.tourn-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr)
}

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

.tourn-card-top {
    background: linear-gradient(135deg, #1a2535, #0f1923);
    padding: 20px;
    border-bottom: 1px solid var(--c-border)
}

.tourn-card-top h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px
}

.tourn-card-top p {
    font-size: .83rem;
    color: var(--c-text-muted);
    line-height: 1.5
}

.tourn-card-bottom {
    padding: 16px 20px;
    display: grid;
    gap: 12px
}

.tourn-prize {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.tourn-prize-label {
    font-size: .78rem;
    color: var(--c-text-muted)
}

.tourn-prize-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--c-accent)
}

.tourn-timer {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 6px;
    text-align: center
}

.tourn-timer-unit {
    background: var(--c-bg);
    border-radius: 6px;
    padding: 6px 4px
}

.tourn-timer-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--c-text);
    line-height: 1
}

.tourn-timer-label {
    font-size: .65rem;
    color: var(--c-text-muted);
    margin-top: 3px
}

.app-info-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
    align-items: start
}

.app-dl-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--c-btn-login);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 10px 18px;
    font-size: .88rem;
    font-weight: 600;
    transition: background var(--tr), border-color var(--tr)
}

.dl-btn:hover {
    background: #1e2d40;
    border-color: var(--c-accent);
    color: var(--c-text)
}

.dl-btn-icon {
    font-size: 1.3rem
}

.dl-btn-text {
    display: grid;
    line-height: 1.2
}

.dl-btn-text small {
    font-size: .7rem;
    color: var(--c-text-muted);
    font-weight: 400
}

.slot-game {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 24px 0
}

.reel {
    width: 80px;
    height: 90px;
    background: var(--c-bg);
    border: 2px solid var(--c-border);
    border-radius: 10px;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .1s;
    overflow: hidden
}

.reel.spinning {
    animation: reel-spin .12s linear infinite
}

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

.slot-result {
    margin: 16px 0;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.slot-win {
    color: var(--c-green);
    font-size: 1.1rem;
    font-weight: 700;
    animation: fadeIn .4s ease
}

.slot-lose {
    color: var(--c-text-muted);
    font-size: .95rem
}

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

.reviews-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px
}

.review-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px;
    transition: box-shadow var(--tr)
}

.review-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4)
}

.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

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

.review-stars {
    color: #FFD700;
    font-size: .95rem;
    letter-spacing: 1px;
    margin-bottom: 6px
}

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

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

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

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

.form-group {
    display: grid;
    gap: 6px;
    margin-bottom: 16px
}

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

.form-input, .form-textarea {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 11px 14px;
    color: var(--c-text);
    font-size: .9rem;
    font-family: inherit;
    width: 100%;
    transition: border-color var(--tr)
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(255, 57, 57, .1)
}

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

.form-success {
    display: none;
    background: rgba(29, 185, 84, .1);
    border: 1px solid rgba(29, 185, 84, .3);
    border-radius: 8px;
    padding: 14px;
    color: var(--c-green);
    font-weight: 600;
    text-align: center;
    margin-top: 12px
}

.content-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px
}

.content-block h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--c-text)
}

.content-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 18px 0 10px;
    color: var(--c-text)
}

.content-block p {
    color: var(--c-text-muted);
    margin-bottom: 14px;
    line-height: 1.75
}

.content-block ul, .content-block ol {
    margin: 12px 0 14px 20px;
    color: var(--c-text-muted)
}

.content-block li {
    margin-bottom: 8px;
    line-height: 1.6
}

.content-block table {
    width: 100%;
    margin: 16px 0
}

.content-block th {
    background: rgba(255, 57, 57, .08)
}

.content-block a {
    color: var(--c-accent)
}

.content-block strong {
    color: var(--c-text)
}

.content-block blockquote {
    border-left: 3px solid var(--c-accent);
    padding-left: 16px;
    margin: 16px 0;
    color: var(--c-text-muted);
    font-style: italic
}

.site-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 40px 0 20px
}

.footer-inner {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px
}

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

.footer-desc {
    font-size: .83rem;
    color: var(--c-text-muted);
    line-height: 1.65
}

.footer-nav-title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-text-muted);
    margin-bottom: 12px
}

.footer-nav a {
    display: block;
    font-size: .85rem;
    color: var(--c-text-muted);
    padding: 4px 0;
    transition: color var(--tr)
}

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

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

.footer-payments-title, .footer-providers-title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-text-muted);
    margin-bottom: 12px
}

.payment-logos, .provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.payment-logo, .provider-logo {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--c-text-muted)
}

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

.footer-copy {
    font-size: .78rem;
    color: var(--c-text-muted)
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.footer-legal a {
    font-size: .78rem;
    color: var(--c-text-muted)
}

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

.footer-license {
    font-size: .75rem;
    color: var(--c-text-muted);
    margin-top: 16px;
    opacity: .7;
    line-height: 1.5
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #0f1923, #1a2535);
    border-top: 2px solid rgba(255, 57, 57, .4);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    transform: translateY(100%);
    transition: transform .4s ease
}

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

.sticky-widget-text {
    font-size: .9rem;
    color: var(--c-text);
    font-weight: 600
}

.sticky-widget-text span {
    color: var(--c-accent)
}

.sticky-widget-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 4px
}

.promo-block {
    background: linear-gradient(135deg, rgba(255, 57, 57, .12), rgba(255, 57, 57, .06));
    border: 2px solid rgba(255, 57, 57, .35);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center
}

.promo-block h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px
}

.promo-code-box {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--c-bg);
    border: 2px solid var(--c-accent);
    border-radius: 8px;
    overflow: hidden;
    margin: 16px 0
}

.promo-code-val {
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--c-accent);
    letter-spacing: .12em
}

.promo-copy-btn {
    background: var(--c-accent);
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    transition: background var(--tr)
}

.promo-copy-btn:hover {
    background: #cc2d2d
}

.promo-copied {
    display: none;
    color: var(--c-green);
    font-size: .82rem;
    font-weight: 600
}

.bonuses-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform var(--tr), box-shadow var(--tr);
    text-align: center
}

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

.bonus-icon {
    font-size: 2.2rem;
    margin-bottom: 12px
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-accent);
    margin-bottom: 8px
}

.bonus-name {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 8px
}

.bonus-desc {
    font-size: .83rem;
    color: var(--c-text-muted);
    line-height: 1.55
}

.faq-list {
    display: grid;
    gap: 8px
}

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

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    gap: 12px;
    transition: background var(--tr)
}

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

.faq-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    transition: transform var(--tr), background var(--tr)
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding var(--tr)
}

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

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

.alternatives-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px
}

.alt-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    transition: transform var(--tr)
}

.alt-card:hover {
    transform: translateY(-2px)
}

.alt-card-name {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 6px
}

.alt-card-bonus {
    font-size: .8rem;
    color: var(--c-accent);
    font-weight: 600
}

.video-block {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--c-card);
    border: 1px solid var(--c-border)
}

.video-block iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block
}

.author-block {
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 20px;
    align-items: start;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-border)
}

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

.author-role {
    font-size: .82rem;
    color: var(--c-accent);
    font-weight: 600;
    margin-bottom: 10px
}

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

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

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--c-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .78rem;
    color: var(--c-text-muted);
    transition: background var(--tr), color var(--tr)
}

.author-link:hover {
    background: var(--c-accent);
    color: #fff
}

.casino-info-table th {
    width: 40%
}

.mirror-not-work {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center
}

.mirror-not-work h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px
}

.mirror-not-work p {
    color: var(--c-text-muted);
    font-size: .9rem;
    margin-bottom: 20px
}

.mirror-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center
}

.benefits-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px
}

.benefit-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px
}

.benefit-title {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 5px
}

.benefit-text {
    font-size: .82rem;
    color: var(--c-text-muted);
    line-height: 1.55
}

.demo-game {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    padding: 40px 20px
}

.demo-game-placeholder {
    font-size: 3rem;
    margin-bottom: 12px
}

.providers-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 12px
}

.provider-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    transition: border-color var(--tr)
}

.provider-card:hover {
    border-color: var(--c-accent)
}

.provider-card span {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 6px
}

.slots-features {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 16px
}

.slot-feature {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.grid-2 {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

.gap-8 {
    display: grid;
    gap: 8px
}

.gap-12 {
    display: grid;
    gap: 12px
}

.gap-16 {
    display: grid;
    gap: 16px
}

.gap-24 {
    display: grid;
    gap: 24px
}

.gap-32 {
    display: grid;
    gap: 32px
}

.mt-8 {
    margin-top: 8px
}

.mt-12 {
    margin-top: 12px
}

.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.mb-8 {
    margin-bottom: 8px
}

.mb-16 {
    margin-bottom: 16px
}

.mb-24 {
    margin-bottom: 24px
}

.text-center {
    text-align: center
}

.text-muted {
    color: var(--c-text-muted)
}

.text-accent {
    color: var(--c-accent)
}

.text-green {
    color: var(--c-green)
}

.fw-bold {
    font-weight: 700
}

.fw-800 {
    font-weight: 800
}

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

.badge--green {
    background: rgba(29, 185, 84, .15);
    color: var(--c-green)
}

.badge--red {
    background: rgba(255, 57, 57, .15);
    color: var(--c-accent)
}

.badge--blue {
    background: rgba(41, 98, 255, .15);
    color: #5b9eff
}

.d-none-mob {
    display: block
}

.d-only-mob {
    display: none
}

.x7f3k2 {
    display: none
}

.m9p1q4 {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.wp-caption {
    text-align: center
}

.wp-caption-text {
    font-size: .8em
}

.widget {
    margin-bottom: 1.5em
}

.widget-title {
    font-size: 1.1rem
}

@media (max-width: 1024px) {
    .tournaments-grid {
        grid-template-columns:1fr 1fr
    }

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

    .benefits-grid {
        grid-template-columns:1fr 1fr
    }

    .footer-inner {
        grid-template-columns:1fr 1fr
    }

    .providers-grid {
        grid-template-columns:repeat(3, 1fr)
    }

    .app-info-grid {
        grid-template-columns:1fr
    }

    .slots-features {
        grid-template-columns:1fr
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns:auto auto auto
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--c-header);
        padding: 24px 20px;
        flex-direction: column;
        gap: 4px;
        overflow-y: auto;
        z-index: 999
    }

    .header-nav.open {
        display: flex
    }

    .burger {
        display: flex
    }

    .d-none-mob {
        display: none
    }

    .d-only-mob {
        display: block
    }

    .hero-content {
        padding: 40px 20px
    }

    .hero-content h1, .hero-content h2 {
        font-size: 1.6rem
    }

    .hero-slide {
        min-height: 360px
    }

    .tournaments-grid {
        grid-template-columns:1fr;
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
        gap: 16px
    }

    .tournaments-grid .tourn-card {
        min-width: 280px;
        scroll-snap-align: start
    }

    .bonuses-grid {
        grid-template-columns:1fr;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px
    }

    .bonuses-grid .bonus-card {
        min-width: 240px;
        scroll-snap-align: start
    }

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

    .grid-2 {
        grid-template-columns:1fr
    }

    .footer-inner {
        grid-template-columns:1fr
    }

    .benefits-grid {
        grid-template-columns:1fr
    }

    .alternatives-grid {
        grid-template-columns:1fr 1fr
    }

    .providers-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .slots-features {
        grid-template-columns:1fr
    }

    .author-block {
        grid-template-columns:1fr
    }

    .sticky-widget {
        flex-direction: column;
        gap: 10px;
        padding: 14px 20px;
        text-align: center
    }

    .sticky-widget-close {
        top: 10px;
        right: 12px;
        transform: none
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }

    .header-cta {
        gap: 6px
    }

    .btn--login, .btn--reg {
        padding: 8px 12px;
        font-size: .78rem
    }

    .online-count {
        display: none
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 10px 16px
    }

    .hero-content {
        padding: 30px 16px
    }

    .container {
        padding: 0 16px
    }

    .block-card {
        padding: 18px
    }

    .tournaments-grid .tourn-card {
        min-width: 260px
    }

    .alternatives-grid {
        grid-template-columns:1fr
    }

    .promo-code-val {
        font-size: .95rem;
        padding: 10px 14px
    }
}

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 15px;
    }

    .wrapper,
    main,
    .container {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-inner {
        display: grid;
        grid-template-columns:auto 1fr auto;
        gap: 10px;
        padding: 10px 14px;
    }

    .header-logo img {
        height: 34px;
    }

    .header-nav {
        display: none;
    }

    .header-nav.open {
        display: flex;
        position: fixed;
        top: 55px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 18px 14px;
        background: var(--c-header);
        overflow-y: auto;
    }

    .header-nav.open a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 14px;
        border-radius: 12px;
        background: var(--c-card);
        border: 1px solid var(--c-border);
        color: var(--c-text);
        font-size: .95rem;
    }

    .header-cta {
        justify-content: center;
        gap: 6px;
    }


    .online-count {
        display: none;
    }

    .burger {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border-radius: 10px;
        background: var(--c-card);
        border: 1px solid var(--c-border);
    }

    .burger span {
        width: 18px;
    }

    .btn,
    .btn--lg,
    .btn--sm,
    .btn--login,
    .btn--reg,
    .btn--bonus,
    .btn--outline,
    .btn--green {
        width: 100%;
        min-height: 44px;
        padding: 11px 14px;
        white-space: normal;
        text-align: center;
    }

    .section {
        padding: 28px 0;
    }

    .section--sm {
        padding: 22px 0;
    }

    .section-head {
        margin-bottom: 18px;
    }

    .section-title {
        font-size: 1.28rem;
        line-height: 1.25;
    }

    .section-sub {
        font-size: .9rem;
        margin-bottom: 18px;
    }

    .hero-slider {
        min-height: auto;
    }

    .hero-slide {
        min-height: 380px;
        align-items: center;
        text-align: center;
    }

    .hero-slide-bg {
        opacity: .22;
    }

    .hero-slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(13, 19, 28, .78);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 100%;
        padding: 42px 16px 72px;
        justify-items: center;
        gap: 14px;
    }

    .hero-badge {
        font-size: .72rem;
        margin: 0 auto;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 1.55rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: .9rem;
        line-height: 1.6;
    }

    .hero-cta {
        width: 100%;
        display: grid;
        grid-template-columns:1fr;
        gap: 10px;
    }

    .hero-arrow {
        width: 34px;
        height: 34px;
        font-size: .9rem;
    }

    .hero-arrow--prev {
        left: 8px;
    }

    .hero-arrow--next {
        right: 8px;
    }

    .hero-dots {
        bottom: 14px;
    }

    .block-card,
    .content-block,
    .promo-block,
    .slot-game,
    .form-wrap,
    .mirror-not-work,
    .author-block,
    .video-block,
    .demo-game,
    .faq-item,
    .bonus-card,
    .tourn-card,
    .review-card,
    .benefit-card,
    .alt-card,
    .provider-card {
        border-radius: 14px;
    }

    .block-card,
    .content-block,
    .promo-block,
    .slot-game,
    .form-wrap,
    .mirror-not-work,
    .author-block,
    .demo-game {
        padding: 18px 14px;
    }

    .tournaments-grid,
    .bonuses-grid,
    .reviews-grid,
    .app-info-grid,
    .benefits-grid,
    .alternatives-grid,
    .providers-grid,
    .slots-features,
    .grid-2 {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 14px !important;
        overflow: visible !important;
    }

    .tournaments-grid .tourn-card,
    .bonuses-grid .bonus-card {
        min-width: 0 !important;
        width: 100% !important;
        scroll-snap-align: unset;
    }

    .tourn-card-top,
    .tourn-card-bottom {
        padding: 16px 14px;
    }

    .tourn-timer {
        grid-template-columns:repeat(4, 1fr);
        gap: 5px;
    }

    .tourn-timer-val {
        font-size: .95rem;
    }

    .bonus-card {
        width: 100%;
        padding: 18px 14px;
    }

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

    .bonus-amount {
        font-size: 1.28rem;
        line-height: 1.2;
    }

    .bonus-name {
        font-size: .92rem;
    }

    .bonus-desc {
        font-size: .82rem;
    }

    .review-card {
        padding: 18px 14px;
    }

    .review-text {
        font-size: .84rem;
    }

    .benefit-card,
    .slot-feature {
        padding: 16px 14px;
    }

    .providers-grid {
        grid-template-columns:1fr 1fr !important;
    }

    .table-wrap {
        overflow: visible;
    }

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
        width: 100%;
    }

    thead {
        display: none;
    }

    table {
        border: 0;
        background: transparent;
    }

    tr {
        margin-bottom: 12px;
        border: 1px solid var(--c-border);
        border-radius: 12px;
        overflow: hidden;
        background: var(--c-card);
    }

    td {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 11px 12px;
        border: 0;
        border-bottom: 1px solid var(--c-border);
        text-align: right;
        font-size: .84rem;
    }

    td:last-child {
        border-bottom: 0;
    }

    td:first-child {
        width: 100%;
    }

    td::before {
        content: attr(data-label);
        color: var(--c-accent);
        font-weight: 700;
        text-align: left;
        flex-shrink: 0;
        max-width: 120px;
    }

    .content-block h1 {
        font-size: 1.45rem;
        line-height: 1.22;
    }

    .content-block h2 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin: 22px 0 10px;
    }

    .content-block h3 {
        font-size: 1.05rem;
    }

    .content-block p,
    .content-block li {
        font-size: .9rem;
        line-height: 1.7;
    }

    .content-block ul,
    .content-block ol {
        margin-left: 16px;
    }

    .promo-code-box {
        width: 100%;
        display: grid;
        grid-template-columns:1fr;
    }

    .promo-code-val {
        font-size: 1rem;
        padding: 12px;
        word-break: break-word;
    }

    .promo-copy-btn {
        width: 100%;
    }

    .slot-reels {
        gap: 8px;
    }

    .reel {
        width: 62px;
        height: 70px;
        font-size: 1.7rem;
    }

    .form-input,
    .form-textarea {
        font-size: 16px;
    }

    .faq-q {
        padding: 14px;
        font-size: .9rem;
        line-height: 1.35;
    }

    .faq-a-inner {
        padding: 0 14px 14px;
        font-size: .86rem;
    }

    .author-block {
        grid-template-columns:1fr;
        text-align: center;
    }

    .author-photo {
        margin: 0 auto;
    }

    .author-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mirror-actions {
        display: grid;
        grid-template-columns:1fr;
    }

    .app-dl-btns {
        display: grid;
        grid-template-columns:1fr;
        gap: 10px;
    }

    .dl-btn {
        justify-content: center;
        width: 100%;
        min-height: 50px;
    }

    .site-footer {
        padding: 30px 0 18px;
    }

    .footer-inner {
        grid-template-columns:1fr;
        gap: 22px;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 12px;
    }

    .footer-nav a {
        padding: 6px 0;
    }

    .payment-logos,
    .provider-logos,
    .footer-legal {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sticky-widget {
        flex-direction: column;
        gap: 8px;
        padding: 12px 42px 12px 12px;
        text-align: center;
    }

    .sticky-widget-text {
        font-size: .82rem;
    }

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

    iframe,
    video,
    canvas {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-inner {
        padding: 9px 12px;
    }

    .hero-slide {
        min-height: 340px;
    }

    .hero-content {
        padding: 34px 14px 68px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 1.35rem;
    }

    .section-title {
        font-size: 1.15rem;
    }

    .block-card,
    .content-block,
    .promo-block,
    .slot-game,
    .form-wrap,
    .mirror-not-work,
    .author-block,
    .demo-game {
        padding: 16px 12px;
    }

    .providers-grid {
        grid-template-columns:1fr !important;
    }

    .reel {
        width: 54px;
        height: 62px;
        font-size: 1.45rem;
    }
}

@media (max-width: 768px) {

    .table-wrap {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        border-radius: 14px;
    }

    .table-wrap table {
        display: table !important;
        width: max-content !important;
        min-width: 850px !important;
        border-collapse: collapse !important;
    }

    .table-wrap thead {
        display: table-header-group !important;
    }

    .table-wrap tbody {
        display: table-row-group !important;
    }

    .table-wrap tr {
        display: table-row !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    .table-wrap th,
    .table-wrap td {
        display: table-cell !important;
        width: auto !important;
        text-align: left !important;
        white-space: nowrap !important;
        vertical-align: middle !important;
    }

    .table-wrap th {
        padding: 18px 22px !important;
        background: #2a2133 !important;
        color: #fff !important;
        font-size: .9rem !important;
        font-weight: 800 !important;
    }

    .table-wrap td {
        padding: 18px 22px !important;
        background: #0f1724 !important;
        color: #e8edf5 !important;
        font-size: .9rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
    }

    .table-wrap td::before {
        display: none !important;
        content: none !important;
    }

    .table-link {
        min-width: 110px;
        min-height: 42px;
    }

    .table-wrap::-webkit-scrollbar {
        height: 6px;
    }

    .table-wrap::-webkit-scrollbar-track {
        background: #111827;
    }

    .table-wrap::-webkit-scrollbar-thumb {
        background: #ff3939;
        border-radius: 999px;
    }
}

@media (max-width: 768px) {

    .block-card,
    .app-info-grid,
    .content-block {
        overflow: visible !important;
    }

    .table-wrap {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, .08);
    }

    .table-wrap table {
        display: table !important;
        width: 850px !important;
        min-width: 850px !important;
        max-width: none !important;
        border-collapse: collapse !important;
    }

    .table-wrap thead {
        display: table-header-group !important;
    }

    .table-wrap tbody {
        display: table-row-group !important;
    }

    .table-wrap tr {
        display: table-row !important;
        background: transparent !important;
        border: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .table-wrap th,
    .table-wrap td {
        display: table-cell !important;
        width: auto !important;
        min-width: 160px !important;
        padding: 16px 18px !important;
        white-space: nowrap !important;
        text-align: left !important;
        vertical-align: middle !important;
    }

    .table-wrap td::before {
        display: none !important;
        content: none !important;
    }

    .table-wrap::-webkit-scrollbar {
        height: 6px;
    }

    .table-wrap::-webkit-scrollbar-thumb {
        background: #ff3939;
        border-radius: 999px;
    }

    .table-wrap::-webkit-scrollbar-track {
        background: #111827;
    }
}

@media (max-width: 768px) {

    .app-info-grid {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 16px !important;
    }

    .app-info-grid > div {
        min-width: 0;
        width: 100%;
    }

    .block-card {
        padding: 16px;
        overflow: visible;
    }

    .table-wrap {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-wrap table {
        width: 100%;
        min-width: 500px;
    }

    .app-dl-btns {
        display: grid;
        grid-template-columns:1fr;
        gap: 10px;
    }

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