:root {
    --c-bg: #030535;
    --c-header: #141F61;
    --c-btn-primary: #141D5F;
    --c-btn-green: #449E66;
    --c-btn-green-h: #37885a;
    --c-text: #e8eaf6;
    --c-text-muted: #9fa8da;
    --c-border: #1e2d8a;
    --c-card: #0d1660;
    --c-card2: #0a1050;
    --c-gold: #f0c040;
    --c-white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --trans: 0.22s ease
}

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

html {
    scroll-behavior: smooth;
    background: var(--c-bg)
}

body {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden
}

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

a:hover {
    color: var(--c-btn-green)
}

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

ul {
    list-style: none
}

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

.fx-b9k1 {
    display: flex;
    align-items: center
}

.fx-col-r3n {
    display: flex;
    flex-direction: column
}

.gap-e5m {
    gap: 16px
}

.gap-l2w {
    gap: 24px
}

.gap-b8p {
    gap: 32px
}

.sec-pd {
    padding: 72px 0
}

.sec-pd-sm {
    padding: 48px 0
}

.sec-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 8px;
    text-align: center
}

.sec-sub {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    text-align: center;
    margin-bottom: 40px
}

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

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

.btn-primary {
    background: var(--c-btn-primary);
    color: var(--c-white)
}

.btn-primary:hover {
    background: #1a2480;
    color: var(--c-white)
}

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

.btn-green:hover {
    background: var(--c-btn-green-h);
    color: var(--c-white)
}

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

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

.btn-outline:hover {
    background: var(--c-white);
    color: var(--c-bg)
}

/* ===== HEADER ===== */
.hdr-x9f2 {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--c-header);
    box-shadow: 0 2px 16px rgba(3, 5, 53, .6)
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px
}

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

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

.hdr-nav a {
    color: var(--c-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 6px;
    transition: background var(--trans), color var(--trans)
}

.hdr-nav a:hover {
    background: rgba(255, 255, 255, .08);
    color: var(--c-white)
}

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

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

.hdr-online span.dot-g4r {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    display: inline-block;
    animation: pls-a1b 1.4s infinite
}

@keyframes pls-a1b {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

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

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

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

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

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

.mob-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--c-header);
    z-index: 800;
    padding: 20px 16px;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--c-border);
    animation: slide-d5q .2s ease
}

@keyframes slide-d5q {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.mob-menu.open {
    display: flex
}

.mob-menu a {
    color: var(--c-text);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.95rem
}

.mob-menu a:hover {
    background: rgba(255, 255, 255, .07)
}

/* =====  ===== */
.hero-s8w {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/olimp-banner.jpg') center/cover no-repeat;
    z-index: 0
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 5, 53, .92) 0%, rgba(3, 5, 53, .55) 60%, transparent 100%)
}

.hero-cnt {
    position: relative;
    z-index: 1;
    max-width: 600px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(68, 158, 102, .18);
    border: 1px solid var(--c-btn-green);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 0.8rem;
    color: var(--c-btn-green);
    font-weight: 600;
    margin-bottom: 18px;
    animation: fdi-r2t .5s ease
}

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

.hero-h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--c-white);
    margin-bottom: 16px;
    animation: fdi-r2t .6s .1s ease both
}

.hero-h1 em {
    font-style: normal;
    color: var(--c-gold)
}

.hero-desc {
    font-size: 1rem;
    color: #c5cae9;
    line-height: 1.7;
    margin-bottom: 28px;
    animation: fdi-r2t .6s .2s ease both
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fdi-r2t .6s .3s ease both
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    animation: fdi-r2t .6s .4s ease both
}

.hstat {
    text-align: center
}

.hstat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-gold)
}

.hstat span {
    font-size: 0.78rem;
    color: var(--c-text-muted)
}

/* ===== ADVANTAGES ===== */
.adv-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.adv-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: transform var(--trans), box-shadow var(--trans);
    display: flex;
    flex-direction: column;
    gap: 12px
}

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

.adv-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--c-btn-primary), #2a3fa0);
    display: flex;
    align-items: center;
    justify-content: center
}

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

.adv-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-white)
}

.adv-desc {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.6
}

/* ===== SCREENSHOTS ===== */
.screens-wr {
    position: relative
}

.sl-track-w8e {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px
}

.sl-track-w8e::-webkit-scrollbar {
    display: none
}

.screen-card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
    transition: transform var(--trans)
}

.screen-card:hover {
    transform: scale(1.02)
}

.screen-card img {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.sl-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px
}

.sl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: background var(--trans)
}

.sl-dot.act-q3p {
    background: var(--c-btn-green)
}

/* ===== TOURNAMENTS ===== */
.tourn-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px
}

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

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

.tourn-head {
    background: linear-gradient(135deg, #0d1e7a, #1a2fa0);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px
}

.tourn-trophy {
    font-size: 2rem;
    line-height: 1
}

.tourn-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-white)
}

.tourn-body {
    padding: 20px
}

.tourn-desc {
    font-size: 0.87rem;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    line-height: 1.6
}

.tourn-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.tourn-prize {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-gold)
}

.tourn-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--c-text-muted)
}

.timer-blk {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    gap: 8px
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px
}

.timer-num {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-white);
    font-variant-numeric: tabular-nums
}

.timer-lbl {
    font-size: 0.6rem;
    color: var(--c-text-muted);
    text-transform: uppercase
}

.sep-t {
    color: var(--c-text-muted);
    font-weight: 700;
    align-self: flex-start;
    padding-top: 4px
}

/* ===== BONUSES ===== */
.bonus-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px
}

.bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans);
    display: flex;
    flex-direction: column
}

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

.bonus-head {
    padding: 22px 20px 14px;
    background: linear-gradient(135deg, #071240, #0f1e7a)
}

.bonus-badge {
    display: inline-block;
    background: var(--c-btn-green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .04em
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-gold);
    line-height: 1.1
}

.bonus-title {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-top: 4px
}

.bonus-body {
    padding: 16px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px
}

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

/* ===== WHEEL ===== */
.wheel-sect {
    background: linear-gradient(180deg, var(--c-bg) 0%, #060b40 50%, var(--c-bg) 100%)
}

.wheel-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 48px
}

.wheel-box {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0
}

.wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(68, 158, 102, .3), 0 0 80px rgba(20, 29, 95, .5)
}

.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 22px solid var(--c-gold);
    filter: drop-shadow(0 2px 6px rgba(240, 192, 64, .7))
}

.wheel-btn-wr {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.wheel-spin-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-btn-green), #2d7a4f);
    border: 3px solid var(--c-white);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2
}

.wheel-spin-btn:hover:not(:disabled) {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(68, 158, 102, .6)
}

.wheel-spin-btn:disabled {
    opacity: .6;
    cursor: not-allowed
}

.wheel-info {
    max-width: 340px;
    text-align: center
}

.wheel-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: 10px
}

.wheel-info p {
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 20px
}

.wheel-result {
    display: none;
    background: rgba(68, 158, 102, .12);
    border: 1px solid var(--c-btn-green);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 16px;
    animation: fdi-r2t .4s ease
}

.wheel-result.show-p5x {
    display: block
}

.wheel-result h4 {
    color: var(--c-btn-green);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px
}

.wheel-result p {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px
}

.wheel-lose {
    display: none;
    background: rgba(220, 50, 50, .1);
    border: 1px solid #c0392b;
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 16px
}

.wheel-lose.show-k7y {
    display: block
}

.wheel-lose p {
    color: #e57373;
    font-size: 0.9rem
}

/* ===== REVIEW / CONTENT ===== */
.review-wrap {
    max-width: 820px;
    margin: 0 auto
}

.author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 32px
}

.author-ava {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--c-btn-green)
}

.author-meta strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-white)
}

.author-meta span {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    display: block
}

.author-meta a {
    color: var(--c-btn-green);
    font-size: 0.82rem
}

.content-body {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px;
    line-height: 1.75;
    color: var(--c-text)
}

.content-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-white);
    margin: 28px 0 12px;
    border-left: 4px solid var(--c-btn-green);
    padding-left: 14px
}

.content-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-white);
    margin: 22px 0 10px
}

.content-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-gold);
    margin: 18px 0 8px
}

.content-body p {
    margin-bottom: 14px;
    color: var(--c-text-muted)
}

.content-body ul, .content-body ol {
    padding-left: 22px;
    margin-bottom: 14px;
    color: var(--c-text-muted)
}

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

.content-body ul li::marker {
    color: var(--c-btn-green)
}

.content-body strong {
    color: var(--c-white)
}

.content-body em {
    color: var(--c-gold)
}

.content-body a {
    color: var(--c-btn-green);
    text-decoration: underline
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    overflow-x: auto;
    display: block
}

.content-body table th, .content-body table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    text-align: left;
    white-space: nowrap
}

.content-body table th {
    background: var(--c-card2);
    color: var(--c-white);
    font-weight: 700
}

.content-body table td {
    color: var(--c-text-muted)
}

.content-body blockquote {
    border-left: 4px solid var(--c-gold);
    padding: 12px 18px;
    margin: 18px 0;
    background: rgba(240, 192, 64, .06);
    border-radius: 0 8px 8px 0;
    color: var(--c-text-muted)
}

.content-placeholder {
    color: var(--c-text-muted);
    font-style: italic;
    padding: 20px;
    border: 1px dashed var(--c-border);
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px
}

.rev-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px;
    transition: transform var(--trans)
}

.rev-card:hover {
    transform: translateY(-3px)
}

.rev-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
}

.rev-ava {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-border)
}

.rev-name {
    font-weight: 700;
    color: var(--c-white);
    font-size: 0.9rem
}

.rev-stars {
    display: flex;
    gap: 2px;
    margin-top: 3px
}

.rev-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--c-gold)
}

.rev-text {
    font-size: 0.87rem;
    color: var(--c-text-muted);
    line-height: 1.65
}

.rev-date {
    font-size: 0.75rem;
    color: #5c6bc0;
    margin-top: 10px
}

/* ===== REVIEW FORM ===== */
.rev-form-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 560px;
    margin: 0 auto
}

.rev-form-wrap h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 20px
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px
}

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

.form-field input, .form-field textarea {
    background: #060c3f;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--c-white);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color var(--trans);
    outline: none
}

.form-field input:focus, .form-field textarea:focus {
    border-color: var(--c-btn-green)
}

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

.form-success {
    display: none;
    background: rgba(68, 158, 102, .12);
    border: 1px solid var(--c-btn-green);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--c-btn-green);
    font-size: 0.9rem;
    margin-top: 12px
}

.form-success.show-j8z {
    display: block
}

/* ===== FOOTER ===== */
.ftr-x3d {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 24px
}

.ftr-grid {
    display: grid;
    grid-template-columns:1fr 2fr;
    gap: 40px;
    margin-bottom: 40px
}

.ftr-logo img {
    height: 40px;
    margin-bottom: 14px
}

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

.ftr-cols {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px
}

.ftr-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.ftr-col a {
    display: block;
    font-size: 0.83rem;
    color: var(--c-text-muted);
    margin-bottom: 7px;
    transition: color var(--trans)
}

.ftr-col a:hover {
    color: var(--c-white)
}

.ftr-pay {
    margin-bottom: 28px
}

.ftr-pay h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px
}

.pay-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.pay-logo {
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-text-muted);
    transition: background var(--trans)
}

.pay-logo:hover {
    background: rgba(255, 255, 255, .14)
}

.prov-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 28px
}

.prov-logo {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.75rem;
    color: var(--c-text-muted)
}

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

.ftr-legal {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    max-width: 700px
}

.ftr-legal a {
    color: var(--c-text-muted);
    text-decoration: underline
}

.ftr-copy {
    font-size: 0.78rem;
    color: #3949ab;
    white-space: nowrap
}

/* ===== BOTTOM WIDGET ===== */
.bw-y5h {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: linear-gradient(90deg, #0a155e, #0e1c6e);
    border-top: 2px solid var(--c-btn-green);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5)
}

.bw-text {
    font-size: 0.85rem;
    color: var(--c-text-muted)
}

.bw-text strong {
    color: var(--c-gold)
}

.bw-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: color var(--trans)
}

.bw-close:hover {
    color: var(--c-white)
}

/* ===== MOBILE SLIDERS ===== */
@media (max-width: 767px) {
    .screen-card {
        flex: 0 0 calc(85% - 10px)
    }

    .tourn-card, .bonus-card {
        scroll-snap-align: start
    }

    .mob-sl-wr {
        overflow-x: auto;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        display: flex;
        gap: 16px;
        padding-bottom: 4px
    }

    .mob-sl-wr::-webkit-scrollbar {
        display: none
    }

    .mob-sl-wr .tourn-card, .mob-sl-wr .bonus-card {
        flex: 0 0 calc(85% - 8px)
    }

    .tourn-grid, .bonus-grid {
        display: block
    }
}

/* ===== SECTION DIVIDERS ===== */
.sec-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 0
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

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

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--c-white);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    transition: background var(--trans)
}

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

.faq-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--c-btn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .2s
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    color: #fff
}

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

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

.faq-item.open-v6n .faq-a {
    display: block
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease
}

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

.wp-content-area, .elementor-widget-wrap, .wp-block-group {
    display: contents
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px)
}

.entry-content {
    display: contents
}

/* =====  ===== */
@media (max-width: 1023px) {
    .hdr-nav {
        display: none
    }

    .burger-btn {
        display: flex
    }

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

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

@media (max-width: 767px) {
    .sec-pd {
        padding: 48px 0
    }

    .hero-s8w {
        min-height: 440px
    }

    .hero-stats {
        gap: 16px
    }

    .hstat strong {
        font-size: 1.1rem
    }

    .ftr-cols {
        grid-template-columns:1fr
    }

    .bw-y5h {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 8px;
        padding-right: 44px
    }

    .wheel-wrap {
        gap: 28px
    }

    .wheel-box {
        width: 240px;
        height: 240px
    }

    .wheel-spin-btn {
        width: 54px;
        height: 54px;
        font-size: 0.65rem
    }
}

@media (max-width: 479px) {
    .hero-btns {
        flex-direction: column
    }

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

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

@media (max-width: 767px) {
    #wheel {
        padding: 42px 0;
    }

    #wheel .sec-title {
        font-size: 1.45rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    #wheel .sec-sub {
        max-width: 310px;
        margin: 0 auto 26px;
        font-size: .88rem;
        line-height: 1.5;
    }

    #wheel .wheel-wrap {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        justify-items: center;
    }

    #wheel .wheel-box {
        width: min(280px, 82vw);
        height: min(280px, 82vw);
    }

    #wheel .wheel-canvas {
        width: 100%;
        height: 100%;
    }

    #wheel .wheel-pointer {
        top: -10px;
        border-left-width: 10px;
        border-right-width: 10px;
        border-top-width: 18px;
    }

    #wheel .wheel-spin-btn {
        width: 60px;
        height: 60px;
        font-size: .66rem;
        border-width: 2px;
    }

    #wheel .wheel-info {
        width: 100%;
        max-width: 340px;
        padding: 18px 16px;
        border: 1px solid var(--c-border);
        border-radius: 14px;
        background: rgba(13, 22, 96, .62);
    }

    #wheel .wheel-info h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    #wheel .wheel-info > p {
        font-size: .86rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    #wheel .wheel-result,
    #wheel .wheel-lose {
        padding: 14px;
        margin-top: 14px;
        border-radius: 12px;
    }

    #wheel .wheel-result h4 {
        font-size: .98rem;
    }

    #wheel .wheel-result p,
    #wheel .wheel-lose p {
        font-size: .84rem;
        line-height: 1.55;
    }

    #wheel .wheel-result .btn,
    #wheel .wheel-lose .btn {
        min-height: 42px;
        font-size: .84rem;
        white-space: normal;
    }
}

@media (max-width: 380px) {
    #wheel .wheel-box {
        width: 238px;
        height: 238px;
    }

    #wheel .wheel-spin-btn {
        width: 54px;
        height: 54px;
        font-size: .6rem;
    }

    #wheel .wheel-info {
        padding: 16px 14px;
    }
}