:root {
    --c-bg: #0C131D;
    --c-hdr: #0B1219;
    --c-btn-dark: #0E121B;
    --c-btn-blue: #1A66EF;
    --c-text: #E8EDF5;
    --c-text-muted: #8A96A8;
    --c-border: #1E2A3A;
    --c-card: #0F1923;
    --c-card2: #121C28;
    --c-accent: #1A66EF;
    --c-gold: #F0B429;
    --radius: 12px;
    --radius-sm: 8px;
    --fnt: "Montserrat", Inter, Arial, sans-serif;
    --tr: 0.25s ease
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--fnt);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden
}

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

a:hover {
    color: #4d8ef5
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--fnt)
}

input, textarea {
    font-family: var(--fnt)
}

.x9k2m {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.b7qp1 {
    display: grid
}

.f3rn8 {
    display: flex;
    align-items: center
}

.p2wv6 {
    padding: 80px 0
}

.p1wv6 {
    padding: 60px 0
}

.z5jt3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #fff 0%, #a8c4f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.q8km2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff
}

/*  */
.hdr-x7k {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-hdr);
    border-bottom: 1px solid var(--c-border);
    backdrop-filter: blur(12px)
}

.hdr-inner {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 20px;
    height: 68px
}

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

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

.logo-wrap .brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px;
    text-transform: uppercase
}

.nav-x7k {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none
}

.nav-x7k a {
    color: var(--c-text-muted);
    font-size: .875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--tr)
}

.nav-x7k a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06)
}

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

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    animation: pulseDot 2s infinite
}

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

.hdr-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

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

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

.btn-login:hover {
    background: #141d2b;
    color: #fff;
    border-color: #2a3a50
}

.btn-reg {
    background: var(--c-btn-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 102, 239, .35)
}

.btn-reg:hover {
    background: #1557d8;
    box-shadow: 0 6px 20px rgba(26, 102, 239, .5);
    transform: translateY(-1px)
}

.btn-bonus {
    background: linear-gradient(135deg, #F0B429, #e09920);
    color: #0C131D;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(240, 180, 41, .35)
}

.btn-bonus:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(240, 180, 41, .5)
}

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

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s
}

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

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

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

.mob-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--c-hdr);
    border-bottom: 1px solid var(--c-border);
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px
}

.mob-nav.is-open {
    display: flex
}

.mob-nav a {
    color: var(--c-text);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: background var(--tr)
}

.mob-nav a:hover {
    background: rgba(255, 255, 255, .06)
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 19, 29, .95) 0%, rgba(12, 19, 29, .7) 60%, rgba(26, 102, 239, .15) 100%);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 102, 239, .15);
    border: 1px solid rgba(26, 102, 239, .3);
    color: #7aabff;
    font-size: .78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff
}

.hero-title span {
    background: linear-gradient(135deg, var(--c-btn-blue), #7aabff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    font-size: 1.05rem;
    color: #b0bdd0;
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7
}

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

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap
}

.hero-stat {
    text-align: left
}

.hero-stat-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff
}

.hero-stat-lbl {
    font-size: .78rem;
    color: var(--c-text-muted)
}

.adv-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 40px
}

.adv-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr)
}

.adv-card:hover {
    transform: translateY(-4px);
    border-color: #2a4070;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .35)
}

.adv-icon {
    font-size: 2rem;
    margin-bottom: 12px
}

.adv-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

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

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

.wnr-table {
    width: 100%;
    min-width: 560px;
    border-collapse: separate;
    border-spacing: 0;
    margin: 32px auto 0;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden
}

.wnr-table th {
    background: #0a1120;
    color: var(--c-text-muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--c-border)
}

.wnr-table td {
    padding: 11px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(30, 42, 58, .5);
    font-size: .9rem;
    vertical-align: middle
}

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

.wnr-table tbody tr {
    transition: background var(--tr)
}

.wnr-table tbody tr:hover {
    background: rgba(26, 102, 239, .06)
}

.wnr-rank {
    font-weight: 700;
    color: var(--c-text-muted);
    width: 40px
}

.wnr-rank.top3 {
    color: var(--c-gold)
}

.wnr-nick {
    font-weight: 600;
    color: #fff
}

.wnr-game {
    color: var(--c-text-muted);
    font-size: .85rem
}

.wnr-amount {
    font-weight: 700;
    color: #4ade80;
    text-align: right
}

/*  */
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    margin-top: 32px
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius)
}

/*  */
.bonus-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px
}

.bonus-card {
    background: linear-gradient(145deg, #0f1e35, #0a1525);
    border: 1px solid #1e3460;
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr)
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-btn-blue), #7aabff)
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(26, 102, 239, .2)
}

.bonus-type {
    font-size: .75rem;
    font-weight: 700;
    color: var(--c-btn-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.bonus-desc {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 20px
}

.bonus-cta {
    display: inline-block;
    padding: 10px 22px;
    background: var(--c-btn-blue);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .875rem;
    transition: all var(--tr);
    text-decoration: none
}

.bonus-cta:hover {
    background: #1557d8;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(26, 102, 239, .45);
    color: #fff
}

.bonus-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(240, 180, 41, .12);
    border: 1px solid rgba(240, 180, 41, .3);
    color: var(--c-gold);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px
}

.bonus-slider-wrap {
    position: relative
}

.bonus-slider-nav {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

.bonus-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    transition: background var(--tr);
    border: none;
    cursor: pointer
}

.bonus-dot.active {
    background: var(--c-btn-blue)
}

/*  */
.slot-wrap {
    background: linear-gradient(145deg, #0a1525, #0f1e35);
    border: 1px solid #1e3460;
    border-radius: var(--radius);
    padding: 36px 28px;
    max-width: 520px;
    margin: 40px auto 0;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .4)
}

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

.slot-reel {
    width: 80px;
    height: 80px;
    background: #060e18;
    border: 2px solid var(--c-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    transition: transform .1s;
    overflow: hidden;
    position: relative
}

.slot-reel.spin {
    animation: reelSpin .6s ease-out
}

@keyframes reelSpin {
    0% {
        transform: translateY(-100%)
    }
    100% {
        transform: translateY(0)
    }
}

.slot-spin-btn {
    background: var(--c-btn-blue);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--tr);
    box-shadow: 0 4px 16px rgba(26, 102, 239, .4)
}

.slot-spin-btn:hover {
    background: #1557d8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 102, 239, .55)
}

.slot-spin-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none
}

.slot-result {
    margin-top: 24px;
    padding: 20px;
    background: rgba(26, 102, 239, .08);
    border: 1px solid rgba(26, 102, 239, .2);
    border-radius: var(--radius-sm);
    display: none
}

.slot-result.win {
    display: block;
    border-color: rgba(74, 222, 128, .3);
    background: rgba(74, 222, 128, .06)
}

.slot-result.lose {
    display: block;
    border-color: rgba(239, 68, 68, .2);
    background: rgba(239, 68, 68, .04)
}

.slot-result-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px
}

.slot-result.win .slot-result-title {
    color: #4ade80
}

.slot-result.lose .slot-result-title {
    color: #f87171
}

.slot-result-text {
    font-size: .9rem;
    color: var(--c-text-muted);
    margin-bottom: 14px
}

.slot-get-btn {
    display: inline-block;
    background: linear-gradient(135deg, #F0B429, #e09920);
    color: #0C131D;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    text-decoration: none;
    transition: all var(--tr)
}

.slot-get-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(240, 180, 41, .45);
    color: #0C131D
}

.slot-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

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

.slot-balance {
    display: flex;
    justify-content: space-between;
    background: #060e18;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    margin-bottom: 24px;
    font-size: .85rem;
    color: var(--c-text-muted)
}

.slot-balance span:last-child {
    color: #F0B429;
    font-weight: 700
}

.review-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 36px;
    margin-top: 40px
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-btn-blue), #7aabff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

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

.author-role {
    font-size: .8rem;
    color: var(--c-text-muted)
}

.author-link {
    font-size: .8rem;
    color: var(--c-btn-blue)
}

.content-body {
    line-height: 1.8;
    color: #c5cfdb
}

.content-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px
}

.content-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #dde4ef;
    margin: 22px 0 10px
}

.content-body p {
    margin-bottom: 14px
}

.content-body ul, .content-body ol {
    margin: 14px 0 14px 22px
}

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

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

.content-body table th {
    background: #0a1120;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted)
}

.content-body table td {
    padding: 9px 14px;
    border: 1px solid var(--c-border);
    vertical-align: top
}

.content-body a {
    color: var(--c-btn-blue)
}

.content-body strong {
    color: #fff
}

/*  */
.rev-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px
}

.rev-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform var(--tr), border-color var(--tr)
}

.rev-card:hover {
    transform: translateY(-3px);
    border-color: #2a4070
}

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

.rev-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3060, #2a5090);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.rev-name {
    font-weight: 600;
    color: #fff;
    font-size: .95rem
}

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

.rev-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px
}

.rev-star {
    color: var(--c-gold)
}

.rev-text {
    font-size: .875rem;
    color: #b0bdd0;
    line-height: 1.7
}

.rev-form-wrap {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 32px;
    max-width: 560px
}

.rev-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

.form-field {
    margin-bottom: 16px
}

.form-label {
    display: block;
    font-size: .825rem;
    font-weight: 600;
    color: var(--c-text-muted);
    margin-bottom: 6px
}

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

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--c-btn-blue)
}

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

.form-submit {
    background: var(--c-btn-blue);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--tr)
}

.form-submit:hover {
    background: #1557d8;
    transform: translateY(-1px)
}

.form-success {
    display: none;
    background: rgba(74, 222, 128, .08);
    border: 1px solid rgba(74, 222, 128, .25);
    border-radius: var(--radius-sm);
    padding: 14px;
    color: #4ade80;
    font-size: .9rem;
    font-weight: 600;
    margin-top: 14px
}

.form-success.visible {
    display: block
}

/*  */
.ftr-x9q {
    background: var(--c-hdr);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 24px
}

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

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

.ftr-logo-block p {
    font-size: .825rem;
    color: var(--c-text-muted);
    line-height: 1.6
}

.ftr-links-title {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 14px
}

.ftr-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ftr-links a {
    font-size: .85rem;
    color: var(--c-text-muted);
    transition: color var(--tr)
}

.ftr-links a:hover {
    color: #fff
}

.ftr-pay-section {
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--c-border)
}

.ftr-section-label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 14px
}

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

.ftr-logo-pill {
    background: #0a1525;
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 700;
    color: #c5cfdb
}

.ftr-copyright {
    font-size: .78rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    padding-top: 20px;
    border-top: 1px solid var(--c-border)
}

.ftr-legal {
    font-size: .72rem;
    color: #5a6878;
    margin-top: 6px;
    max-width: 900px
}

.widget-x2m {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #0a1525, #0e1e35);
    border-top: 2px solid var(--c-btn-blue);
    padding: 12px 20px
}

.widget-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.widget-text {
    font-size: .9rem;
    color: #fff;
    font-weight: 600;
    flex: 1
}

.widget-text span {
    color: var(--c-gold);
    font-weight: 800
}

.widget-cta {
    background: var(--c-btn-blue);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--tr);
    box-shadow: 0 4px 14px rgba(26, 102, 239, .45)
}

.widget-cta:hover {
    background: #1557d8;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 102, 239, .6);
    color: #fff
}

.widget-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    transition: color var(--tr);
    flex-shrink: 0
}

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

.section-tag {
    display: inline-block;
    background: rgba(26, 102, 239, .12);
    border: 1px solid rgba(26, 102, 239, .25);
    color: #7aabff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 14px
}

/*  */
.faq-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 780px
}

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

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--tr);
    font-family: var(--fnt)
}

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

.faq-q .faq-arr {
    transition: transform .3s;
    color: var(--c-text-muted);
    font-size: 1rem
}

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

.faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: .875rem;
    color: #b0bdd0;
    line-height: 1.7
}

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

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

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

.wp-block-spacer {
    height: 24px
}

.e-clearfix::after {
    content: '';
    display: table;
    clear: both
}

.elementor-invisible {
    visibility: hidden;
    position: absolute
}

/*  */
.sep-wave {
    height: 60px;
    overflow: hidden;
    margin-bottom: -2px
}

.sep-wave svg {
    display: block;
    width: 100%;
    height: 100%
}

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

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

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

    .nav-x7k {
        display: none
    }

    .burger-btn {
        display: flex
    }

    .online-badge {
        display: none
    }

    .bonus-grid {
        grid-template-columns:1fr;
        overflow-x: auto;
        flex-wrap: nowrap;
        display: flex;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px
    }

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

    .bonus-slider-nav {
        display: flex
    }

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

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

    .hero-stats {
        gap: 20px
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start
    }

    .p2wv6 {
        padding: 56px 0
    }

    .widget-text {
        font-size: .8rem
    }

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

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

    body {
        padding-bottom: 68px
    }
}

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

    .hero-title {
        font-size: 1.75rem
    }

    .z5jt3 {
        font-size: 1.5rem
    }
}

@media (max-width: 768px) {

    .x9k2m {
        padding: 0 16px;
    }

    .p2wv6 {
        padding: 48px 0;
    }

    .z5jt3 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 24px;
        text-align: center;
    }

    .section-tag {
        display: table;
        margin: 0 auto 12px;
    }

    .bonus-slider-wrap {
        overflow: visible;
    }

    .bonus-grid {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 16px;
        overflow: visible !important;
        padding: 0;
        margin-top: 24px;
    }

    .bonus-card {
        width: 100%;
        min-width: 0 !important;
        padding: 20px;
        border-radius: 16px;
    }

    .bonus-tag {
        position: static;
        display: inline-flex;
        margin-bottom: 12px;
    }

    .bonus-type {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .bonus-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .bonus-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .bonus-cta {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 15px;
    }

    .bonus-slider-nav {
        display: none !important;
    }
}