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

:root {
    --c-bg: #042522;
    --c-hdr: #053029;
    --c-btn-login: #013D33;
    --c-btn-reg: #B30AD7;
    --c-text: #e8f5f2;
    --c-text-muted: #8ab8b0;
    --c-border: #0a4a3a;
    --c-card: #062e28;
    --c-card2: #071f1b;
    --c-accent: #B30AD7;
    --c-accent2: #7c09a0;
    --c-gold: #f0c040;
    --c-link: #5ee0be;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

html {
    scroll-behavior: smooth;
    background: var(--c-bg);
    color: var(--c-text);
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6
}

body {
    background: var(--c-bg);
    overflow-x: hidden
}

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

a {
    color: var(--c-link);
    text-decoration: none;
    transition: color .2s
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.3;
    color: #fff
}

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

h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    margin-bottom: .8rem
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: .6rem
}

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

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

li {
    margin-bottom: .35rem
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem
}

th, td {
    padding: .65rem 1rem;
    border: 1px solid var(--c-border);
    text-align: left;
    vertical-align: top
}

th {
    background: var(--c-hdr);
    color: #fff;
    font-weight: 600
}

tr:nth-child(even) {
    background: rgba(255, 255, 255, .03)
}

.xw2k9 {
    display: none
}

.pq7r4 {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

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

.section {
    padding: 60px 0
}

.section--sm {
    padding: 36px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s, opacity .15s;
    white-space: nowrap
}

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

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

.btn-login {
    background: var(--c-btn-login);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15)
}

.btn-login:hover {
    background: #015045;
    color: #fff
}

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

.btn-reg:hover {
    background: var(--c-accent2);
    color: #fff
}

.btn-bonus {
    background: linear-gradient(135deg, var(--c-btn-reg), var(--c-accent2));
    color: #fff;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 10px
}

.btn-bonus:hover {
    color: #fff;
    box-shadow: 0 0 24px rgba(179, 10, 215, .6)
}

.btn-get {
    background: var(--c-btn-reg);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .5px
}

.btn-get:hover {
    background: var(--c-accent2);
    color: #fff;
    box-shadow: 0 0 20px rgba(179, 10, 215, .5)
}

.card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow)
}

.card2 {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px
}

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

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

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

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

.text-center {
    text-align: center
}

.fw-bold {
    font-weight: 700
}

.mb0 {
    margin-bottom: 0
}

.mb1 {
    margin-bottom: 8px
}

.mb2 {
    margin-bottom: 16px
}

.mb3 {
    margin-bottom: 24px
}

.mt2 {
    margin-top: 16px
}

.mt3 {
    margin-top: 24px
}

.gap1 {
    gap: 8px
}

.gap2 {
    gap: 16px
}

.gap3 {
    gap: 24px
}

.flex {
    display: flex
}

.flex-col {
    flex-direction: column
}

.items-center {
    align-items: center
}

.justify-between {
    justify-content: space-between
}

.flex-wrap {
    flex-wrap: wrap
}

.w-full {
    width: 100%
}

.grid2 {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 20px
}

.grid3 {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

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

.section-title span {
    color: var(--c-accent)
}

.section-subtitle {
    color: var(--c-text-muted);
    margin-bottom: 28px;
    font-size: .95rem
}

.divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 32px 0
}

#sb-header {
    background: var(--c-hdr);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

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

.header-logo img {
    height: 40px;
    width: auto
}

.header-logo {
    text-decoration: none;
    display: flex;
    align-items: center
}

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

.header-nav a {
    color: var(--c-text-muted);
    font-size: .88rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color .2s, background .2s
}

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

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

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--c-text-muted);
    background: rgba(255, 255, 255, .05);
    padding: 4px 10px;
    border-radius: 20px
}

.header-online .dot {
    width: 7px;
    height: 7px;
    background: #4cff9b;
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 255, 155, .5)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(76, 255, 155, 0)
    }
}

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

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

.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)
}

.mob-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-hdr);
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px;
    overflow-y: auto
}

.mob-nav.open {
    display: flex
}

.mob-nav a {
    color: #fff;
    font-size: 1rem;
    padding: 14px 8px;
    border-bottom: 1px solid var(--c-border);
    width: 100%;
    font-weight: 500
}

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

.mob-nav-btns {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    flex-wrap: wrap
}

#sb-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #021a17 0%, #053029 40%, #160a20 100%)
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 37, 34, .95) 0%, rgba(4, 37, 34, .7) 60%, rgba(4, 37, 34, .2) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 16px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(179, 10, 215, .15);
    border: 1px solid rgba(179, 10, 215, .4);
    color: var(--c-accent);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: .5px
}

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

.hero-title span {
    color: var(--c-accent)
}

.hero-bonus {
    background: rgba(179, 10, 215, .12);
    border: 1px solid rgba(179, 10, 215, .3);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
    display: inline-block
}

.hero-bonus strong {
    color: var(--c-gold);
    font-size: 1.6rem;
    display: block;
    line-height: 1.2
}

.hero-bonus span {
    color: var(--c-text-muted);
    font-size: .88rem
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

#sb-toc {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin: 0 0 32px 0
}

#sb-toc h2 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: var(--c-gold)
}

.toc-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 0
}

.toc-list li {
    width: 50%
}

.toc-list a {
    color: var(--c-link);
    font-size: .9rem;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px
}

.toc-list a::before {
    content: "›";
    color: var(--c-accent);
    font-weight: 700
}

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

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

.table-wrap table {
    margin: 0
}

.info-table td:first-child {
    color: var(--c-text-muted);
    white-space: nowrap;
    width: 180px;
    font-size: .9rem
}

.info-table td:last-child {
    font-weight: 500;
    color: #fff
}

.stars {
    color: var(--c-gold);
    letter-spacing: 2px
}

.rating-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--c-btn-reg), var(--c-accent2));
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 8px
}

.screenshots-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px
}

.screenshots-grid img {
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s
}

.screenshots-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 24px rgba(179, 10, 215, .3)
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 9000;
    align-items: center;
    justify-content: center
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    border: 2px solid var(--c-border)
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1
}

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

.winners-table thead th {
    background: linear-gradient(90deg, var(--c-hdr), #053f35);
    color: #fff;
    padding: 10px 16px;
    font-size: .85rem;
    text-align: left;
    border: 1px solid var(--c-border)
}

.winners-table tbody tr {
    transition: background .15s
}

.winners-table tbody tr:hover {
    background: rgba(255, 255, 255, .04)
}

.winners-table td {
    padding: 9px 16px;
    border: 1px solid var(--c-border);
    font-size: .9rem
}

.winners-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 600;
    text-align: center
}

.winners-table td:last-child {
    color: var(--c-gold);
    font-weight: 700
}

.place1 {
    color: var(--c-gold) !important
}

.place2 {
    color: #c0c0c0 !important
}

.place3 {
    color: #cd7f32 !important
}

.bonuses-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden
}

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

.bonus-card:hover {
    box-shadow: 0 0 30px rgba(179, 10, 215, .2);
    transform: translateY(-4px)
}

.bonus-card__icon {
    font-size: 2.2rem;
    line-height: 1
}

.bonus-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff
}

.bonus-card__amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-gold);
    line-height: 1.2
}

.bonus-card__desc {
    font-size: .88rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    flex: 1
}

.slot-machine {
    background: var(--c-card);
    border: 2px solid var(--c-border);
    border-radius: 20px;
    padding: 36px 24px;
    max-width: 480px;
    margin: 0 auto;
    text-align: center
}

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

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

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

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

@keyframes spin-flash {
    0% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
    100% {
        opacity: 1
    }
}

.spin-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--c-btn-reg), var(--c-accent2));
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    letter-spacing: .5px
}

.spin-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(179, 10, 215, .4)
}

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

.win-block {
    display: none;
    margin-top: 20px;
    background: rgba(179, 10, 215, .12);
    border: 1px solid rgba(179, 10, 215, .4);
    border-radius: 12px;
    padding: 20px;
    animation: fadeIn .4s ease
}

.win-block.show {
    display: block
}

.win-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-gold);
    margin-bottom: 8px
}

.win-desc {
    color: var(--c-text);
    font-size: .9rem;
    margin-bottom: 16px
}

.lose-block {
    display: none;
    margin-top: 16px;
    color: var(--c-text-muted);
    font-size: .9rem;
    animation: fadeIn .4s ease
}

.lose-block.show {
    display: block
}

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

#sb-review {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px
}

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

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

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

.author-bio {
    font-size: .82rem;
    color: var(--c-text-muted);
    line-height: 1.5
}

.author-link {
    font-size: .82rem;
    color: var(--c-link);
    margin-top: 3px;
    display: inline-block
}

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

.review-content h2, .review-content h3, .review-content h4 {
    color: #fff;
    margin-top: 1.4rem;
    margin-bottom: .6rem
}

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

.review-content li {
    margin-bottom: .4rem
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2rem;
    overflow-x: auto;
    display: block
}

.review-content th, .review-content td {
    padding: .6rem .9rem;
    border: 1px solid var(--c-border);
    text-align: left
}

.review-content th {
    background: var(--c-hdr);
    color: #fff
}

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

.review-content blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 8px 16px;
    color: var(--c-text-muted);
    margin: 1rem 0;
    font-style: italic
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

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

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600
}

.faq-question:hover {
    color: var(--c-accent)
}

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

.faq-icon svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    transition: transform .25s
}

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

.faq-item.open .faq-icon {
    background: var(--c-accent)
}

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

.faq-answer p {
    padding: 0 20px 18px;
    color: var(--c-text-muted);
    line-height: 1.7;
    font-size: .95rem
}

.faq-item.open .faq-answer {
    max-height: 400px
}

#sb-footer {
    background: var(--c-hdr);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 24px
}

.footer-inner {
    display: grid;
    grid-template-columns:200px 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px
}

.footer-logo img {
    height: 36px;
    width: auto;
    margin-bottom: 12px
}

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

.footer-col h4 {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.footer-col a {
    display: block;
    color: var(--c-text-muted);
    font-size: .85rem;
    margin-bottom: 8px
}

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

.footer-payments {
    margin-bottom: 24px
}

.footer-payments h4, .footer-providers h4 {
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.payment-icons, .provider-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.pay-badge, .prov-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .78rem;
    color: var(--c-text-muted);
    font-weight: 500;
    white-space: nowrap
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
    text-align: center
}

.footer-copyright {
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-bottom: 8px
}

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

.widget-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: linear-gradient(135deg, #0a0a14, var(--c-hdr));
    border-top: 1px solid rgba(179, 10, 215, .3);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5)
}

.widget-text {
    font-size: .85rem;
    color: var(--c-text-muted);
    flex: 1
}

.widget-text strong {
    color: #fff;
    display: block;
    font-size: .95rem
}

.widget-text span {
    color: var(--c-gold);
    font-size: .82rem
}

.widget-btn {
    background: var(--c-btn-reg);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
    display: inline-block
}

.widget-btn:hover {
    background: var(--c-accent2);
    text-decoration: none;
    color: #fff;
    box-shadow: 0 0 16px rgba(179, 10, 215, .5)
}

.widget-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    line-height: 1;
    transition: color .2s
}

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

body.widget-open {
    padding-bottom: 64px
}

.sldr-wrap {
    position: relative;
    overflow: hidden
}

.sldr-track {
    display: flex;
    transition: transform .4s ease
}

.sldr-slide {
    min-width: 100%;
    padding: 0 4px
}

.sldr-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

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

.sldr-dot.active {
    background: var(--c-accent)
}

.sldr-prev, .sldr-next {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .6);
    border: 1px solid var(--c-border);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1rem;
    transition: background .2s
}

.sldr-prev {
    left: 4px
}

.sldr-next {
    right: 4px
}

.sldr-prev:hover, .sldr-next:hover {
    background: var(--c-accent)
}

.nq8v2 {
    display: none !important
}

.wp-block-separator {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 20px 0
}

.elementor-hidden {
    display: none
}

.yoast-hidden {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.woocommerce-dummy {
    display: none;
    position: absolute;
    pointer-events: none
}

.wp-dummy-badge {
    display: none
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns:1fr 1fr
    }

    .footer-logo {
        grid-column: 1/-1
    }

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

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

    .sldr-dots {
        display: flex
    }

    .sldr-prev, .sldr-next {
        display: flex
    }

    .bonuses-sldr .bonuses-grid, .screenshots-sldr .screenshots-grid {
        display: flex
    }

    .toc-list li {
        width: 100%
    }

    .grid2, .grid3 {
        grid-template-columns:1fr
    }

    .hero-content {
        padding: 40px 16px
    }
}

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

    .burger {
        display: flex
    }

    .section {
        padding: 40px 0
    }

    .info-table td:first-child {
        width: 120px
    }

    .widget-bar {
        flex-wrap: wrap
    }

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

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

    .reel {
        width: 64px;
        height: 64px;
        font-size: 1.9rem
    }

    .header-actions .btn {
        padding: 7px 12px;
        font-size: .82rem
    }
}

@media (max-width: 900px) {
    .screenshots-sldr,
    .screenshots-sldr .sldr-track,
    .screenshots-sldr .sldr-slide {
        overflow: visible !important;
        transform: none !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .screenshots-sldr .screenshots-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    .screenshots-sldr .screenshots-grid img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 160px;
        object-fit: cover;
        border-radius: 14px;
    }

    .screenshots-sldr .sldr-prev,
    .screenshots-sldr .sldr-next,
    .screenshots-sldr .sldr-dots {
        display: none !important;
    }
}