:root {
    --c-bg: #042522;
    --c-hdr: #053029;
    --c-btn-login: #013D33;
    --c-btn-reg: #B30AD7;
    --c-text: #e8f0ee;
    --c-text-muted: #9bb8b2;
    --c-border: #0a4a3a;
    --c-card: #061e1b;
    --c-card2: #07271f;
    --c-accent: #B30AD7;
    --c-gold: #f0c040;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .4);
    --trans: .22s 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: 'Open Sans', 'Roboto', Arial, sans-serif;
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased
}

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

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

a:hover {
    color: #d08aff
}

h1, h2, h3, h4, h5 {
    line-height: 1.25;
    color: #fff
}

.z9x2k {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.q7r3m {
    display: grid
}

.v4t8n {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease
}

.v4t8n.visible {
    opacity: 1;
    transform: none
}

.hdr-root {
    background: var(--c-hdr);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.hdr-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.hdr-logo img {
    height: 48px;
    width: auto
}

.hdr-nav {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap
}

.hdr-nav a {
    color: var(--c-text-muted);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color var(--trans);
    padding: 4px 0;
    border-bottom: 2px solid transparent
}

.hdr-nav a:hover {
    color: #fff;
    border-bottom-color: var(--c-accent)
}

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

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

.hdr-online span.dot {
    width: 8px;
    height: 8px;
    background: #3de87a;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.8s infinite
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(61, 232, 122, .4)
    }
    50% {
        box-shadow: 0 0 0 6px rgba(61, 232, 122, 0)
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    border: none;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    white-space: nowrap;
    letter-spacing: .3px
}

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

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

.btn-login {
    background: var(--c-btn-login);
    color: #a8ffdc
}

.btn-login:hover {
    filter: brightness(1.2);
    color: #a8ffdc
}

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

.btn-reg:hover {
    filter: brightness(1.15)
}

.btn-bonus {
    background: linear-gradient(135deg, #9b00be, #d400ff);
    color: #fff
}

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

.btn-sm {
    padding: 7px 14px;
    font-size: .82rem
}

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

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

.burger-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

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

.burger-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mob-nav {
    display: none;
    background: var(--c-hdr);
    padding: 16px 20px;
    border-top: 1px solid var(--c-border);
    flex-direction: column;
    gap: 12px
}

.mob-nav.open {
    display: flex
}

.mob-nav a {
    color: var(--c-text-muted);
    font-size: .95rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--c-border)
}

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

.hero-root {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    align-items: center
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 20px;
    margin: 0 auto
}

.hero-badge {
    display: inline-block;
    background: rgba(179, 10, 215, .25);
    border: 1px solid var(--c-accent);
    color: #e0a0ff;
    font-size: .8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: .5px
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6)
}

.hero-content p {
    font-size: 1.05rem;
    color: #c8e8e0;
    margin-bottom: 28px;
    line-height: 1.7
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px
}

.hero-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a8e8d0;
    font-size: .87rem;
    font-weight: 600
}

.hero-perk::before {
    content: '✓';
    color: #3de87a;
    font-weight: 800;
    font-size: 1rem
}

.sec {
    padding: 60px 0
}

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

.sec-sub {
    color: var(--c-text-muted);
    font-size: .9rem;
    margin-bottom: 32px
}

.sec-head {
    margin-bottom: 32px
}

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

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.card2 {
    background: var(--c-card2);
    border-radius: var(--radius);
    border: 1px solid rgba(179, 10, 215, .2)
}

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

.slide-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0
}

.slide-item-cap {
    padding: 14px;
    font-size: .88rem;
    color: var(--c-text-muted)
}

.winners-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

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

.winners-table th {
    background: #062d28;
    color: var(--c-text-muted);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid var(--c-border)
}

.winners-table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(10, 74, 58, .5);
    font-size: .9rem;
    vertical-align: middle
}

.winners-table tr:hover td {
    background: rgba(179, 10, 215, .06)
}

.wr-pos {
    font-weight: 700;
    color: var(--c-text-muted);
    width: 42px
}

.wr-pos.gold {
    color: var(--c-gold)
}

.wr-pos.silver {
    color: #bdc3c7
}

.wr-pos.bronze {
    color: #cd7f32
}

.wr-nick {
    font-weight: 600;
    color: #d4f0e8
}

.wr-sum {
    font-weight: 700;
    color: #3de87a;
    text-align: right
}

.wr-time {
    color: var(--c-text-muted);
    font-size: .8rem
}

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

.tourn-card {
    background: linear-gradient(145deg, #071e1b, #0b2d28);
    border: 1px solid rgba(179, 10, 215, .25);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--trans), box-shadow var(--trans)
}

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

.tourn-badge {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--c-accent);
    background: rgba(179, 10, 215, .12);
    padding: 3px 10px;
    border-radius: 20px;
    align-self: flex-start
}

.tourn-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff
}

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

.tourn-prize {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--c-gold)
}

.tourn-prize-label {
    font-size: .75rem;
    color: var(--c-text-muted);
    margin-top: -8px
}

.tourn-timer {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap
}

.timer-unit {
    background: #062d28;
    border-radius: 6px;
    padding: 6px 10px;
    text-align: center;
    min-width: 46px
}

.timer-unit span:first-child {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.timer-unit span:last-child {
    font-size: .65rem;
    color: var(--c-text-muted);
    letter-spacing: .4px
}

.timer-sep {
    color: var(--c-text-muted);
    font-size: 1.1rem;
    margin-top: -4px
}

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

.bonus-card {
    background: linear-gradient(160deg, #071e1b, #0d2e24);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans)
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(179, 10, 215, .2) 0%, transparent 70%);
    pointer-events: none
}

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

.bonus-icon {
    font-size: 2rem;
    line-height: 1
}

.bonus-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff
}

.bonus-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-accent)
}

.bonus-desc {
    font-size: .84rem;
    color: var(--c-text-muted);
    line-height: 1.6
}

.slot-root {
    background: linear-gradient(160deg, #062522, #091f1c);
    border: 1px solid rgba(179, 10, 215, .3);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    max-width: 540px;
    margin: 0 auto
}

.slot-title-sm {
    color: var(--c-text-muted);
    font-size: .85rem;
    margin-bottom: 16px;
    letter-spacing: .4px;
    text-transform: uppercase
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px
}

.slot-reel {
    width: 80px;
    height: 100px;
    background: #041810;
    border: 2px solid var(--c-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    overflow: hidden;
    position: relative
}

.slot-reel.spinning {
    animation: reelspin .12s steps(1) infinite
}

@keyframes reelspin {
    0% {
        filter: blur(1px)
    }
    100% {
        filter: blur(0)
    }
}

.slot-result {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px
}

.slot-win-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #3de87a;
    display: none
}

.slot-lose-text {
    font-size: 1rem;
    color: var(--c-text-muted);
    display: none
}

.slot-win-text.show, .slot-lose-text.show {
    display: block
}

.slot-spin-btn {
    background: linear-gradient(135deg, var(--c-btn-reg), #9b00be);
    color: #fff;
    padding: 14px 40px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform .15s, filter .15s;
    letter-spacing: .5px
}

.slot-spin-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    filter: brightness(1.15)
}

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

.slot-get-btn {
    background: var(--c-btn-reg);
    color: #fff;
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform .15s;
    display: none;
    margin-top: 6px
}

.slot-get-btn.show {
    display: inline-flex
}

.slot-get-btn:hover {
    transform: translateY(-2px)
}

.review-root {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 36px 32px
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--c-border)
}

.review-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #013D33, #B30AD7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

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

.review-author-info .role {
    font-size: .82rem;
    color: var(--c-text-muted);
    margin-top: 2px
}

.review-author-info a {
    color: #a0d8f0;
    font-size: .82rem
}

.review-content h2, .review-content h3, .review-content h4 {
    color: #fff;
    margin: 24px 0 10px
}

.review-content p {
    color: var(--c-text-muted);
    margin-bottom: 14px;
    line-height: 1.75
}

.review-content ul, .review-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
    color: var(--c-text-muted)
}

.review-content li {
    margin-bottom: 6px;
    line-height: 1.65
}

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

.review-content table th {
    background: #062d28;
    color: #a8d8d0;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-size: .85rem
}

.review-content table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    font-size: .88rem
}

.review-content table tr:hover td {
    background: rgba(179, 10, 215, .05)
}

.review-content a {
    color: #a0d8f0
}

.review-content strong, .review-content b {
    color: #c8e8e0
}

.review-content blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 18px;
    color: var(--c-text-muted);
    font-style: italic;
    background: rgba(179, 10, 215, .06);
    border-radius: 0 8px 8px 0;
    margin: 16px 0
}

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

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

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 16px 20px;
    font-size: .95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .2s
}

.faq-q:hover {
    background: rgba(179, 10, 215, .08)
}

.faq-q .faq-icon {
    transition: transform .3s;
    color: var(--c-accent);
    font-size: 1.1rem
}

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

.faq-a {
    display: none;
    padding: 0 20px 16px;
    color: var(--c-text-muted);
    font-size: .9rem;
    line-height: 1.75
}

.faq-item.open .faq-a {
    display: block
}

.ftr-root {
    background: var(--c-hdr);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 24px
}

.ftr-grid {
    display: grid;
    grid-template-columns:auto 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px
}

.ftr-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 14px
}

.ftr-about {
    color: var(--c-text-muted);
    font-size: .84rem;
    line-height: 1.7;
    max-width: 240px
}

.ftr-nav-title {
    font-weight: 700;
    color: #fff;
    font-size: .9rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.ftr-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ftr-nav-list a {
    color: var(--c-text-muted);
    font-size: .85rem;
    transition: color var(--trans)
}

.ftr-nav-list a:hover {
    color: #fff
}

.ftr-pay-title, .ftr-prov-title {
    font-weight: 700;
    color: #fff;
    font-size: .85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.ftr-pay-logos, .ftr-prov-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px
}

.pay-badge, .prov-badge {
    background: #062d28;
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .76rem;
    font-weight: 600;
    color: var(--c-text-muted);
    white-space: nowrap
}

.ftr-legal {
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
    color: #5a7a74;
    font-size: .78rem;
    line-height: 1.65;
    text-align: center
}

.ftr-legal a {
    color: #6a9a94
}

.ftr-copy {
    text-align: center;
    color: #4a6a64;
    font-size: .78rem;
    margin-top: 10px
}

.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #0a2822, #1a0428);
    border-top: 2px solid var(--c-accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

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

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

.widget-bonus {
    font-size: .82rem;
    color: #d4a8ff;
    font-weight: 600
}

.widget-btn {
    background: var(--c-btn-reg);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .95rem;
    white-space: nowrap;
    transition: filter .2s, transform .2s;
    text-decoration: none
}

.widget-btn:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    color: #fff
}

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

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

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

.slider-track {
    display: grid;
    transition: transform .4s ease
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px
}

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

.slider-dot.active {
    background: var(--c-accent);
    transform: scale(1.3)
}

.s8f2p {
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #B30AD7, #3de87a);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: width .2s
}

.e4r7q {
    display: none
}

.p3n9x {
    display: none
}

.w2m6v {
    display: none
}

.m1k5j {
    background: transparent;
    border: 1px solid rgba(179, 10, 215, .1);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: .7rem;
    color: rgba(179, 10, 215, .3)
}

.rating-crown {
    color: var(--c-gold);
    font-size: 1rem
}

@media (max-width: 768px) {
    .hdr-inner {
        grid-template-columns:auto auto;
        padding: 10px 16px
    }

    .hdr-nav {
        display: none
    }

    .burger-btn {
        display: flex
    }

    .slides-grid, .tourn-grid, .bonus-grid {
        grid-template-columns:1fr
    }

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

    .ftr-grid > :first-child {
        grid-column: 1/-1
    }

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

    .review-root {
        padding: 24px 18px
    }

    .bottom-widget {
        flex-wrap: wrap;
        gap: 10px
    }

    .bottom-widget .widget-text {
        flex: 1
    }

    .hdr-actions {
        gap: 8px
    }

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

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

    .sec {
        padding: 40px 0
    }

    .tourn-card {
        padding: 16px
    }

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

@media (max-width: 480px) {
    .ftr-grid {
        grid-template-columns:1fr
    }

    .bottom-widget .widget-btn {
        width: 100%;
        text-align: center
    }

    .hero-cta {
        flex-direction: column
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center
    }

    .slot-reels {
        gap: 6px
    }

    .slot-reel {
        width: 58px;
        height: 74px;
        font-size: 1.7rem
    }
}
