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

:root {
    --clr-bg: #042522;
    --clr-hdr: #053029;
    --clr-btn-login: #013D33;
    --clr-btn-reg: #B30AD7;
    --clr-text: #e8f4f2;
    --clr-text-muted: #8fcfc4;
    --clr-accent: #0ff4c6;
    --clr-border: #0a5a4e;
    --clr-card: #063530;
    --clr-grad1: #031f1d;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45)
}

html {
    background: var(--clr-bg);
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: opacity .2s
}

a:hover {
    opacity: .8
}

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

.xw9k2 {
    display: none
}

.zp3m7 {
    visibility: hidden;
    position: absolute
}

.qq8r1 {
    display: none !important
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    border-radius: 8px;
    transition: transform .15s, box-shadow .15s, opacity .2s;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .3px
}

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

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

.btn--login {
    background: var(--clr-btn-login);
    color: #fff;
    padding: 9px 22px;
    font-size: .9rem;
    border: 1px solid #0a6b5a
}

.btn--reg {
    background: var(--clr-btn-reg);
    color: #fff;
    padding: 9px 22px;
    font-size: .9rem;
    box-shadow: 0 0 14px rgba(179, 10, 215, .35)
}

.btn--hero {
    background: var(--clr-btn-reg);
    color: #fff;
    padding: 15px 42px;
    font-size: 1.15rem;
    border-radius: 10px;
    box-shadow: 0 0 28px rgba(179, 10, 215, .5);
    animation: pulse-btn 2.2s infinite
}

.btn--download {
    background: var(--clr-btn-login);
    color: #fff;
    padding: 11px 24px;
    font-size: .9rem;
    border: 1px solid #0a6b5a;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn--win {
    background: var(--clr-btn-reg);
    color: #fff;
    padding: 12px 32px;
    font-size: 1rem;
    border-radius: 8px;
    margin-top: 16px;
    display: none
}

.btn--spin {
    background: linear-gradient(135deg, #013D33, #025e4c);
    color: #fff;
    padding: 13px 36px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid var(--clr-accent);
    box-shadow: 0 0 16px rgba(0, 255, 180, .2)
}

.btn--widget {
    background: var(--clr-btn-reg);
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(179, 10, 215, .5);
    animation: pulse-btn 2.2s infinite
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 0 20px rgba(179, 10, 215, .5)
    }
    50% {
        box-shadow: 0 0 36px rgba(179, 10, 215, .85)
    }
}

.wr9t3 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 18px
}

#hdr8k2 {
    background: var(--clr-hdr);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5)
}

.hdr-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 68px
}

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

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

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

.hdr-nav a {
    color: var(--clr-text);
    font-size: .88rem;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background .2s, color .2s
}

.hdr-nav a:hover {
    background: rgba(255, 255, 255, .07);
    color: var(--clr-accent)
}

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

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

.hdr-online span {
    color: #2ecc71;
    font-weight: 700
}

.hdr-online::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 6px #2ecc71;
    animation: blink 1.4s infinite
}

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    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: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--clr-hdr);
    padding: 16px 18px;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .4);
    z-index: 999
}

.mob-nav.open {
    display: flex
}

.mob-nav a {
    color: var(--clr-text);
    font-size: .95rem;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: background .2s
}

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

#hero-q7p {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/spinbetter-hero.jpg') center/cover no-repeat;
    filter: brightness(.45)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 37, 34, .92) 0%, rgba(179, 10, 215, .12) 100%)
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 60px 18px
}

.hero-content h1 {
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    text-wrap: balance;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6)
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    text-wrap: pretty
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(0, 255, 180, .25);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: .85rem;
    margin-bottom: 20px;
    color: var(--clr-accent)
}

.sec8j3 {
    padding: 64px 0
}

.sec-title {
    font-size: clamp(1.3rem, 3vw, 1.85rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-wrap: balance
}

.sec-sub {
    color: var(--clr-text-muted);
    font-size: .95rem;
    margin-bottom: 36px
}

.sec-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-btn-reg));
    border-radius: 2px;
    margin-bottom: 32px
}

.tbl-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius)
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card);
    border-radius: var(--radius);
    overflow: hidden
}

.info-table th, .info-table td {
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
    font-size: .92rem
}

.info-table th {
    background: rgba(5, 48, 41, .7);
    color: var(--clr-accent);
    font-weight: 600;
    width: 40%
}

.info-table td {
    color: var(--clr-text)
}

.info-table tr:last-child th, .info-table tr:last-child td {
    border-bottom: none
}

.info-table tr:hover td, .info-table tr:hover th {
    background: rgba(15, 244, 198, .04)
}

.winners-grid {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    padding: 12px 18px;
    transition: transform .2s, box-shadow .2s
}

.winner-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .3)
}

.winner-rank {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-accent);
    width: 32px;
    flex-shrink: 0;
    text-align: center
}

.winner-rank.gold {
    color: #f4c430
}

.winner-rank.silver {
    color: #c0c0c0
}

.winner-rank.bronze {
    color: #cd7f32
}

.winner-nick {
    flex: 1;
    font-weight: 600;
    color: #fff
}

.winner-game {
    font-size: .8rem;
    color: var(--clr-text-muted);
    flex: 1
}

.winner-sum {
    font-weight: 700;
    color: #2ecc71;
    white-space: nowrap
}

.app-block {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start
}

.app-info {
    flex: 1;
    min-width: 280px
}

.app-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px
}

.app-img-wrap {
    flex: 1;
    min-width: 240px;
    max-width: 380px
}

.app-img-wrap img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card);
    border-radius: var(--radius);
    overflow: hidden
}

.app-table th, .app-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--clr-border);
    font-size: .9rem;
    text-align: left
}

.app-table th {
    background: rgba(5, 48, 41, .6);
    color: var(--clr-accent);
    width: 45%
}

.app-table tr:last-child th, .app-table tr:last-child td {
    border-bottom: none
}

.yt-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: #000;
    box-shadow: var(--shadow)
}

.yt-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

.slot-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: var(--shadow)
}

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

.slot-sub {
    color: var(--clr-text-muted);
    font-size: .9rem;
    margin-bottom: 28px
}

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

.reel {
    width: 82px;
    height: 90px;
    background: rgba(255, 255, 255, .05);
    border: 2px solid var(--clr-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    overflow: hidden;
    transition: border-color .3s
}

.reel.spinning {
    border-color: var(--clr-accent);
    animation: reel-shake .1s infinite
}

@keyframes reel-shake {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-3px)
    }
}

.win-msg {
    display: none;
    background: linear-gradient(135deg, rgba(179, 10, 215, .2), rgba(0, 255, 180, .1));
    border: 1px solid var(--clr-accent);
    border-radius: 10px;
    padding: 18px;
    margin-top: 16px;
    animation: fadeIn .4s ease
}

.win-msg.show {
    display: block
}

.win-msg p {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff
}

.win-msg .win-bonus {
    font-size: 1.4rem;
    color: var(--clr-accent);
    font-weight: 700
}

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

.content-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 36px 40px;
    box-shadow: var(--shadow)
}

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

.content-block h3 {
    font-size: 1.2rem;
    color: var(--clr-accent);
    margin: 22px 0 10px
}

.content-block p {
    margin-bottom: 14px;
    color: var(--clr-text);
    line-height: 1.7
}

.content-block ul, .content-block ol {
    margin: 14px 0 14px 22px;
    color: var(--clr-text)
}

.content-block li {
    margin-bottom: 7px;
    line-height: 1.6
}

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

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0
}

.content-block table th, .content-block table td {
    padding: 11px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
    font-size: .9rem
}

.content-block table th {
    background: rgba(5, 48, 41, .6);
    color: var(--clr-accent)
}

.content-block img {
    border-radius: 8px;
    margin: 14px 0
}

.content-block blockquote {
    border-left: 4px solid var(--clr-accent);
    padding: 12px 18px;
    background: rgba(15, 244, 198, .06);
    border-radius: 0 8px 8px 0;
    margin: 18px 0
}

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

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

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    gap: 12px;
    transition: background .2s
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--clr-accent);
    font-size: 1.4rem;
    line-height: 1;
    transition: transform .3s;
    user-select: none
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s
}

.faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 22px 18px
}

.faq-a p {
    color: var(--clr-text-muted);
    line-height: 1.7
}

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

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

.author-info {
}

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

.author-desc {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.5
}

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

#ftr-n9q {
    background: var(--clr-hdr);
    padding: 48px 0 24px;
    margin-top: auto
}

.ftr-top {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-bottom: 36px
}

.ftr-brand {
    flex: 1;
    min-width: 220px
}

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

.ftr-desc {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.ftr-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px
}

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

.ftr-links a:hover {
    color: var(--clr-accent)
}

.ftr-nav-col {
    flex: 1;
    min-width: 160px
}

.ftr-nav-col h4 {
    color: #fff;
    font-size: .9rem;
    margin-bottom: 12px;
    font-weight: 600
}

.ftr-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    align-items: center
}

.ftr-logo-chip {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    font-weight: 600
}

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

.ftr-legal {
    font-size: .75rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.6;
    max-width: 680px
}

.ftr-copy {
    font-size: .75rem;
    color: rgba(255, 255, 255, .3)
}

#wgt-z2x {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: linear-gradient(90deg, #032820, #0a1f18);
    border-top: 1px solid rgba(179, 10, 215, .4);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

.wgt-text {
    font-size: .88rem;
    color: var(--clr-text);
    line-height: 1.4
}

.wgt-text strong {
    color: var(--clr-accent);
    display: block;
    font-size: 1rem
}

.wgt-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    font-size: 1.4rem;
    cursor: pointer;
    flex-shrink: 0;
    padding: 4px;
    line-height: 1;
    transition: color .2s
}

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

.gp8v {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.qr4t9-left {
    flex: 1
}

@media (max-width: 900px) {
    .hdr-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .mob-nav {
        display: none
    }

    #hdr8k2 {
        position: relative
    }

    .hdr-inner {
        position: relative
    }

    .app-block {
        flex-direction: column
    }

    .app-img-wrap {
        max-width: 100%
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.5rem
    }

    .btn--hero {
        padding: 13px 28px;
        font-size: 1rem
    }

    .slot-block {
        padding: 24px 16px
    }

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

    .content-block {
        padding: 22px 18px
    }

    .wgt-text strong {
        font-size: .9rem
    }

    #wgt-z2x {
        flex-wrap: wrap
    }

    .ftr-top {
        flex-direction: column
    }

    .author-box {
        flex-direction: column;
        text-align: center
    }
}

.wp-block-group {
    display: block
}

.entry-content {
    display: block
}

.elementor-widget-container {
    display: block
}

.woocommerce-notices-wrapper {
    display: none
}

#wpadminbar {
    display: none
}

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

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