:root {
    --bg: #171721;
    --bg2: #1e1e2e;
    --bg3: #252535;
    --accent: #66BB3B;
    --dark: #171721;
    --text: #e8e8f0;
    --text2: #a0a0b8;
    --border: #2e2e42;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .4)
}

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

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

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

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

a:hover {
    color: #88dd55
}

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

.xk7f2 {
    display: none
}

.b9q1m {
    visibility: hidden;
    position: absolute
}

.r3w8p {
    opacity: 0;
    pointer-events: none;
    height: 0
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s, background .2s;
    text-decoration: none;
    white-space: nowrap
}

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

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

.btn--login {
    background: var(--dark);
    color: #fff;
    border: 1px solid var(--border)
}

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

.btn--signup {
    background: var(--accent);
    color: #fff
}

.btn--signup:hover {
    background: #55a82e;
    color: #fff
}

.btn--hero {
    background: var(--accent);
    color: #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(102, 187, 59, .35)
}

.btn--hero:hover {
    background: #55a82e;
    color: #fff
}

.btn--bonus {
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 8px
}

.btn--bonus:hover {
    background: #55a82e;
    color: #fff
}

.btn--slot {
    background: var(--accent);
    color: #fff;
    padding: 13px 36px;
    font-size: 1rem;
    border-radius: 8px;
    margin-top: 12px
}

.btn--get {
    background: var(--accent);
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    flex-wrap: wrap
}

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

.header-logo img,
.footer-logo img {
    filter: brightness(0) invert(1);
}

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

.header-nav a {
    color: var(--text2);
    font-size: .88rem;
    padding: 7px 13px;
    border-radius: 6px;
    transition: color .2s, background .2s
}

.header-nav a:hover {
    color: #fff;
    background: var(--bg3)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--text2);
    margin-right: 6px
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.5s infinite
}

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

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

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

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

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

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

@media (max-width: 900px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(23, 23, 33, .98);
        z-index: 200;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px
    }

    .header-nav.open {
        display: flex
    }

    .header-nav a {
        font-size: 1.1rem;
        padding: 12px 24px
    }

    .burger {
        display: flex;
        z-index: 210
    }

    .header-actions {
        gap: 8px
    }

    .btn--login, .btn--signup {
        padding: 8px 14px;
        font-size: .82rem
    }
}

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0e0e18
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/ra-banner.png');
    background-size: cover;
    background-position: center;
    opacity: .45
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(23, 23, 33, .9) 40%, rgba(102, 187, 59, .08) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px
}

.hero-content h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 700px
}

.hero-content h1 span {
    color: var(--accent)
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text2);
    max-width: 560px;
    margin-bottom: 32px
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px
}

.hero-badge {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .82rem;
    color: var(--text2)
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.6rem
    }

    .hero {
        min-height: 380px
    }
}

.section {
    padding: 60px 0
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px
}

.section-subtitle {
    color: var(--text2);
    font-size: .95rem;
    margin-bottom: 32px
}

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

.card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s
}

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

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

.jackpot-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    flex: 1 1 200px;
    min-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #88dd55)
}

.jackpot-label {
    font-size: .8rem;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px
}

.jackpot-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--accent);
    font-variant-numeric: tabular-nums
}

.jackpot-currency {
    font-size: .85rem;
    color: var(--text2);
    margin-top: 4px
}

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

.jackpot-amount.animate {
    animation: countUp .5s ease-out
}

.mirrors-block {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px
}

.mirrors-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.mirrors-date {
    font-size: .85rem;
    color: var(--text2)
}

.mirrors-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(102, 187, 59, .12);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(102, 187, 59, .3)
}

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

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px
}

th {
    background: var(--bg3);
    color: var(--text2);
    font-size: .82rem;
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: .04em
}

td {
    padding: 11px 14px;
    border: 1px solid var(--border);
    font-size: .9rem;
    vertical-align: middle
}

tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02)
}

tr:hover td {
    background: rgba(102, 187, 59, .04)
}

.status-ok {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #4cdd7c;
    font-size: .82rem;
    font-weight: 600
}

.status-ok::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4cdd7c
}

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

.mirror-link:hover {
    text-decoration: underline
}

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

.tournament-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden
}

.tournament-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #66BB3B, #4cdd7c)
}

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

.t-badge {
    display: inline-block;
    background: rgba(102, 187, 59, .15);
    color: var(--accent);
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 4px
}

.t-name {
    font-size: 1.1rem;
    font-weight: 700
}

.t-desc {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.5
}

.t-prize-label {
    font-size: .78rem;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: .05em
}

.t-prize {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent)
}

.t-timer {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 4px
}

.t-timer-unit {
    background: var(--bg3);
    border-radius: 6px;
    padding: 6px 10px;
    text-align: center;
    min-width: 48px
}

.t-timer-num {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    color: #fff
}

.t-timer-label {
    font-size: .65rem;
    color: var(--text2);
    text-transform: uppercase
}

.t-sep {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text2)
}

.t-cta {
    margin-top: auto
}

@media (max-width: 860px) {
    .tournaments-grid {
        grid-template-columns:1fr;
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px
    }

    .tournament-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0
    }
}

.slot-block {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center
}

.slot-machine {
    display: inline-flex;
    gap: 0;
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin: 24px auto;
    background: var(--bg3)
}

.reel {
    width: 90px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-right: 1px solid var(--border);
    background: var(--bg);
    transition: filter .15s;
    position: relative;
    overflow: hidden
}

.reel:last-child {
    border-right: none
}

.reel.spinning {
    animation: spin .08s linear infinite
}

@keyframes spin {
    0% {
        filter: blur(0)
    }
    50% {
        filter: blur(3px)
    }
    100% {
        filter: blur(0)
    }
}

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

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

.slot-lose {
    color: var(--text2);
    font-size: 1rem
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    gap: 12px;
    user-select: none;
    transition: background .2s
}

.faq-question:hover {
    background: var(--bg3)
}

.faq-question h3 {
    font-size: .97rem;
    font-weight: 600;
    margin: 0
}

.faq-icon {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform .25s
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

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

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

.faq-answer p {
    padding: 0 22px 18px;
    color: var(--text2);
    font-size: .9rem;
    line-height: 1.7
}

.site-footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    margin-top: auto
}

.footer-top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.footer-col {
    flex: 1 1 180px
}

.footer-col h4 {
    color: var(--text2);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 14px
}

.footer-col a {
    display: block;
    color: var(--text2);
    font-size: .88rem;
    margin-bottom: 8px;
    transition: color .2s
}

.footer-col a:hover {
    color: #fff
}

.footer-logo {
    margin-bottom: 12px
}

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

.footer-desc {
    font-size: .82rem;
    color: var(--text2);
    line-height: 1.6;
    max-width: 220px
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px
}

.payment-badge, .provider-badge {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text2)
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center
}

.footer-copy {
    font-size: .8rem;
    color: var(--text2)
}

.footer-legal {
    font-size: .74rem;
    color: #666;
    max-width: 720px;
    line-height: 1.6
}

.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: linear-gradient(90deg, var(--bg) 0%, var(--bg2) 100%);
    border-top: 2px solid var(--accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    flex-wrap: wrap
}

.widget-text {
    font-size: .88rem;
    color: var(--text)
}

.widget-text strong {
    color: var(--accent)
}

.widget-close {
    background: none;
    border: none;
    color: var(--text2);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color .2s
}

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

.bottom-widget a {
    text-decoration: none
}

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

.content-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 20px 0 8px;
    color: #e0e0f0
}

.content-body p {
    margin-bottom: 14px;
    font-size: .95rem;
    color: var(--text2);
    line-height: 1.7
}

.content-body ul, .content-body ol {
    margin: 0 0 14px 20px;
    color: var(--text2);
    font-size: .95rem;
    line-height: 1.7
}

.content-body li {
    margin-bottom: 6px
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: .9rem
}

.content-body th {
    background: var(--bg3);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--border)
}

.content-body td {
    padding: 10px 14px;
    border: 1px solid var(--border)
}

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

.content-body strong {
    color: #fff
}

.content-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 10px 16px;
    margin: 14px 0;
    background: var(--bg3);
    border-radius: 0 6px 6px 0;
    color: var(--text2);
    font-style: italic
}

.separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0
}

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

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

.qn3x7 {
    display: block;
    width: 0;
    height: 0;
    overflow: hidden
}

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

.entry-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px
}

.entry-meta span {
    font-size: .8rem;
    color: var(--text2)
}

.entry-meta .author-name {
    color: var(--accent);
    font-weight: 600
}

.author-box {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 32px
}

.author-box img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--accent)
}

.author-info h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 4px
}

.author-info p {
    font-size: .83rem;
    color: var(--text2);
    line-height: 1.6
}

@media (max-width: 700px) {
    .jackpots-grid {
        gap: 10px
    }

    .jackpot-card {
        min-width: 140px;
        padding: 16px
    }

    .jackpot-amount {
        font-size: 1.3rem
    }

    .footer-top {
        gap: 24px
    }

    .bottom-widget {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .hero-content h1 {
        font-size: 1.4rem
    }

    .section {
        padding: 40px 0
    }
}
