:root {
    --c-bg: #000000;
    --c-header: #0a0a35;
    --c-btn-primary: #fbec1f;
    --c-btn-secondary: #016d19;
    --c-text: #e8e8f0;
    --c-text-muted: #9999bb;
    --c-border: #1e1e55;
    --c-card: #0d0d40;
    --c-accent: #fbec1f;
    --c-accent2: #016d19;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .55);
    --transition: .22s ease;
    font-size: 16px
}

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

html {
    scroll-behavior: smooth;
    background: var(--c-bg);
    color: var(--c-text);
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: var(--c-bg);
    color: var(--c-text);
    overflow-x: hidden
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: #fff
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem)
}

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

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem)
}

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

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem
}

li {
    margin-bottom: .35rem;
    line-height: 1.6
}

table {
    border-collapse: collapse;
    width: 100%
}

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

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

.box {
    border-radius: var(--radius)
}

.section-block {
    padding: 56px 0;
    border-radius: var(--radius)
}

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
    text-align: center
}

.section-subtitle {
    text-align: center;
    color: var(--c-text-muted);
    margin-bottom: 2.5rem;
    font-size: .97rem
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .62rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .93rem;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s, filter .15s;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .01em
}

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

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

.btn-primary {
    background: var(--c-btn-primary);
    color: #0a0a35
}

.btn-primary:hover {
    filter: brightness(1.08);
    color: #0a0a35
}

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

.btn-secondary:hover {
    filter: brightness(1.12);
    color: #fff
}

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

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

.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .7)
}

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: .7rem 16px;
    max-width: 1200px;
    margin: 0 auto
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: .6rem
}

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

.header-logo span {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--c-accent);
    letter-spacing: .04em
}

.header-nav {
    display: flex;
    align-items: center;
    gap: .15rem;
    flex-wrap: wrap
}

.header-nav a {
    color: var(--c-text);
    padding: .4rem .75rem;
    border-radius: var(--radius-sm);
    font-size: .88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: background var(--transition), color var(--transition)
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(251, 236, 31, .08);
    color: var(--c-accent)
}

.header-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-wrap: nowrap
}

.header-actions .btn {
    padding: .45rem 1rem;
    font-size: .84rem
}

.online-counter {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--c-text-muted);
    white-space: nowrap
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22dd66;
    box-shadow: 0 0 6px #22dd66;
    flex-shrink: 0;
    animation: pulse-dot 1.6s infinite
}

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

.lang-select {
    position: relative;
    display: inline-block
}

.lang-select select {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    padding: .35rem .6rem;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    cursor: pointer;
    outline: none;
    font-family: inherit
}

.lang-select select:focus {
    border-color: var(--c-accent)
}

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

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 53, .97);
    z-index: 999;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: .5rem;
    overflow-y: auto
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    color: #fff;
    padding: .75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.mobile-menu a:hover {
    background: rgba(251, 236, 31, .1);
    color: var(--c-accent)
}

.mobile-menu .mm-btns {
    display: flex;
    gap: .6rem;
    margin-top: .75rem
}

.mobile-menu .mm-btns .btn {
    flex: 1;
    justify-content: center
}

.mobile-menu-close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1
}

.hero {
    position: relative;
    overflow: hidden;
    background: #000
}

.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 3/1;
    min-height: 220px
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
    display: flex;
    align-items: center;
    background: #0a0a35
}

.hero-slide.active {
    opacity: 1;
    z-index: 1
}

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

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2.5rem 2rem
}

.hero-slide-content h2 {
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    color: #fff;
    margin-bottom: .75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .7)
}

.hero-slide-content p {
    color: rgba(255, 255, 255, .82);
    font-size: clamp(.9rem, 1.8vw, 1.1rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .6)
}

.hero-badge {
    display: inline-block;
    background: var(--c-btn-secondary);
    color: #fff;
    padding: .3rem .8rem;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: background .2s, transform .2s;
    border: none;
    outline: none
}

.hero-dot.active {
    background: var(--c-accent);
    transform: scale(1.25)
}

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

.hero-prev {
    left: 12px
}

.hero-next {
    right: 12px
}

.hero-prev:hover, .hero-next:hover {
    background: var(--c-btn-secondary)
}

.toc-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2.5rem auto
}

.toc-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.2rem
}

.toc-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem 1rem;
    background: rgba(255, 255, 255, .04);
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    font-size: .9rem;
    font-weight: 500;
    transition: background var(--transition), border-color var(--transition), color var(--transition)
}

.toc-item:hover {
    background: rgba(251, 236, 31, .07);
    border-color: var(--c-accent);
    color: var(--c-accent)
}

.toc-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--c-accent2)
}

.advantages-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem
}

.adv-tile {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition)
}

.adv-tile:hover {
    border-color: var(--c-accent2);
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.adv-icon {
    width: 44px;
    height: 44px;
    background: rgba(1, 109, 25, .15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center
}

.adv-icon svg {
    width: 24px;
    height: 24px;
    color: var(--c-accent2)
}

.adv-tile h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff
}

.adv-tile p {
    font-size: .88rem;
    color: var(--c-text-muted);
    line-height: 1.55;
    margin: 0
}

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

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left
}

.data-table th {
    background: var(--c-header);
    color: var(--c-text-muted);
    font-size: .82rem;
    font-weight: 600;
    padding: .85rem 1rem;
    white-space: nowrap;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--c-border)
}

.data-table td {
    padding: .8rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .9rem;
    color: var(--c-text);
    vertical-align: middle;
    white-space: nowrap
}

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

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

.method-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 600
}

.method-logo svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0
}

.badge-green {
    color: #22dd66;
    font-weight: 600
}

.badge-yellow {
    color: var(--c-accent);
    font-weight: 600
}

.badge-link {
    color: var(--c-accent2);
    font-weight: 600;
    text-decoration: none
}

.badge-link:hover {
    color: var(--c-accent)
}

.mirrors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1.2rem
}

.mirror-time {
    font-size: .82rem;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: .4rem
}

.mirror-time svg {
    color: #22dd66;
    width: 14px;
    height: 14px
}

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

.winner-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: .85rem;
    transition: border-color var(--transition)
}

.winner-card:hover {
    border-color: rgba(251, 236, 31, .3)
}

.winner-rank {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
    flex-shrink: 0
}

.rank-gold {
    background: linear-gradient(135deg, #f5b51b, #e08b00);
    color: #fff
}

.rank-silver {
    background: linear-gradient(135deg, #8e8e8e, #5a5a5a);
    color: #fff
}

.rank-bronze {
    background: linear-gradient(135deg, #cd7f32, #7a4520);
    color: #fff
}

.rank-normal {
    background: rgba(255, 255, 255, .08);
    color: var(--c-text-muted)
}

.winner-name {
    font-size: .9rem;
    font-weight: 600;
    color: #fff
}

.winner-game {
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-top: .1rem
}

.winner-amount {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--c-accent)
}

.wheel-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center
}

.wheel-wrap {
    position: relative;
    display: inline-block;
    margin: 1.5rem auto
}

.wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 32px rgba(251, 236, 31, .2)
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 28px solid var(--c-accent);
    filter: drop-shadow(0 2px 6px rgba(251, 236, 31, .5))
}

.wheel-result {
    margin-top: 1.2rem;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem
}

.wheel-result-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-accent)
}

.wheel-spin-btn {
    margin-top: 1rem
}

.review-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    margin: 2.5rem 0
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--c-header);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--c-border)
}

.author-avatar svg {
    width: 36px;
    height: 36px;
    color: var(--c-text-muted)
}

.author-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .2rem
}

.author-info p {
    font-size: .83rem;
    color: var(--c-text-muted);
    margin: 0 0 .35rem
}

.author-links {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: .4rem
}

.author-links a {
    font-size: .78rem;
    color: var(--c-accent2);
    display: flex;
    align-items: center;
    gap: .3rem
}

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

.review-content {
    line-height: 1.8;
    color: var(--c-text)
}

.review-content h1, .review-content h2, .review-content h3, .review-content h4 {
    color: #fff;
    margin: 1.5rem 0 .75rem
}

.review-content h1 {
    font-size: 1.9rem
}

.review-content h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: .5rem
}

.review-content h3 {
    font-size: 1.2rem
}

.review-content p {
    margin-bottom: 1rem
}

.review-content ul, .review-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem
}

.review-content ul li {
    list-style: disc;
    margin-bottom: .4rem
}

.review-content ol li {
    list-style: decimal;
    margin-bottom: .4rem
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, .03)
}

.review-content table th {
    background: var(--c-header);
    color: var(--c-text-muted);
    padding: .7rem 1rem;
    text-align: left;
    font-size: .85rem;
    border: 1px solid var(--c-border)
}

.review-content table td {
    padding: .65rem 1rem;
    border: 1px solid rgba(255, 255, 255, .07);
    font-size: .9rem
}

.review-content a {
    color: var(--c-accent2)
}

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

.review-content strong, .review-content b {
    color: #fff
}

.review-content blockquote {
    border-left: 3px solid var(--c-accent2);
    padding: .75rem 1.25rem;
    background: rgba(1, 109, 25, .08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1rem 0;
    font-style: italic;
    color: var(--c-text-muted)
}

.review-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 1rem 0
}

.review-content hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 1.5rem 0
}

.security-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem
}

.sec-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: border-color var(--transition), transform var(--transition)
}

.sec-card:hover {
    border-color: rgba(34, 221, 102, .25);
    transform: translateY(-3px)
}

.sec-card-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: rgba(34, 221, 102, .1);
    display: flex;
    align-items: center;
    justify-content: center
}

.sec-card-icon svg {
    width: 26px;
    height: 26px;
    color: #22dd66
}

.sec-card h3 {
    font-size: .98rem;
    font-weight: 700;
    color: #fff;
    margin: 0
}

.sec-card p {
    font-size: .86rem;
    color: var(--c-text-muted);
    line-height: 1.55;
    margin: 0
}

.site-footer {
    background: var(--c-header);
    padding: 2.5rem 0 1rem;
    margin-top: auto
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.footer-top {
    display: grid;
    grid-template-columns:1fr 2fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--c-border)
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .75rem
}

.footer-brand .footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain
}

.footer-brand .footer-logo span {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--c-accent)
}

.footer-brand p {
    font-size: .84rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: .75rem
}

.footer-flag {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    color: var(--c-text-muted);
    font-size: .82rem;
    margin-bottom: .75rem
}

.footer-socials {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    color: var(--c-text)
}

.footer-socials a:hover {
    background: rgba(251, 236, 31, .12);
    border-color: var(--c-accent);
    color: var(--c-accent)
}

.footer-socials svg {
    width: 16px;
    height: 16px
}

.footer-nav-cols {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1.5rem
}

.footer-nav-col h4 {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em
}

.footer-nav-col a {
    display: block;
    font-size: .83rem;
    color: var(--c-text-muted);
    margin-bottom: .45rem;
    transition: color var(--transition)
}

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

.footer-middle {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--c-border)
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    margin-bottom: 1rem
}

.footer-logos-row span {
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-right: .25rem;
    white-space: nowrap
}

.f-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: .3rem .65rem;
    font-size: .78rem;
    color: var(--c-text-muted);
    white-space: nowrap
}

.f-logo-badge svg {
    width: 14px;
    height: 14px;
    color: var(--c-accent2)
}

.f-logo-badge.trust-badge {
    border-color: rgba(34, 221, 102, .2)
}

.footer-bottom {
    padding-top: 1.2rem;
    text-align: center
}

.footer-bottom p {
    font-size: .78rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: .5rem
}

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

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

.footer-legal {
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
    max-width: 880px;
    margin: 0 auto;
    line-height: 1.65
}

.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #0a0a35 0%, #0d1a50 100%);
    border-top: 2px solid var(--c-accent);
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .6)
}

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

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

.promo-code-wrap {
    display: flex;
    align-items: center;
    gap: .5rem
}

.promo-code-box {
    background: rgba(0, 0, 0, .4);
    border: 1.5px dashed var(--c-accent);
    border-radius: var(--radius-sm);
    padding: .35rem .9rem;
    font-size: .9rem;
    font-weight: 700;
    color: var(--c-accent);
    letter-spacing: .12em
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: .3rem;
    background: rgba(251, 236, 31, .1);
    border: 1px solid var(--c-accent);
    color: var(--c-accent);
    padding: .35rem .75rem;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition)
}

.copy-btn:hover {
    background: rgba(251, 236, 31, .2)
}

.copy-btn svg {
    width: 14px;
    height: 14px
}

.widget-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
    padding: .2rem;
    margin-left: .5rem;
    flex-shrink: 0
}

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

#faq-block {
    padding: 56px 0
}

.faq-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

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

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    color: #fff;
    gap: 1rem;
    user-select: none;
    transition: background var(--transition)
}

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

.faq-q svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .25s;
    color: var(--c-text-muted)
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg)
}

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

.faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 1.4rem 1.2rem
}

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

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 0
}

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

.fade-in.visible {
    opacity: 1;
    transform: none
}

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

@media (max-width: 900px) {
    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

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

    .footer-nav-cols {
        grid-template-columns:repeat(2, 1fr)
    }

    .hero-slider {
        aspect-ratio: 16/9;
        min-height: 180px
    }
}

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

    .footer-nav-cols {
        grid-template-columns:1fr
    }

    .advantages-grid, .security-grid {
        grid-template-columns:1fr
    }

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

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

    .hero-slide-content {
        padding: 1.5rem 1rem
    }

    .review-block {
        padding: 1.5rem 1rem
    }

    .promo-widget {
        gap: .5rem
    }

    .wheel-canvas {
        width: 260px !important;
        height: 260px !important
    }

    .header-actions .btn {
        padding: .4rem .7rem;
        font-size: .78rem
    }
}

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

.wp-block-placeholder {
    display: none
}

.elementor-hidden {
    display: none
}

.wpcf7-hidden {
    visibility: hidden;
    position: absolute
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }

    body {
        font-size: 16px;
    }

    .wrapper,
    main,
    .content,
    .site-header,
    .hero-section,
    .hero,
    .section-block,
    .site-footer {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
        padding-left: 14px;
        padding-right: 14px;
    }

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

    .site-header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        width: 100%;
        background: var(--c-header);
    }

    body {
        padding-top: 58px;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-width: 0;
        height: 58px;
        gap: 7px;
        padding: 0 10px;
    }

    .header-logo {
        display: flex;
        flex: 1 1 auto;
        min-width: 0;
    }

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

    .header-logo img {
        width: auto;
        height: 31px;
        max-width: 100px;
        object-fit: contain;
    }

    .header-nav,
    .online-counter,
    .lang-select {
        display: none !important;
    }

    .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto;
        gap: 5px;
        margin-left: auto;
    }

    .header-actions .btn-secondary {
        display: none;
    }

    .header-actions .btn-primary {
        min-height: 34px;
        padding: 7px 9px;
        font-size: 0.65rem;
        line-height: 1;
        white-space: nowrap;
    }

    .header-actions .btn-primary svg {
        display: none;
    }

    .burger {
        position: relative;
        z-index: 10003;
        display: flex !important;
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        padding: 7px;
        border: 1px solid rgba(251, 236, 31, 0.2);
        border-radius: 8px;
        background: rgba(251, 236, 31, 0.06);
    }

    .burger span {
        width: 20px;
    }

    .mobile-menu {
        position: fixed !important;
        top: 58px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9999;
        display: flex !important;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: calc(100dvh - 58px);
        max-height: calc(100dvh - 58px);
        gap: 6px;
        padding: 14px 12px 24px;
        overflow-x: hidden;
        overflow-y: auto;
        background: var(--c-header);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.3s ease,
        opacity 0.25s ease,
        visibility 0.3s ease;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .mobile-menu-close {
        position: static;
        display: flex;
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        align-items: center;
        justify-content: center;
        align-self: flex-end;
        margin-bottom: 6px;
        color: #fff;
        font-size: 1.5rem;
        border: 1px solid var(--c-border);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
    }

    .mobile-menu > a {
        display: flex;
        align-items: center;
        width: 100%;
        min-width: 0;
        min-height: 46px;
        gap: 10px;
        padding: 11px 12px;
        color: var(--c-text);
        font-size: 0.87rem;
        line-height: 1.35;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.025);
    }

    .mobile-menu > a svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        color: var(--c-accent);
    }

    .mm-btns {
        display: grid !important;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 8px;
        margin-top: auto !important;
        padding-top: 16px;
    }

    .mm-btns .btn {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-section {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero-slider {
        width: 100%;
        min-height: 430px;
        height: 430px;
        aspect-ratio: auto;
    }

    .hero-slide {
        align-items: flex-end;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 62% center;
        opacity: 0.42;
    }

    .hero-slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
                180deg,
                rgba(10, 10, 53, 0.12) 0%,
                rgba(10, 10, 53, 0.62) 38%,
                rgba(0, 0, 0, 0.96) 100%
        );
    }

    .hero-slide-content {
        width: 100%;
        max-width: 100%;
        padding: 42px 14px 54px;
    }

    .hero-badge {
        max-width: 100%;
        margin-bottom: 11px;
        padding: 5px 10px;
        font-size: 0.63rem;
        line-height: 1.4;
        white-space: normal;
    }

    .hero-slide-content h2 {
        max-width: 100%;
        margin-bottom: 12px;
        font-size: clamp(1.5rem, 7vw, 1.9rem);
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .hero-slide-content h2 br {
        display: none;
    }

    .hero-slide-content p {
        max-width: 100%;
        margin-bottom: 17px;
        font-size: 0.83rem;
        line-height: 1.58;
        overflow-wrap: anywhere;
    }

    .hero-slide-content .btn {
        width: 100%;
        min-width: 0;
        min-height: 43px;
        padding: 10px 12px;
        font-size: 0.77rem;
        white-space: normal;
        text-align: center;
    }

    .hero-prev,
    .hero-next {
        top: auto;
        bottom: 14px;
        width: 34px;
        height: 34px;
        transform: none;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }

    .hero-dots {
        bottom: 25px;
    }

    .toc-block {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 22px 0;
        padding: 18px 13px;
        border-radius: 12px;
    }

    .section-title {
        max-width: 100%;
        margin-bottom: 7px;
        font-size: 1.2rem;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .section-subtitle {
        max-width: 100%;
        margin-bottom: 20px;
        font-size: 0.81rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

    .toc-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 7px;
        margin-top: 14px;
    }

    .toc-item {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        padding: 10px 11px;
        font-size: 0.8rem;
        overflow-wrap: anywhere;
    }

    .section-block {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 32px 0 !important;
        overflow: hidden;
    }

    .section-divider {
        width: 100%;
        margin: 0;
    }

    .advantages-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 11px;
        margin-top: 18px;
    }

    .adv-tile {
        width: 100%;
        min-width: 0;
        padding: 16px 13px;
        gap: 9px;
        border-radius: 11px;
    }

    .adv-tile:hover {
        transform: none;
    }

    .adv-icon {
        width: 40px;
        height: 40px;
    }

    .adv-icon svg {
        width: 22px;
        height: 22px;
    }

    .adv-tile h3 {
        font-size: 0.92rem;
        overflow-wrap: anywhere;
    }

    .adv-tile p {
        font-size: 0.78rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

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

    .data-table {
        width: max-content;
        min-width: 680px;
        max-width: none;
    }

    .data-table th,
    .data-table td {
        min-width: 105px;
        padding: 9px 10px;
        font-size: 0.71rem;
        white-space: nowrap;
    }

    .data-table th:first-child,
    .data-table td:first-child {
        position: sticky;
        left: 0;
        z-index: 2;
        min-width: 145px;
    }

    .data-table th:first-child {
        background: var(--c-header);
    }

    .data-table td:first-child {
        background: var(--c-card);
    }

    .method-logo {
        gap: 7px;
        white-space: nowrap;
    }

    .method-logo svg {
        width: 20px;
        height: 20px;
    }

    .mirrors-header {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
        margin-bottom: 15px;
    }

    .mirrors-header .section-title {
        text-align: left !important;
    }

    .mirrors-header p {
        font-size: 0.78rem !important;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }

    .mirror-time {
        justify-content: flex-start;
        font-size: 0.7rem;
    }

    .winners-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 7px;
        margin-top: 16px;
    }

    .winner-card {
        display: grid;
        grid-template-columns: 30px minmax(0, 1fr) auto;
        width: 100%;
        min-width: 0;
        gap: 8px;
        padding: 9px 10px;
    }

    .winner-rank {
        width: 29px;
        height: 29px;
        font-size: 0.7rem;
    }

    .winner-name {
        min-width: 0;
        font-size: 0.76rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .winner-game {
        min-width: 0;
        font-size: 0.65rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .winner-amount {
        font-size: 0.73rem;
        white-space: nowrap;
    }

    .wheel-block {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 19px 10px;
        overflow: hidden;
        border-radius: 12px;
    }

    .wheel-wrap {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 18px auto;
    }

    .wheel-canvas {
        display: block;
        width: min(76vw, 270px) !important;
        height: min(76vw, 270px) !important;
        margin: 0 auto;
    }

    .wheel-pointer {
        top: -14px;
        border-left-width: 10px;
        border-right-width: 10px;
        border-bottom-width: 23px;
    }

    .wheel-result {
        width: 100%;
        min-height: 48px;
        margin-top: 10px;
        font-size: 0.82rem;
    }

    .wheel-spin-btn {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 8px;
    }

    .wheel-spin-btn .btn {
        width: 100%;
        min-width: 0;
        margin-left: 0 !important;
        justify-content: center;
        white-space: normal;
    }

    .review-block {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 20px 0;
        padding: 17px 12px;
        overflow: hidden;
        border-radius: 11px;
    }

    .author-box {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        width: 100%;
        gap: 10px;
        padding-bottom: 15px;
        margin-bottom: 17px;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
    }

    .author-avatar svg {
        width: 25px;
        height: 25px;
    }

    .author-info {
        min-width: 0;
    }

    .author-info h3 {
        font-size: 0.88rem;
    }

    .author-info p {
        font-size: 0.68rem;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }

    .author-links {
        gap: 5px;
    }

    .author-links a {
        max-width: 100%;
        font-size: 0.65rem;
        overflow-wrap: anywhere;
    }

    .review-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        font-size: 0.8rem;
        line-height: 1.65;
    }

    .review-content h1,
    .review-content h2,
    .review-content h3,
    .review-content h4,
    .review-content p,
    .review-content li,
    .review-content a {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .review-content h1 {
        font-size: 1.28rem;
    }

    .review-content h2 {
        margin-top: 20px;
        font-size: 1.12rem;
    }

    .review-content h3 {
        font-size: 0.96rem;
    }

    .review-content h4 {
        font-size: 0.86rem;
    }

    .review-content ul,
    .review-content ol {
        padding-left: 18px;
    }

    .review-content table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .review-content table th,
    .review-content table td {
        min-width: 115px;
        padding: 8px 9px;
        font-size: 0.7rem;
    }

    .review-content blockquote {
        padding: 10px 11px;
        margin: 14px 0;
    }

    .review-content iframe,
    .review-content video {
        width: 100% !important;
        height: auto;
        min-height: 200px;
    }

    .security-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 11px;
        margin-top: 18px;
    }

    .sec-card {
        width: 100%;
        min-width: 0;
        padding: 16px 13px;
        gap: 9px;
        border-radius: 11px;
    }

    .sec-card:hover {
        transform: none;
    }

    .sec-card-icon {
        width: 40px;
        height: 40px;
    }

    .sec-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .sec-card h3 {
        font-size: 0.9rem;
        overflow-wrap: anywhere;
    }

    .sec-card p {
        font-size: 0.77rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

    #faq-block {
        padding: 32px 0 !important;
    }

    .faq-list {
        width: 100%;
        max-width: 100%;
        gap: 8px;
        margin-top: 16px;
    }

    .faq-item {
        width: 100%;
        min-width: 0;
        border-radius: 10px;
    }

    .faq-q {
        width: 100%;
        min-width: 0;
        align-items: flex-start;
        gap: 9px;
        padding: 13px 11px;
        font-size: 0.81rem;
        line-height: 1.45;
    }

    .faq-q > span {
        min-width: 0;
        flex: 1;
        overflow-wrap: anywhere;
    }

    .faq-q svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        margin-top: 2px;
    }

    .faq-item.open .faq-a {
        padding: 0 11px 13px;
    }

    .faq-a p {
        font-size: 0.76rem;
        line-height: 1.65;
        overflow-wrap: anywhere;
    }

    .site-footer {
        width: 100%;
        padding: 32px 0 90px;
    }

    .footer-inner {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 22px;
        padding-bottom: 22px;
    }

    .footer-brand,
    .footer-nav-cols,
    .footer-nav-col {
        width: 100%;
        min-width: 0;
    }

    .footer-nav-cols {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .footer-brand .footer-logo img {
        max-width: 135px;
        height: auto;
    }

    .footer-brand p,
    .footer-nav-col a,
    .footer-bottom p,
    .footer-legal {
        max-width: 100%;
        font-size: 0.72rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

    .footer-logos-row {
        gap: 6px;
    }

    .footer-logos-row > span {
        width: 100%;
        margin-bottom: 3px;
    }

    .f-logo-badge {
        max-width: 100%;
        padding: 5px 7px;
        font-size: 0.64rem;
        white-space: normal;
    }

    .promo-widget {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        width: 100%;
        gap: 7px 8px;
        padding: 8px 38px 8px 10px;
    }

    .promo-widget-text {
        min-width: 0;
        font-size: 0.69rem;
        line-height: 1.4;
        overflow-wrap: anywhere;
    }

    .promo-code-wrap {
        min-width: 0;
        gap: 5px;
    }

    .promo-code-box {
        min-width: 0;
        padding: 6px 8px;
        font-size: 0.69rem;
        letter-spacing: 0.07em;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .copy-btn {
        flex-shrink: 0;
        padding: 6px 8px;
        font-size: 0.65rem;
    }

    .promo-widget > .btn {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        padding: 8px 10px;
        font-size: 0.68rem;
        white-space: normal;
    }

    .widget-close {
        position: absolute;
        top: 7px;
        right: 7px;
    }
}

@media (max-width: 420px) {
    .container,
    .footer-inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-inner {
        padding-left: 8px;
        padding-right: 8px;
    }

    .header-logo img {
        max-width: 86px;
        height: 27px;
    }

    .header-actions .btn-primary {
        padding: 7px;
        font-size: 0.59rem;
    }

    .hero-slider {
        min-height: 410px;
        height: 410px;
    }

    .hero-slide-content {
        padding-left: 11px;
        padding-right: 11px;
    }

    .hero-slide-content h2 {
        font-size: 1.38rem;
    }

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

    .toc-block,
    .review-block,
    .wheel-block {
        padding-left: 10px;
        padding-right: 10px;
    }

    .data-table {
        min-width: 640px;
    }

    .wheel-canvas {
        width: min(82vw, 250px) !important;
        height: min(82vw, 250px) !important;
    }

    .author-box {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .promo-widget {
        grid-template-columns: 1fr;
    }

    .promo-code-wrap {
        width: 100%;
    }

    .promo-code-box {
        flex: 1;
    }
}