:root {
    --c-bg: #042522;
    --c-hdr: #053029;
    --c-btn-login: #013D33;
    --c-btn-reg: #B30AD7;
    --c-text: #e8f5f2;
    --c-text-muted: #a0c4bc;
    --c-accent: #B30AD7;
    --c-border: #0d5c4a;
    --c-card: #063530;
    --c-gold: #f0c040;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --font: 'Open Sans', Arial, sans-serif;
    --transition: .25s ease
}

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

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

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden
}

a {
    color: var(--c-btn-login);
    text-decoration: none;
    transition: color var(--transition)
}

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

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

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    color: #fff
}

h3 {
    font-size: 1.15rem;
    color: #d4f0e8
}

p {
    margin-bottom: .75rem
}

.xb7k2m {
    display: none
}

.p9q3r1 {
    visibility: hidden;
    position: absolute
}

.z4w8n5 {
    width: 0;
    height: 0;
    overflow: hidden
}

.w-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem
}

.flex {
    display: flex
}

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

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.flex-col {
    display: flex;
    flex-direction: column
}

.gap-1 {
    gap: .5rem
}

.gap-2 {
    gap: 1rem
}

.gap-3 {
    gap: 1.5rem
}

.text-center {
    text-align: center
}

.mt-1 {
    margin-top: .5rem
}

.mt-2 {
    margin-top: 1rem
}

.mt-3 {
    margin-top: 1.5rem
}

.mb-2 {
    margin-bottom: 1rem
}

.mb-3 {
    margin-bottom: 1.5rem
}

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

.btn-login {
    background: var(--c-btn-login);
    color: #9efae8;
    border: 1px solid #1a6b58
}

.btn-login:hover {
    background: #025244;
    color: #fff;
    transform: translateY(-1px)
}

.btn-reg {
    background: var(--c-btn-reg);
    color: #fff;
    box-shadow: 0 0 18px rgba(179, 10, 215, .4)
}

.btn-reg:hover {
    background: #c50cf0;
    box-shadow: 0 0 28px rgba(179, 10, 215, .65);
    transform: translateY(-2px)
}

.btn-lg {
    padding: .8rem 2rem;
    font-size: 1.05rem
}

.btn-xl {
    padding: 1rem 2.4rem;
    font-size: 1.15rem;
    border-radius: 10px
}

.hdr {
    background: var(--c-hdr);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
    border-bottom: 1px solid #0a4a38
}

.hdr-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

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

.hdr-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.hdr-nav a {
    color: var(--c-text-muted);
    font-size: .9rem;
    font-weight: 500;
    transition: color var(--transition)
}

.hdr-nav a:hover {
    color: #fff
}

.hdr-actions {
    display: flex;
    align-items: center;
    gap: .6rem
}

.online-badge {
    background: rgba(0, 200, 100, .12);
    border: 1px solid rgba(0, 200, 100, .3);
    border-radius: 20px;
    padding: .25rem .7rem;
    font-size: .75rem;
    color: #4dffb0;
    display: flex;
    align-items: center;
    gap: .35rem
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

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

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--transition)
}

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

.burger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-hdr);
    z-index: 99;
    overflow-y: auto;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform var(--transition)
}

.mobile-menu.open {
    transform: translateX(0)
}

.mobile-menu a {
    color: var(--c-text);
    font-size: 1.1rem;
    padding: .65rem 0;
    border-bottom: 1px solid #0d5c4a
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 2.5rem
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 37, 34, .9) 0%, rgba(5, 48, 41, .6) 60%, rgba(179, 10, 215, .08) 100%);
    z-index: 1
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(179, 10, 215, .2);
    border: 1px solid rgba(179, 10, 215, .4);
    border-radius: 20px;
    padding: .35rem 1rem;
    font-size: .8rem;
    color: #e0b0f5;
    margin-bottom: 1.25rem
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.hero-sub {
    font-size: 1.05rem;
    color: #b8ddd6;
    margin-bottom: 1.8rem;
    line-height: 1.6
}

.hero-bonus {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(90deg, rgba(179, 10, 215, .25), rgba(1, 61, 51, .25));
    border: 1px solid rgba(179, 10, 215, .3);
    border-radius: var(--radius-sm);
    padding: .6rem 1.2rem;
    margin-bottom: 1.5rem;
    color: #f0c040;
    font-weight: 700;
    font-size: 1.1rem
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.section {
    padding: 2.5rem 0
}

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.85rem);
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: .75rem
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-btn-reg), var(--c-btn-login));
    border-radius: 2px
}

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

.card-purple {
    background: linear-gradient(135deg, #1a0a25, #0a1d1a);
    border-color: rgba(179, 10, 215, .3)
}

.card-gold {
    border-color: rgba(240, 192, 64, .2)
}

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

.tbl {
    width: 100%;
    border-collapse: collapse;
    min-width: 340px
}

.tbl th, .tbl td {
    padding: .8rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: .92rem
}

.tbl th {
    background: rgba(5, 48, 41, .8);
    color: #9efae8;
    font-weight: 600;
    white-space: nowrap
}

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

.tbl tr:hover td {
    background: rgba(13, 92, 74, .2)
}

.tbl td:first-child {
    color: var(--c-text-muted);
    width: 45%;
    font-weight: 500
}

.tbl td:last-child {
    color: #fff;
    font-weight: 600
}

.tbl-sm .tbl th, .tbl-sm .tbl td {
    padding: .6rem .85rem
}

.badge-val {
    display: inline-flex;
    align-items: center;
    background: rgba(179, 10, 215, .15);
    border: 1px solid rgba(179, 10, 215, .25);
    color: #e0b0f5;
    padding: .2rem .65rem;
    border-radius: 20px;
    font-size: .82rem
}

.adv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem
}

.adv-item {
    flex: 1 1 220px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform var(--transition), box-shadow var(--transition)
}

.adv-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.adv-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(179, 10, 215, .12);
    border-radius: var(--radius-sm)
}

.adv-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: .3rem;
    font-size: .95rem
}

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

.winners-grid {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.winner-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: .6rem 1rem;
    transition: background var(--transition)
}

.winner-item:hover {
    background: rgba(13, 92, 74, .25)
}

.winner-rank {
    width: 28px;
    text-align: center;
    font-weight: 700;
    font-size: .85rem;
    color: var(--c-text-muted);
    flex-shrink: 0
}

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

.winner-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
    color: #fff
}

.winner-name {
    flex: 1;
    font-size: .9rem;
    font-weight: 600;
    color: #d4f0e8
}

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

.winner-amount {
    font-weight: 700;
    color: var(--c-gold);
    white-space: nowrap;
    font-size: .95rem
}

.winners-cols {
    display: flex;
    gap: 1rem
}

.winners-col {
    flex: 1
}

.app-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.2rem
}

.app-btn {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: .7rem 1.4rem;
    text-decoration: none;
    transition: all var(--transition);
    min-width: 170px
}

.app-btn:hover {
    border-color: var(--c-accent);
    background: rgba(179, 10, 215, .1);
    transform: translateY(-2px)
}

.app-btn-icon {
    font-size: 1.8rem
}

.app-btn-text {
    display: flex;
    flex-direction: column
}

.app-btn-label {
    font-size: .7rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.app-btn-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff
}

.wheel-section {
    text-align: center
}

.wheel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem
}

.wheel-container {
    position: relative;
    width: 280px;
    height: 280px
}

.wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(179, 10, 215, .35);
    border: 4px solid rgba(179, 10, 215, .4)
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 26px solid var(--c-btn-reg);
    filter: drop-shadow(0 0 8px rgba(179, 10, 215, .8));
    z-index: 2
}

.wheel-spin-btn {
    min-width: 180px
}

.wheel-result {
    margin-top: 1rem;
    padding: 1.25rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    animation: fadeIn .5s ease
}

.wheel-result.win {
    background: linear-gradient(135deg, rgba(179, 10, 215, .2), rgba(1, 61, 51, .2));
    border: 1px solid rgba(179, 10, 215, .4)
}

.wheel-result.lose {
    background: rgba(13, 13, 13, .3);
    border: 1px solid #333
}

.wheel-result h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem
}

.wheel-result.win h3 {
    color: #e0b0f5
}

.wheel-result.lose h3 {
    color: var(--c-text-muted)
}

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

.review-block {
    padding: 2rem;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    margin-bottom: 2.5rem
}

.review-block h2,
.review-block h3,
.review-block h4 {
    color: #d4f0e8;
    margin: 1.25rem 0 .6rem;
    font-weight: 700
}

.review-block p {
    color: var(--c-text);
    margin-bottom: .85rem;
    line-height: 1.75
}

.review-block ul, .review-block ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--c-text)
}

.review-block li {
    margin-bottom: .4rem;
    line-height: 1.65
}

.review-block a {
    color: var(--c-accent)
}

.review-block strong {
    color: #fff
}

.review-block em {
    color: #b8ddd6
}

.review-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: .9rem
}

.review-block table th {
    background: rgba(5, 48, 41, .8);
    color: #9efae8;
    padding: .7rem .9rem;
    text-align: left;
    border: 1px solid var(--c-border)
}

.review-block table td {
    padding: .7rem .9rem;
    border: 1px solid var(--c-border);
    color: var(--c-text)
}

.review-block table tr:nth-child(even) td {
    background: rgba(13, 92, 74, .1)
}

.review-block blockquote {
    border-left: 3px solid var(--c-accent);
    padding: .5rem 1rem;
    color: var(--c-text-muted);
    font-style: italic;
    margin: 1rem 0;
    background: rgba(179, 10, 215, .05)
}

.review-block hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 1.5rem 0
}

.author-box {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(5, 48, 41, .5);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem
}

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

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

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

.author-bio a {
    color: var(--c-accent);
    font-size: .8rem
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

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

.faq-item.open {
    border-color: rgba(179, 10, 215, .4)
}

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

.faq-q:hover {
    color: #e0b0f5
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(179, 10, 215, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: transform var(--transition);
    color: var(--c-accent)
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
    color: var(--c-text-muted);
    font-size: .9rem;
    line-height: 1.7
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 1.25rem 1rem
}

.ftr {
    background: var(--c-hdr);
    border-top: 1px solid #0a4a38;
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem
}

.ftr-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2rem
}

.ftr-logo img {
    height: 40px;
    width: auto;
    opacity: .9;
    margin-bottom: .75rem
}

.ftr-desc {
    font-size: .82rem;
    color: var(--c-text-muted);
    max-width: 260px;
    line-height: 1.5
}

.ftr-col h4 {
    color: #9efae8;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: .75rem
}

.ftr-col a {
    display: block;
    color: var(--c-text-muted);
    font-size: .85rem;
    margin-bottom: .4rem;
    transition: color var(--transition)
}

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

.ftr-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    align-items: center;
    margin-bottom: 1rem
}

.ftr-logo-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: .35rem .75rem;
    font-size: .78rem;
    color: var(--c-text-muted);
    font-weight: 600;
    letter-spacing: .3px
}

.ftr-bottom {
    border-top: 1px solid #0a4a38;
    padding-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: space-between;
    align-items: flex-start
}

.ftr-legal {
    font-size: .75rem;
    color: #5a8c82;
    line-height: 1.6;
    max-width: 700px
}

.ftr-copy {
    font-size: .78rem;
    color: #5a8c82
}

.widget-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, #0a1d1a, #1a0a25);
    border-top: 2px solid var(--c-btn-reg);
    padding: .7rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

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

.widget-bonus {
    color: var(--c-gold);
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: .1rem
}

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

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

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

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

    .burger-btn {
        display: flex
    }

    .mobile-menu {
        display: flex
    }

    .winners-cols {
        flex-direction: column
    }

    .adv-item {
        flex: 1 1 180px
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 420px
    }

    .hero h1 {
        font-size: 1.6rem
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center
    }

    .app-btns {
        flex-direction: column
    }

    .app-btn {
        min-width: auto
    }

    .wheel-container {
        width: 240px;
        height: 240px
    }

    .wheel-canvas {
        width: 240px;
        height: 240px
    }

    .widget-bar {
        flex-wrap: wrap
    }

    .ftr-top {
        gap: 1.5rem
    }

    .ftr-bottom {
        flex-direction: column
    }
}

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

.m3n7p1 {
    display: block;
    font-size: 0;
    color: transparent
}
