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

:root {
    --bg: #1b1e26;
    --bg2: #222630;
    --bg3: #272c38;
    --accent: #a3f322;
    --accent2: #8fd41a;
    --dark: #141720;
    --text: #e6e9f4;
    --text2: #9aa0b8;
    --border: #2a2f3e;
    --radius: 12px;
    --radius2: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .4)
}

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

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

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

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

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

ul {
    list-style: none
}

.xf9k2 {
    display: none
}

.wp-block-dummy {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.xwrp {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.xrow {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.xcol {
    flex: 1;
    min-width: 0
}

/* =====  ===== */
.xhdr {
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5)
}

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

.xhdr-logo img {
    height: 40px;
    width: auto;
    border-radius: 6px;
    background-color: #9aa0b8;
}

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

.xhdr-nav a {
    color: var(--text2);
    font-size: .85rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color .2s, background .2s
}

.xhdr-nav a:hover {
    color: var(--text);
    background: var(--bg3)
}

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

.xonline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--text2);
    white-space: nowrap
}

.xonline-dot {
    width: 8px;
    height: 8px;
    background: #4cff7e;
    border-radius: 50%;
    animation: pulse 1.8s infinite
}

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

.xbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: var(--radius2);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, background .2s;
    border: none;
    text-decoration: none;
    white-space: nowrap
}

.xbtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .4)
}

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

.xbtn-dark {
    background: var(--bg3);
    color: var(--text);
    border: 1px solid var(--border)
}

.xbtn-dark:hover {
    background: var(--bg2)
}

.xbtn-accent {
    background: var(--accent);
    color: #111
}

.xbtn-accent:hover {
    background: var(--accent2);
    box-shadow: 0 4px 16px rgba(163, 243, 34, .35)
}

.xbtn-lg {
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 10px
}

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

.xburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

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

.xburger.active span:nth-child(2) {
    opacity: 0
}

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

.xmobile-nav {
    display: none;
    flex-direction: column;
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 16px;
    gap: 8px
}

.xmobile-nav a {
    color: var(--text2);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: .9rem;
    transition: background .2s, color .2s
}

.xmobile-nav a:hover {
    background: var(--bg3);
    color: var(--text)
}

.xmobile-nav.open {
    display: flex
}

/* =====  ===== */
.xhero {
    position: relative;
    overflow: hidden;
    height: 520px
}

.xhero-slides {
    display: flex;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    height: 100%
}

.xhero-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--dark)
}

.xhero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.5)
}

.xhero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 0 48px
}

.xhero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff
}

.xhero-content h1 span {
    color: var(--accent)
}

.xhero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px;
    max-width: 440px
}

.xhero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3
}

.xhero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: background .3s, transform .3s
}

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

.xhero-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.xhero-arr:hover {
    background: rgba(255, 255, 255, .2)
}

.xhero-arr-l {
    left: 16px
}

.xhero-arr-r {
    right: 16px
}

.xsec {
    padding: 60px 0
}

.xsec-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff
}

.xsec-sub {
    color: var(--text2);
    margin-bottom: 32px;
    font-size: .95rem
}

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

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

.xjp-card {
    background: linear-gradient(135deg, #1e2333 0%, #252c3d 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s
}

.xjp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(163, 243, 34, .15)
}

.xjp-card::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(163, 243, 34, .12) 0%, transparent 70%)
}

.xjp-icon {
    font-size: 2.4rem;
    margin-bottom: 12px
}

.xjp-label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text2);
    margin-bottom: 8px
}

.xjp-amt {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1
}

.xjp-name {
    font-size: .85rem;
    color: var(--text2);
    margin-top: 8px
}

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

.xss-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform .2s
}

.xss-item:hover {
    transform: scale(1.02)
}

.xss-item img {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.xss-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s
}

.xss-item:hover .xss-item-overlay {
    opacity: 1
}

.xss-item-overlay span {
    color: #fff;
    font-size: .9rem;
    font-weight: 600
}

.xwin-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.xwin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px
}

.xwin-table th {
    background: var(--bg3);
    padding: 12px 16px;
    text-align: left;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text2);
    font-weight: 600
}

.xwin-table td {
    padding: 11px 16px;
    border-top: 1px solid var(--border);
    font-size: .9rem;
    transition: background .15s
}

.xwin-table tr:hover td {
    background: var(--bg3)
}

.xwin-rank {
    font-weight: 700;
    color: var(--text2)
}

.xwin-rank.top {
    color: var(--accent)
}

.xwin-nick {
    font-weight: 500
}

.xwin-game {
    color: var(--text2);
    font-size: .82rem
}

.xwin-amt {
    font-weight: 700;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif
}


.xwheel-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px
}

.xwheel-box {
    position: relative;
    width: 320px;
    height: 320px
}

.xwheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(163, 243, 34, .2)
}

.xwheel-pin {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    z-index: 5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5))
}

.xwheel-result {
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.xwheel-result-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 10px;
    animation: fadeIn .4s ease
}

.xwheel-win {
    background: rgba(163, 243, 34, .15);
    border: 1px solid var(--accent);
    color: var(--accent)
}

.xwheel-lose {
    background: rgba(255, 60, 60, .1);
    border: 1px solid #f44;
    color: #f88
}

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

.xcontent-block {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 40px
}

.xcontent-block h2, .xcontent-block h3, .xcontent-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 12px;
    line-height: 1.3
}

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

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

.xcontent-block p {
    margin-bottom: 14px;
    color: var(--text);
    line-height: 1.75
}

.xcontent-block ul, .xcontent-block ol {
    margin: 0 0 16px 20px;
    color: var(--text)
}

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

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

.xcontent-block li {
    margin-bottom: 6px;
    line-height: 1.7
}

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

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

.xcontent-block th {
    background: var(--bg3);
    font-weight: 600
}

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

.xcontent-block strong {
    color: #fff;
    font-weight: 600
}

.xcontent-block blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 20px;
    margin: 16px 0;
    background: var(--bg3);
    border-radius: 0 8px 8px 0;
    color: var(--text2)
}

/**/
.xauthor {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px
}

.xauthor img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0
}

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

.xauthor-bio {
    font-size: .85rem;
    color: var(--text2);
    line-height: 1.5
}

.xauthor-link {
    font-size: .8rem;
    color: var(--accent);
    margin-top: 6px;
    display: inline-block
}

.xrev-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px
}

.xrev-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform .2s, box-shadow .2s
}

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

.xrev-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.xrev-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg3)
}

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

.xrev-stars {
    display: flex;
    gap: 2px;
    margin-top: 2px
}

.xrev-stars svg {
    width: 14px;
    height: 14px
}

.xrev-text {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.65
}

.xrev-form {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px
}

.xrev-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

.xfield {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px
}

.xfield label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text2)
}

.xfield input, .xfield textarea {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius2);
    padding: 10px 14px;
    color: var(--text);
    font-size: .9rem;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    resize: vertical
}

.xfield input:focus, .xfield textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(163, 243, 34, .12)
}

.xfield textarea {
    min-height: 100px
}

.xform-msg {
    display: none;
    background: rgba(163, 243, 34, .12);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: .9rem;
    margin-top: 12px
}

.xform-msg.show {
    display: block
}

/* =====  ===== */
.xfaq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius2);
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color .2s
}

.xfaq-item.open {
    border-color: var(--accent)
}

.xfaq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    color: var(--text);
    background: var(--bg2);
    transition: background .2s
}

.xfaq-q:hover {
    background: var(--bg3)
}

.xfaq-q span {
    font-size: 1.2rem;
    transition: transform .3s;
    color: var(--accent)
}

.xfaq-item.open .xfaq-q span {
    transform: rotate(45deg)
}

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

.xfaq-item.open .xfaq-a {
    max-height: 400px;
    padding: 16px 20px
}

.xfaq-a p {
    color: var(--text2);
    font-size: .9rem;
    line-height: 1.7
}

/* =====  ===== */
.xftr {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px
}

.xftr-top {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px
}

.xftr-logo img {
    height: 36px;
    width: auto;
    border-radius: 6px;
    margin-bottom: 12px;
    background-color: #9aa0b8;
}

.xftr-desc {
    font-size: .85rem;
    color: var(--text2);
    line-height: 1.6;
    max-width: 280px
}

.xftr-col h4 {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text2);
    margin-bottom: 14px;
    font-weight: 600
}

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

.xftr-col ul li a {
    color: var(--text2);
    font-size: .88rem;
    transition: color .2s
}

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

.xpay-logos, .xprov-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px
}

.xpay-badge, .xprov-badge {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .78rem;
    color: var(--text2);
    font-weight: 500
}

.xftr-bot {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center
}

.xftr-legal {
    font-size: .78rem;
    color: var(--text2);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 8px
}

.xftr-copy {
    font-size: .78rem;
    color: var(--text2)
}

.xwidget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, #1a1d25 0%, #1e2230 100%);
    border-top: 2px solid var(--accent);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

.xwidget-text {
    font-size: .9rem;
    color: var(--text2)
}

.xwidget-text strong {
    color: #fff;
    font-weight: 700
}

.xwidget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text2);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    transition: color .2s
}

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

.xreveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.xreveal.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width: 1024px) {
    .xjp-grid {
        grid-template-columns:repeat(3, 1fr);
        gap: 14px
    }

    .xhero-content {
        padding: 0 24px
    }

    .xhero-content h1 {
        font-size: 2rem
    }

    .xftr-top {
        grid-template-columns:1fr 1fr;
        gap: 24px
    }
}

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

    .xburger {
        display: flex
    }

    .xhero {
        height: 420px
    }

    .xhero-content h1 {
        font-size: 1.6rem
    }

    .xhero-content p {
        font-size: .9rem
    }

    .xhero-content {
        padding: 0 16px
    }

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

    .xss-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px
    }

    .xss-grid .xss-item {
        min-width: 260px
    }

    .xftr-top {
        grid-template-columns:1fr
    }

    .xcontent-block {
        padding: 20px
    }

    .xsec {
        padding: 40px 0
    }

    .xwheel-box {
        width: 280px;
        height: 280px
    }

    .xwheel-canvas {
        width: 280px;
        height: 280px
    }
}

@media (max-width: 480px) {
    .xhero {
        height: 380px
    }

    .xhero-content h1 {
        font-size: 1.4rem
    }

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

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

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

.xc7b1 {
    pointer-events: none;
    opacity: 0;
    position: absolute
}
