@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap');

:root {
    --clr-bg: #07041C;
    --clr-surface: #0d0a2a;
    --clr-surface2: #120e35;
    --clr-accent: #A0F8B5;
    --clr-accent-dark: #6fe098;
    --clr-text: #e8e4ff;
    --clr-muted: #8a84b0;
    --clr-border: #1e1a40;
    --clr-card: #110d2e;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --trans: .22s ease
}

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

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

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Kanit', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden
}

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

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: color var(--trans)
}

a:hover {
    color: var(--clr-accent-dark)
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: 'Kanit', sans-serif
}

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

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

.box {
    border-radius: var(--radius);
    overflow: hidden
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    border: none;
    transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
    white-space: nowrap;
    text-decoration: none
}

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

.btn--primary {
    background: var(--clr-accent);
    color: #07041C
}

.btn--primary:hover {
    background: var(--clr-accent-dark);
    color: #07041C
}

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

.btn--secondary:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent)
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: 10px
}

.btn--sm {
    padding: 7px 16px;
    font-size: .85rem
}

/* ─── HEADER ─── */
.site-header {
    background: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

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

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

.logo-img {
    height: 42px;
    width: auto;
    border-radius: 6px
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-accent);
    letter-spacing: .02em
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    color: var(--clr-muted);
    font-size: .88rem;
    font-weight: 500;
    transition: background var(--trans), color var(--trans)
}

.header-nav a:hover, .header-nav a.active {
    background: var(--clr-surface);
    color: var(--clr-text)
}

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

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--clr-muted);
    white-space: nowrap
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #A0F8B5;
    box-shadow: 0 0 6px #A0F8B5;
    animation: pulse-dot 2s infinite
}

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

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

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

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

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

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

/* ─── HERO ─── */
.hero-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg)
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 4, 28, .92) 40%, rgba(7, 4, 28, .5) 100%)
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0
}

.hero-text {
    flex: 1;
    max-width: 560px
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(160, 248, 181, .12);
    border: 1px solid rgba(160, 248, 181, .25);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .82rem;
    color: var(--clr-accent);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: .04em
}

.hero-h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 18px;
    color: #fff
}

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

.hero-desc {
    font-size: 1.05rem;
    color: var(--clr-muted);
    margin-bottom: 30px;
    line-height: 1.7
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.hero-bonus {
    flex-shrink: 0;
    background: linear-gradient(145deg, var(--clr-surface2), var(--clr-card));
    border: 1px solid var(--clr-accent);
    border-radius: 16px;
    padding: 28px 30px;
    text-align: center;
    min-width: 240px;
    box-shadow: 0 8px 32px rgba(160, 248, 181, .15)
}

.hero-bonus-label {
    font-size: .78rem;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 6px
}

.hero-bonus-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--clr-accent);
    line-height: 1;
    margin-bottom: 4px
}

.hero-bonus-sub {
    font-size: .88rem;
    color: var(--clr-text);
    margin-bottom: 16px
}

.hero-badge {
    display: inline-block;
    background: rgba(160, 248, 181, .1);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .78rem;
    color: var(--clr-accent);
    font-weight: 600;
    margin-bottom: 14px
}

/* ─── SECTION HEADER ─── */
.sec-header {
    text-align: center;
    margin-bottom: 40px
}

.sec-tag {
    display: inline-block;
    background: rgba(160, 248, 181, .1);
    color: var(--clr-accent);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px
}

.sec-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

.sec-desc {
    color: var(--clr-muted);
    font-size: .97rem;
    max-width: 600px;
    margin: 0 auto
}

/* ─── SECTION PADDING ─── */
.section {
    padding: 72px 0
}

.section--alt {
    background: var(--clr-surface)
}

.section--darker {
    background: var(--clr-surface2)
}

/* ─── ADVANTAGES ─── */
.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center
}

.adv-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    flex: 1 1 200px;
    max-width: 240px;
    text-align: center;
    transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans)
}

.adv-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-accent);
    box-shadow: 0 8px 28px rgba(160, 248, 181, .1)
}

.adv-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(160, 248, 181, .15), rgba(160, 248, 181, .05));
    border-radius: 14px
}

.adv-icon svg {
    width: 28px;
    height: 28px;
    color: var(--clr-accent)
}

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

.adv-text {
    font-size: .85rem;
    color: var(--clr-muted);
    line-height: 1.55
}

/* ─── JACKPOTS ─── */
.jackpot-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center
}

.jackpot-card {
    background: linear-gradient(145deg, #130f35, #1a1545);
    border: 1px solid rgba(160, 248, 181, .2);
    border-radius: var(--radius);
    padding: 28px 22px;
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans)
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(160, 248, 181, .12), transparent 70%)
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(160, 248, 181, .15)
}

.jackpot-name {
    font-size: .82rem;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px
}

.jackpot-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-accent);
    font-variant-numeric: tabular-nums;
    line-height: 1
}

.jackpot-currency {
    font-size: .9rem;
    color: var(--clr-muted);
    margin-top: 4px
}

.jackpot-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    color: #A0F8B5;
    margin-top: 10px;
    background: rgba(160, 248, 181, .1);
    border-radius: 10px;
    padding: 3px 10px
}

.jackpot-live::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #A0F8B5;
    display: block;
    animation: pulse-dot 2s infinite
}

/* ─── SCREENSHOTS ─── */
.screens-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px
}

.screen-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: transform var(--trans), box-shadow var(--trans)
}

.screen-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .5)
}

.screen-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover
}

/* ─── SLOTS ─── */
.slots-grid {
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 16px
}

.slot-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: transform var(--trans), box-shadow var(--trans)
}

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

.slot-card-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover
}

.slot-card-body {
    padding: 10px
}

.slot-card-name {
    font-size: .82rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.slot-card-btn {
    width: 100%;
    padding: 7px;
    background: var(--clr-accent);
    color: #07041C;
    border: none;
    border-radius: 6px;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--trans), transform var(--trans)
}

.slot-card-btn:hover {
    background: var(--clr-accent-dark);
    transform: scale(1.03)
}

/* ─── MINI SLOT ─── */
.minislot-wrap {
    background: linear-gradient(145deg, var(--clr-surface2), var(--clr-card));
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 560px;
    margin: 0 auto;
    text-align: center
}

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

.drum {
    width: 88px;
    height: 88px;
    border-radius: 12px;
    background: var(--clr-bg);
    border: 2px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    overflow: hidden;
    position: relative;
    transition: border-color var(--trans)
}

.drum.spinning {
    animation: drum-spin .12s linear infinite
}

@keyframes drum-spin {
    0% {
        transform: scaleY(1)
    }
    50% {
        transform: scaleY(.1)
    }
    100% {
        transform: scaleY(1)
    }
}

.minislot-result {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    padding: 0 20px
}

.win-msg {
    color: var(--clr-accent);
    font-size: 1.2rem;
    font-weight: 700;
    animation: fade-in .4s ease
}

.lose-msg {
    color: #ff6b8a;
    font-size: 1rem;
    animation: fade-in .4s ease
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(6px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.spin-btn {
    padding: 13px 40px;
    font-size: 1rem;
    font-weight: 700;
    background: var(--clr-accent);
    color: #07041C;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform var(--trans), box-shadow var(--trans);
    width: 100%;
    max-width: 220px
}

.spin-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 248, 181, .3)
}

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

/* ─── REVIEW CONTENT ─── */
.review-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 36px 40px
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-accent)
}

.author-info .name {
    font-weight: 600;
    color: #fff;
    font-size: 1rem
}

.author-info .bio {
    font-size: .83rem;
    color: var(--clr-muted)
}

.review-block h2, .review-block h3, .review-block h4 {
    color: #fff;
    margin: 20px 0 10px;
    font-weight: 600;
    line-height: 1.3
}

.review-block h2 {
    font-size: 1.5rem
}

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

.review-block p {
    color: var(--clr-muted);
    margin-bottom: 14px;
    line-height: 1.75;
    font-size: .97rem
}

.review-block ul, .review-block ol {
    padding-left: 22px;
    margin-bottom: 14px
}

.review-block li {
    color: var(--clr-muted);
    line-height: 1.7;
    font-size: .95rem;
    margin-bottom: 5px
}

.review-block ul {
    list-style: disc
}

.review-block ol {
    list-style: decimal
}

.review-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    text-align: left;
    display: block;
    overflow-x: auto
}

.review-block table th {
    background: var(--clr-surface2);
    color: #fff;
    padding: 10px 14px;
    font-size: .88rem;
    border: 1px solid var(--clr-border)
}

.review-block table td {
    padding: 9px 14px;
    font-size: .88rem;
    color: var(--clr-muted);
    border: 1px solid var(--clr-border)
}

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

.review-block strong, .review-block b {
    color: var(--clr-text)
}

.review-block a {
    color: var(--clr-accent);
    text-decoration: underline
}

.review-block blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 12px 18px;
    margin: 16px 0;
    background: rgba(160, 248, 181, .05);
    border-radius: 0 8px 8px 0
}

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

.review-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 26px
}

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

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-border)
}

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

.reviewer-country {
    font-size: .78rem;
    color: var(--clr-muted)
}

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

.stars svg {
    width: 16px;
    height: 16px;
    fill: #A0F8B5
}

.review-text {
    font-size: .88rem;
    color: var(--clr-muted);
    line-height: 1.65
}

.review-date {
    font-size: .75rem;
    color: var(--clr-border);
    margin-top: 12px
}

/* ─── REVIEW FORM ─── */
.review-form-wrap {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 36px
}

.review-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px
}

.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    font-size: .85rem;
    color: var(--clr-muted);
    margin-bottom: 7px;
    font-weight: 500
}

.form-group input, .form-group textarea {
    width: 100%;
    background: var(--clr-card);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: 'Kanit', sans-serif;
    font-size: .93rem;
    color: var(--clr-text);
    outline: none;
    transition: border-color var(--trans)
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--clr-accent)
}

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

.form-msg {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    display: none
}

.form-msg.success {
    background: rgba(160, 248, 181, .12);
    border: 1px solid rgba(160, 248, 181, .3);
    color: var(--clr-accent)
}

.form-msg.error {
    background: rgba(255, 80, 80, .1);
    border: 1px solid rgba(255, 80, 80, .3);
    color: #ff8fa3
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
    padding: 56px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns:1fr 2fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--clr-border)
}

.footer-brand .logo-img {
    height: 38px;
    margin-bottom: 14px
}

.footer-brand p {
    font-size: .85rem;
    color: var(--clr-muted);
    line-height: 1.65;
    max-width: 280px
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: .83rem;
    color: var(--clr-muted)
}

.footer-flag {
    font-size: 1.3rem
}

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

.footer-col-title {
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px
}

.footer-col ul li {
    margin-bottom: 8px
}

.footer-col ul li a {
    font-size: .85rem;
    color: var(--clr-muted);
    transition: color var(--trans)
}

.footer-col ul li a:hover {
    color: var(--clr-accent)
}

.footer-logos {
    padding: 28px 0;
    border-bottom: 1px solid var(--clr-border)
}

.footer-logos-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px
}

.footer-logos-label {
    font-size: .75rem;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px
}

.footer-logo-pill {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: .8rem;
    color: var(--clr-muted);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px
}

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

.footer-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--clr-muted);
    font-size: .75rem;
    font-weight: 700;
    color: var(--clr-muted)
}

/* ─── STICKY WIDGET ─── */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: linear-gradient(90deg, #07041C, #130f35);
    border-top: 1px solid rgba(160, 248, 181, .2);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5)
}

.widget-text {
    font-size: .9rem;
    color: var(--clr-text);
    flex: 1
}

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

.promo-code {
    background: var(--clr-surface2);
    border: 1.5px dashed rgba(160, 248, 181, .4);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--clr-accent);
    letter-spacing: .06em
}

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

.widget-close:hover {
    color: var(--clr-text)
}

.wp-block-group {
    display: block
}

.entry-content {
    display: block
}

.wp-caption {
    display: block
}

.widget_recent_entries {
    display: none
}

.wp-block-separator {
    display: none
}

.elementor-hidden {
    display: none
}

.site-branding {
    display: block
}

.wp-post-nav {
    display: none
}

.x7k2mf {
    display: block
}

.b3n9p2 {
    position: relative
}

.q9vw3a {
    opacity: 1
}

.r4hj8x {
    visibility: visible
}

.m6tz2k {
    pointer-events: auto
}

.d8yl5n {
    z-index: auto
}

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
    .slots-grid {
        grid-template-columns:repeat(3, 1fr)
    }

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

    .footer-grid {
        grid-template-columns:1fr;
        gap: 28px
    }

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

@media (max-width: 768px) {
    .header-nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(7, 4, 28, .98);
        z-index: 998;
        padding: 80px 20px 20px;
        align-items: flex-start;
        gap: 6px;
        overflow-y: auto
    }

    .header-nav.open {
        display: flex
    }

    .header-nav a {
        font-size: 1rem;
        padding: 12px 16px;
        width: 100%;
        border-radius: 10px
    }

    .burger {
        display: flex
    }

    .hero-inner {
        flex-direction: column;
        padding: 40px 0
    }

    .hero-bonus {
        width: 100%;
        max-width: 360px;
        margin: 0 auto
    }

    .advantages-grid {
        gap: 14px
    }

    .adv-card {
        max-width: 160px;
        padding: 20px 16px
    }

    .jackpot-grid {
        gap: 12px
    }

    .jackpot-card {
        max-width: 160px
    }

    .screens-grid {
        grid-template-columns:1fr;
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory
    }

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

    .slots-grid {
        grid-template-columns:repeat(2, 1fr);
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory
    }

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

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

    .review-block {
        padding: 24px 20px
    }

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

    .footer-grid {
        gap: 20px
    }

    .sticky-widget {
        flex-wrap: wrap
    }

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

    .section {
        padding: 48px 0
    }

    .drums {
        gap: 8px
    }

    .drum {
        width: 72px;
        height: 72px;
        font-size: 2rem
    }
}

@media (max-width: 480px) {
    .hero-h1 {
        font-size: 1.75rem
    }

    .adv-card {
        max-width: calc(50% - 7px);
        flex: 0 0 calc(50% - 7px)
    }

    .jackpot-card {
        max-width: calc(50% - 6px);
        flex: 0 0 calc(50% - 6px)
    }

    .drum {
        width: 62px;
        height: 62px;
        font-size: 1.75rem
    }
}

.header-auth-mobile {
    display: none
}

@media (max-width: 768px) {
    .header-auth-mobile {
        display: flex;
        align-items: center;
        gap: 8px
    }


}

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

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

.stagger-1 {
    transition-delay: .08s
}

.stagger-2 {
    transition-delay: .16s
}

.stagger-3 {
    transition-delay: .24s
}

.stagger-4 {
    transition-delay: .32s
}

.stagger-5 {
    transition-delay: .4s
}

.stagger-6 {
    transition-delay: .48s
}

/* ─── SLIDER DOTS ─── */
.slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 14px
}

@media (max-width: 768px) {
    .slider-dots {
        display: flex
    }
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    border: none;
    cursor: pointer;
    transition: background var(--trans)
}

.slider-dot.active {
    background: var(--clr-accent)
}

/* ─── SCROLL PADDING ─── */
body {
    padding-bottom: 68px
}

/* ─── INFO PAGE ─── */
.info-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 36px 40px;
    margin: 40px 0
}

.info-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

.info-content h2 {
    font-size: 1.3rem;
    color: #fff;
    margin: 20px 0 10px
}

.info-content p {
    color: var(--clr-muted);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 12px
}

.info-content ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--clr-muted);
    font-size: .95rem
}

.info-content li {
    margin-bottom: 8px;
    line-height: 1.65
}

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

@media (max-width: 768px) {
    #slots .container,
    .section--darker .container {
        padding: 0 14px;
    }

    .sec-header {
        margin-bottom: 24px;
    }

    .sec-title {
        font-size: 28px;
    }

    .sec-desc {
        font-size: 14px;
    }

    .slots-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 2px 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .slots-grid::-webkit-scrollbar {
        display: none;
    }

    .slot-card {
        flex: 0 0 180px;
        min-width: 180px;
        max-width: 180px;
        scroll-snap-align: start;
        border-radius: 16px;
        overflow: hidden;
    }

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

    .slot-card-body {
        padding: 14px;
    }

    .slot-card-name {
        font-size: 15px;
        margin-bottom: 12px;
        white-space: normal;
    }

    .slot-card-btn {
        width: 100%;
        min-height: 44px;
    }

    .screens-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .screens-grid::-webkit-scrollbar {
        display: none;
    }

    .screen-item {
        flex: 0 0 92%;
        min-width: 92%;
        scroll-snap-align: center;
        border-radius: 16px;
        overflow: hidden;
    }

    .screen-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    #slots .btn--lg {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .sec-title {
        font-size: 24px;
    }

    .sec-desc {
        font-size: 13px;
    }

    .slot-card {
        flex: 0 0 160px;
        min-width: 160px;
        max-width: 160px;
    }

    .slot-card-img {
        height: 205px;
    }

    .slot-card-name {
        font-size: 14px;
    }

    .slot-card-btn {
        font-size: 13px;
    }

    .screen-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
}