:root {
    --bg: #1E101E;
    --hdr: #05071A;
    --btn-y: #FFE600;
    --btn-y-t: #05071A;
    --btn-s: #26293A;
    --btn-s-t: #E8E8F0;
    --txt: #E8E8F0;
    --txt-m: #9990B0;
    --card: #271527;
    --card2: #1A0D1A;
    --brd: #3D2A3D;
    --acc: #FFE600;
    --acc2: #FF6B35;
    --rad: 12px;
    --rads: 8px;
    --tr: 0.3s ease;
    --font: 'Inter', sans-serif;
    --maxw: 1200px
}

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

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

body {
    background: var(--bg);
    color: var(--txt);
    font-family: var(--font);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

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

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

a:hover {
    color: #fff
}

ul, ol {
    list-style: none
}

button {
    cursor: pointer;
    font-family: var(--font)
}

.hs-container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px
}

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

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--rads);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    border: none;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease, opacity .2s ease;
    white-space: nowrap;
    cursor: pointer
}

.btn:active {
    transform: scale(.97)
}

.btn-primary {
    background: var(--btn-y);
    color: var(--btn-y-t);
    box-shadow: 0 0 18px rgba(255, 230, 0, .3)
}

.btn-primary:hover {
    background: #ffec33;
    box-shadow: 0 0 28px rgba(255, 230, 0, .55);
    transform: translateY(-2px);
    color: var(--btn-y-t)
}

.btn-secondary {
    background: var(--btn-s);
    color: var(--btn-s-t);
    border: 1px solid rgba(255, 255, 255, .08)
}

.btn-secondary:hover {
    background: #32364a;
    color: #fff;
    transform: translateY(-2px)
}

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

.btn-outline:hover {
    background: var(--acc);
    color: var(--btn-y-t)
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px
}

.btn-full {
    width: 100%
}

.btn-spin {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    font-size: 18px;
    padding: 14px 48px;
    border-radius: var(--rad);
    letter-spacing: 2px;
    box-shadow: 0 0 24px rgba(168, 85, 247, .4)
}

.btn-spin:hover {
    box-shadow: 0 0 36px rgba(168, 85, 247, .6);
    transform: translateY(-2px)
}

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

/* ── HEADER ── */
.hs-header {
    background: var(--hdr);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .5)
}

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

.hs-logo {
    display: flex;
    align-items: center
}

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

.hs-nav {
    display: flex;
    align-items: center;
    justify-content: center
}

.hs-nav__list {
    display: flex;
    align-items: center;
    gap: 4px
}

.hs-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: var(--txt-m);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--rads);
    transition: all var(--tr)
}

.hs-nav__link:hover, .hs-nav__link.active {
    color: #fff;
    background: rgba(255, 255, 255, .06)
}

.hs-nav__icon {
    flex-shrink: 0;
    opacity: .75
}

.hs-header__actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.hs-online {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .05);
    border-radius: 20px;
    font-size: 12px;
    color: var(--txt-m);
    white-space: nowrap
}

.hs-online__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .4)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0)
    }
}

.hs-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer
}

.hs-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--txt);
    border-radius: 2px;
    transition: all .3s ease
}

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

.hs-burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

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

/* ── HERO ── */
.hs-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: var(--hdr)
}

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

.hs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 7, 26, .92) 0%, rgba(30, 16, 30, .75) 50%, rgba(5, 7, 26, .85) 100%)
}

.hs-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:1fr auto;
    gap: 48px;
    align-items: center;
    padding: 60px 0
}

.hs-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 230, 0, .12);
    border: 1px solid rgba(255, 230, 0, .3);
    color: var(--acc);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.hs-hero__title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px
}

.hs-hero__title span {
    color: var(--acc)
}

.hs-hero__sub {
    font-size: 18px;
    color: var(--txt-m);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.6
}

.hs-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hs-hero__bonus {
    flex-shrink: 0
}

.hs-hero__card {
    background: linear-gradient(145deg, #2a1040, #1a0828);
    border: 1px solid rgba(255, 230, 0, .25);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    min-width: 240px;
    box-shadow: 0 0 48px rgba(255, 230, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .06)
}

.hs-hero__card-label {
    font-size: 12px;
    color: var(--txt-m);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px
}

.hs-hero__card-amount {
    font-size: 38px;
    font-weight: 900;
    color: var(--acc);
    line-height: 1;
    margin-bottom: 4px
}

.hs-hero__card-plus {
    font-size: 14px;
    color: var(--txt-m);
    margin-bottom: 20px
}

.hs-hero__card-fs {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px
}

.hs-hero__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px
}

.hs-hero__stars svg {
    color: var(--acc)
}

/* ── SECTION BASE ── */
.hs-section {
    padding: 64px 0
}

.hs-section--alt {
    background: rgba(255, 255, 255, .02)
}

.hs-section__head {
    text-align: center;
    margin-bottom: 48px
}

.hs-section__tag {
    display: inline-block;
    background: rgba(255, 230, 0, .1);
    color: var(--acc);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px
}

.hs-section__title {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800;
    letter-spacing: -.5px
}

.hs-section__sub {
    color: var(--txt-m);
    font-size: 16px;
    margin-top: 10px
}

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

.hs-adv__item {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: var(--rad);
    padding: 28px 24px;
    text-align: center;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr)
}

.hs-adv__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
    border-color: rgba(255, 230, 0, .2)
}

.hs-adv__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 230, 0, .15), rgba(255, 230, 0, .05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px
}

.hs-adv__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px
}

.hs-adv__text {
    font-size: 13px;
    color: var(--txt-m);
    line-height: 1.5
}

/* ── PAYMENT TABLE ── */
.hs-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--rad)
}

.hs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: var(--card);
    border-radius: var(--rad);
    overflow: hidden
}

.hs-table th {
    background: var(--hdr);
    color: var(--txt-m);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--brd)
}

.hs-table td {
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    vertical-align: middle
}

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

.hs-table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.hs-table__method {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600
}

.hs-table__logo {
    width: 40px;
    height: 26px;
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--txt-m);
    font-weight: 700;
    flex-shrink: 0
}

.hs-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600
}

.hs-badge--fast {
    background: rgba(34, 197, 94, .15);
    color: #22c55e
}

.hs-badge--med {
    background: rgba(251, 191, 36, .15);
    color: #fbbf24
}

/* ── WINNERS ── */
.hs-winners {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px
}

.hs-winner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: var(--rads);
    padding: 12px 16px;
    transition: transform var(--tr)
}

.hs-winner:hover {
    transform: translateX(4px)
}

.hs-winner__rank {
    font-size: 13px;
    font-weight: 800;
    color: var(--txt-m);
    min-width: 24px
}

.hs-winner__rank--gold {
    color: #FFD700
}

.hs-winner__rank--silver {
    color: #C0C0C0
}

.hs-winner__rank--bronze {
    color: #CD7F32
}

.hs-winner__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--acc2), var(--acc));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--btn-y-t);
    flex-shrink: 0
}

.hs-winner__info {
    flex: 1;
    min-width: 0
}

.hs-winner__name {
    font-size: 13px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.hs-winner__game {
    font-size: 11px;
    color: var(--txt-m)
}

.hs-winner__amount {
    font-size: 14px;
    font-weight: 800;
    color: #22c55e;
    white-space: nowrap
}

/* ── BONUSES ── */
.hs-bonuses {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px
}

.hs-bonus {
    background: linear-gradient(145deg, var(--card), var(--card2));
    border: 1px solid var(--brd);
    border-radius: var(--rad);
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr)
}

.hs-bonus:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .5)
}

.hs-bonus__top {
    background: linear-gradient(135deg, #1a0040, #300060);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.hs-bonus__top::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 230, 0, .15), transparent 70%);
    pointer-events: none
}

.hs-bonus__num {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .3);
    letter-spacing: 1px
}

.hs-bonus__icon {
    font-size: 40px;
    margin-bottom: 12px
}

.hs-bonus__amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--acc);
    line-height: 1
}

.hs-bonus__type {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    margin-top: 4px
}

.hs-bonus__body {
    padding: 24px
}

.hs-bonus__title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px
}

.hs-bonus__desc {
    font-size: 13px;
    color: var(--txt-m);
    margin-bottom: 20px;
    line-height: 1.6
}

.hs-bonus__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--txt-m);
    margin-bottom: 20px
}

.hs-bonus__tag svg {
    color: var(--acc)
}

/* ── SLOT GAME ── */
.hs-slot {
    background: linear-gradient(145deg, #0d0025, #1a0040);
    border: 1px solid rgba(168, 85, 247, .3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(124, 58, 237, .2)
}

.hs-slot__title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px
}

.hs-slot__sub {
    font-size: 14px;
    color: var(--txt-m);
    margin-bottom: 32px
}

.hs-slot__machine {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px
}

.hs-reel {
    width: 90px;
    height: 110px;
    background: rgba(0, 0, 0, .5);
    border: 2px solid rgba(168, 85, 247, .3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    overflow: hidden;
    position: relative
}

.hs-reel__inner {
    transition: none;
    display: flex;
    flex-direction: column;
    align-items: center
}

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

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

.hs-slot__result {
    margin-top: 24px;
    padding: 24px;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .3);
    border-radius: var(--rad);
    animation: fade-in-up .4s ease
}

.hs-slot__lose {
    margin-top: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--rad);
    font-size: 14px;
    color: var(--txt-m)
}

.hs-slot__win-title {
    font-size: 20px;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 8px
}

.hs-slot__win-text {
    font-size: 15px;
    color: var(--txt-m);
    margin-bottom: 16px
}

.hs-slot__credits {
    font-size: 13px;
    color: var(--txt-m);
    margin-top: 16px
}

.hs-slot__credits span {
    color: var(--acc);
    font-weight: 700
}

/* ── REVIEW CONTENT ── */
.hs-review-content {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: var(--rad);
    padding: 40px
}

.hs-review-content h1, .hs-review-content h2, .hs-review-content h3, .hs-review-content h4 {
    font-weight: 800;
    margin: 1.5em 0 .75em;
    line-height: 1.25;
    color: #fff
}

.hs-review-content h2 {
    font-size: clamp(18px, 2.5vw, 24px);
    border-bottom: 1px solid var(--brd);
    padding-bottom: .5em
}

.hs-review-content h3 {
    font-size: clamp(16px, 2vw, 20px)
}

.hs-review-content p {
    margin-bottom: 1.25em;
    color: var(--txt-m);
    line-height: 1.8
}

.hs-review-content ul, .hs-review-content ol {
    margin: 1em 0 1.25em 1.5em
}

.hs-review-content ul {
    list-style: disc
}

.hs-review-content ol {
    list-style: decimal
}

.hs-review-content li {
    margin-bottom: .5em;
    color: var(--txt-m);
    line-height: 1.7
}

.hs-review-content a {
    color: var(--acc);
    text-decoration: underline;
    text-decoration-color: rgba(255, 230, 0, .3)
}

.hs-review-content a:hover {
    text-decoration-color: var(--acc)
}

.hs-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    overflow-x: auto;
    display: block
}

.hs-review-content table th {
    background: var(--hdr);
    padding: 10px 14px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--brd)
}

.hs-review-content table td {
    padding: 10px 14px;
    border: 1px solid var(--brd);
    font-size: 14px;
    color: var(--txt-m)
}

.hs-review-content blockquote {
    border-left: 3px solid var(--acc);
    padding: .75em 1.25em;
    margin: 1.5em 0;
    background: rgba(255, 230, 0, .05);
    border-radius: 0 var(--rads) var(--rads) 0;
    font-style: italic;
    color: var(--txt-m)
}

.hs-review-content strong, .hs-review-content b {
    color: var(--txt);
    font-weight: 700
}

.hs-review-content em, .hs-review-content i {
    font-style: italic
}

.hs-review-content hr {
    border: none;
    border-top: 1px solid var(--brd);
    margin: 2em 0
}

.hs-author {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, .03);
    border-radius: var(--rads);
    margin-bottom: 32px
}

.hs-author__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.hs-author__name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px
}

.hs-author__bio {
    font-size: 13px;
    color: var(--txt-m);
    line-height: 1.6
}

.hs-author__links {
    display: flex;
    gap: 12px;
    margin-top: 8px
}

.hs-author__link {
    font-size: 12px;
    color: var(--acc)
}

.hs-updated {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--txt-m);
    margin-bottom: 24px
}

/* ── REVIEWS ── */
.hs-reviews-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px
}

.hs-review-card {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: var(--rad);
    padding: 28px 24px;
    transition: transform var(--tr)
}

.hs-review-card:hover {
    transform: translateY(-4px)
}

.hs-review-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px
}

.hs-review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brd)
}

.hs-review-card__name {
    font-size: 15px;
    font-weight: 700
}

.hs-review-card__date {
    font-size: 12px;
    color: var(--txt-m)
}

.hs-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px
}

.hs-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--acc)
}

.hs-review-card__text {
    font-size: 14px;
    color: var(--txt-m);
    line-height: 1.7
}

.hs-review-form {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: var(--rad);
    padding: 36px
}

.hs-review-form__title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px
}

.hs-form {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.hs-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.hs-form__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--txt-m);
    letter-spacing: .3px
}

.hs-form__input, .hs-form__textarea {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--brd);
    border-radius: var(--rads);
    color: var(--txt);
    font-family: var(--font);
    font-size: 14px;
    padding: 13px 16px;
    transition: border-color var(--tr), box-shadow var(--tr);
    width: 100%
}

.hs-form__input:focus, .hs-form__textarea:focus {
    outline: none;
    border-color: var(--acc);
    box-shadow: 0 0 0 3px rgba(255, 230, 0, .12)
}

.hs-form__input::placeholder, .hs-form__textarea::placeholder {
    color: var(--txt-m)
}

.hs-form__textarea {
    resize: vertical;
    min-height: 110px
}

.hs-form__msg {
    display: none;
    padding: 16px;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .3);
    border-radius: var(--rads);
    color: #22c55e;
    font-size: 14px;
    font-weight: 600;
    text-align: center
}

.hs-form__msg.visible {
    display: block;
    animation: fade-in-up .35s ease
}

.hs-form__row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px
}

/* ── FOOTER ── */
.hs-footer {
    background: var(--hdr);
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin-top: auto;
    padding: 48px 0 24px
}

.hs-footer__top {
    display: grid;
    grid-template-columns:220px 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px
}

.hs-footer__brand {
}

.hs-footer__logo {
    height: 40px;
    width: auto;
    margin-bottom: 14px
}

.hs-footer__tagline {
    font-size: 13px;
    color: var(--txt-m);
    line-height: 1.6;
    margin-bottom: 16px
}

.hs-footer__flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--txt-m)
}

.hs-footer__flag-img {
    font-size: 20px
}

.hs-footer__col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--txt);
    margin-bottom: 16px
}

.hs-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.hs-footer__nav-link {
    font-size: 14px;
    color: var(--txt-m);
    transition: color var(--tr)
}

.hs-footer__nav-link:hover {
    color: var(--acc)
}

.hs-footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, .06);
    margin-bottom: 28px
}

.hs-footer__logos {
    margin-bottom: 20px
}

.hs-footer__logos-label {
    font-size: 11px;
    color: var(--txt-m);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.hs-footer__logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.hs-logo-badge {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--txt-m);
    letter-spacing: .5px;
    white-space: nowrap
}

.hs-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.hs-footer__copy {
    font-size: 12px;
    color: var(--txt-m)
}

.hs-footer__links {
    display: flex;
    gap: 16px
}

.hs-footer__links a {
    font-size: 12px;
    color: var(--txt-m)
}

.hs-footer__links a:hover {
    color: var(--acc)
}

.hs-footer__disclaimer {
    background: rgba(255, 255, 255, .03);
    border-radius: var(--rads);
    padding: 16px;
    margin-top: 20px;
    font-size: 11px;
    color: var(--txt-m);
    line-height: 1.7;
    text-align: center
}

.hs-footer__age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--txt-m);
    font-size: 11px;
    font-weight: 800;
    color: var(--txt-m)
}

/* ── WIDGET ── */
.hs-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #05071A, #0d0030, #05071A);
    border-top: 2px solid var(--acc);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

.hs-widget__text {
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.hs-widget__text span {
    color: var(--acc)
}

.hs-widget__code {
    background: rgba(255, 230, 0, .1);
    border: 1px dashed var(--acc);
    border-radius: var(--rads);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--acc);
    letter-spacing: 2px
}

.hs-widget__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.hs-widget__close {
    background: transparent;
    border: none;
    color: var(--txt-m);
    font-size: 18px;
    line-height: 1;
    padding: 4px 8px;
    cursor: pointer;
    transition: color var(--tr)
}

.hs-widget__close:hover {
    color: #fff
}

body.widget-closed .hs-widget {
    display: none
}

body {
    padding-bottom: 64px
}

body.widget-closed {
    padding-bottom: 0
}

/* ──  ── */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(16px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fade-in {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes shimmer {
    0% {
        background-position: -500px 0
    }
    100% {
        background-position: 500px 0
    }
}

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

.anim-reveal.revealed {
    opacity: 1;
    transform: translateY(0)
}

.wp-block-group {
    display: block
}

.elementor-section {
    display: block
}

.et-pb-section {
    display: block
}

.wp-block-columns {
    display: grid
}

.wp-block-image {
    display: block
}

.has-text-align-center {
    text-align: center
}

.has-large-font-size {
    font-size: 24px
}

.e5r9t-dummy {
    display: none
}

.n7k2x-ghost {
    visibility: hidden;
    position: absolute
}

.m3p8q-unused {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: -9999px
}

@media (max-width: 900px) {
    .hs-nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--hdr);
        z-index: 999;
        padding: 20px;
        overflow-y: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0
    }

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

    .hs-nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0
    }

    .hs-nav__link {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        border-radius: var(--rads)
    }

    .hs-header__inner {
        grid-template-columns:auto 1fr auto
    }

    .hs-burger {
        display: flex
    }

    .hs-header__actions {
        gap: 8px
    }

    .hs-header__actions .hs-online {
        display: none
    }

    .hs-hero__inner {
        grid-template-columns:1fr;
        padding: 40px 0
    }

    .hs-hero__bonus {
        display: none
    }

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

    .hs-bonuses {
        grid-template-columns:1fr
    }

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

    .hs-footer__top {
        grid-template-columns:1fr
    }

    .hs-footer__bottom {
        flex-direction: column;
        text-align: center
    }

    .hs-widget {
        padding: 8px 14px
    }

    .hs-widget__text {
        font-size: 13px
    }

    .hs-form__row {
        grid-template-columns:1fr
    }

    .hs-slot {
        padding: 28px 20px
    }

    .hs-reel {
        width: 80px;
        height: 96px;
        font-size: 38px
    }

    .hs-review-content {
        padding: 24px 20px
    }

    .hs-author {
        flex-direction: column
    }
}

@media (max-width: 600px) {
    .hs-adv {
        grid-template-columns:repeat(2, 1fr)
    }

    .btn-primary.btn-lg, .btn-secondary.btn-lg {
        padding: 12px 24px;
        font-size: 14px
    }

    .hs-hero__title {
        font-size: 28px
    }

    .hs-section {
        padding: 48px 0
    }

    .hs-bonuses {
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px
    }

    .hs-bonus {
        flex: 0 0 80vw;
        scroll-snap-align: start
    }

    .hs-table-wrap {
        margin: 0 -20px;
        padding: 0 20px
    }
}
