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

:root {
    --c-bg: #0a0a0a;
    --c-header: #000000;
    --c-accent: #CBFD66;
    --c-accent-dark: #b5e85a;
    --c-btn-dark: #202020;
    --c-white: #ffffff;
    --c-gray: #b0b0b0;
    --c-card: #131313;
    --c-card2: #1a1a1a;
    --c-border: #2a2a2a;
    --c-danger: #e74c3c;
    --radius: 14px;
    --radius-sm: 8px;
    --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
    --font-main: 'Montserrat', 'Inter', Arial, sans-serif;
}

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

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

body {
    font-family: var(--font-main);
    background: var(--c-bg);
    color: var(--c-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
    list-style: none;
}

.xk4m2-wrap {
    width: 100%;
}

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

.w5t1v-grid {
    display: grid;
}

.j3n8q-block {
    position: relative;
}

/* ========== HEADER ========== */
.hdr-x9m2 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-header);
    border-bottom: 1px solid #1c1c1c;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .7);
}

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

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

.hdr-logo img {
    height: 44px;
    width: auto;
    border-radius: 6px;
    background-color: #4ade80;

}

.hdr-nav ul {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: nowrap;
}

.hdr-nav ul li a {
    color: #d0d0d0;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.hdr-nav ul li a:hover {
    background: #1e1e1e;
    color: var(--c-accent);
}

.hdr-online {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--c-gray);
    white-space: nowrap;
}

.hdr-online-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .7;
        transform: scale(1.3);
    }
}

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

/* ========== BUTTONS ========== */
.btn-xp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn-xp:active {
    transform: scale(.96);
}

.btn-login {
    background: var(--c-btn-dark);
    color: var(--c-white);
    padding: 10px 20px;
    border: 1px solid #3a3a3a;
}

.btn-login:hover {
    background: #2e2e2e;
    color: var(--c-white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
}

.btn-signup {
    background: var(--c-accent);
    color: #000000;
    padding: 10px 22px;
}

.btn-signup:hover {
    background: var(--c-accent-dark);
    color: #000;
    box-shadow: 0 4px 20px rgba(203, 253, 102, .35);
    transform: translateY(-1px);
}

.btn-lg {
    font-size: 17px;
    padding: 16px 38px;
    border-radius: var(--radius);
}

.btn-lg.btn-signup {
    font-size: 17px;
    letter-spacing: .3px;
}

/* ========== BURGER ========== */
.hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.hdr-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

.hdr-burger.is-active span:nth-child(2) {
    opacity: 0;
}

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

/* ========== MOBILE NAV ========== */
.hdr-mobile-nav {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: #050505;
    border-bottom: 1px solid #222;
    padding: 18px 20px 24px;
    z-index: 999;
    flex-direction: column;
    gap: 8px;
    animation: slideDown .22s ease;
}

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

.hdr-mobile-nav.is-open {
    display: flex;
}

.hdr-mobile-nav a {
    color: #ccc;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.hdr-mobile-nav a:hover {
    background: #1a1a1a;
    color: var(--c-accent);
}

.hdr-mobile-nav-divider {
    height: 1px;
    background: #222;
    margin: 6px 0;
}

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

.hero-q7w3-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-banner.png');
    background-size: cover;
    background-position: center;
    filter: brightness(.45);
    transform: scale(1.04);
    transition: transform 8s ease;
}

.hero-q7w3:hover .hero-q7w3-bg {
    transform: scale(1.07);
}

.hero-q7w3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .82) 0%, rgba(10, 10, 10, .5) 60%, rgba(203, 253, 102, .04) 100%);
}

.hero-q7w3-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
    animation: fadeInUp .7s ease both;
}

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

.hero-q7w3-badge {
    display: inline-block;
    background: var(--c-accent);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.hero-q7w3 h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.13;
    margin-bottom: 20px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .6);
}

.hero-q7w3 h1 em {
    color: var(--c-accent);
    font-style: normal;
}

.hero-q7w3-desc {
    font-size: 17px;
    color: #d0d0d0;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-q7w3-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-q7w3-note {
    font-size: 13px;
    color: #888;
    margin-top: 16px;
}

/* ========== SECTION ========== */
.sec-m4x9 {
    padding: 72px 0 56px;
}

.sec-m4x9-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.sec-m4x9-title span {
    color: var(--c-accent);
}

.sec-m4x9-sub {
    color: var(--c-gray);
    font-size: 15px;
    margin-bottom: 44px;
}

.sec-m4x9-head {
    margin-bottom: 44px;
}

/* ========== ADVANTAGES ========== */
.adv-r6k1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.adv-r6k1-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.adv-r6k1-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-accent);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.adv-r6k1-card:hover {
    transform: translateY(-4px);
    border-color: #3a3a3a;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
}

.adv-r6k1-card:hover::before {
    transform: scaleX(1);
}

.adv-r6k1-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.adv-r6k1-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--c-white);
}

.adv-r6k1-card p {
    font-size: 14px;
    color: var(--c-gray);
    line-height: 1.6;
}

/* ========== JACKPOTS ========== */
.jackpots-v2n5 {
    background: linear-gradient(135deg, #0d0d0d 0%, #111 50%, #0a0a0a 100%);
    border: 1px solid #1e1e1e;
    border-radius: 20px;
    margin: 0 20px;
    padding: 52px 40px;
    position: relative;
    overflow: hidden;
}

.jackpots-v2n5::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(203, 253, 102, .08) 0%, transparent 70%);
    pointer-events: none;
}

.jackpots-v2n5-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.jackpots-v2n5-item {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.jackpots-v2n5-item:hover {
    border-color: rgba(203, 253, 102, .4);
    box-shadow: 0 0 30px rgba(203, 253, 102, .08);
}

.jackpots-v2n5-item-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.jackpots-v2n5-amount {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: var(--c-accent);
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
    animation: countPulse 3s infinite;
}

@keyframes countPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(203, 253, 102, .3);
    }
    50% {
        text-shadow: 0 0 22px rgba(203, 253, 102, .6);
    }
}

.jackpots-v2n5-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-white);
    margin-top: 8px;
}

.jackpots-v2n5-item-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-accent);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .8px;
    white-space: nowrap;
}

/* ========== TOURNAMENTS ========== */
.tourn-h8p3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

.tourn-h8p3-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .55);
}

.tourn-h8p3-card-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    padding: 22px 22px 18px;
    border-bottom: 1px solid var(--c-border);
}

.tourn-h8p3-card-badge {
    display: inline-block;
    background: rgba(203, 253, 102, .15);
    color: var(--c-accent);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(203, 253, 102, .3);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.tourn-h8p3-card-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--c-white);
}

.tourn-h8p3-card-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.55;
}

.tourn-h8p3-card-body {
    padding: 20px 22px;
}

.tourn-h8p3-prize-label {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 600;
}

.tourn-h8p3-prize {
    font-size: 22px;
    font-weight: 900;
    color: var(--c-accent);
    margin-bottom: 16px;
}

.tourn-h8p3-timer {
    background: #111;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 18px;
    border: 1px solid #222;
}

.tourn-h8p3-timer-val {
    font-weight: 700;
    color: var(--c-white);
    font-variant-numeric: tabular-nums;
}

.tourn-h8p3-timer-icon {
    font-size: 16px;
}

/* ========== WHEEL ========== */
.wheel-g5n2 {
    background: linear-gradient(180deg, #0d0d0d 0%, #111 100%);
    border: 1px solid #1e1e1e;
    border-radius: 20px;
    margin: 0 20px;
    padding: 56px 40px;
}

.wheel-g5n2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wheel-g5n2-canvas-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-g5n2-canvas-wrap::before {
    content: '▼';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--c-accent);
    font-size: 28px;
    filter: drop-shadow(0 2px 8px rgba(203, 253, 102, .5));
    z-index: 2;
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(203, 253, 102, .18), 0 0 80px rgba(0, 0, 0, .7);
    cursor: pointer;
}

.wheel-g5n2-info {
}

.wheel-g5n2-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

.wheel-g5n2-title span {
    color: var(--c-accent);
}

.wheel-g5n2-desc {
    color: var(--c-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.wheel-g5n2-btn {
    font-size: 16px;
    padding: 14px 36px;
    width: 100%;
}

.wheel-g5n2-result {
    margin-top: 22px;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    padding: 22px;
    text-align: center;
    display: none;
    animation: fadeInUp .35s ease;
}

.wheel-g5n2-result.is-win {
    border-color: rgba(203, 253, 102, .4);
}

.wheel-g5n2-result.is-lose {
    border-color: #2a2a2a;
}

.wheel-g5n2-result-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.wheel-g5n2-result.is-win .wheel-g5n2-result-title {
    color: var(--c-accent);
}

.wheel-g5n2-result.is-lose .wheel-g5n2-result-title {
    color: #888;
}

.wheel-g5n2-result-text {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 18px;
}

.wheel-g5n2-result-btn {
    display: inline-flex;
}

/* ========== CONTENT / REVIEW BLOCK ========== */
.review-content-q1z9 {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 40px 48px;
    margin: 0 20px;
}

.review-content-q1z9 h1,
.review-content-q1z9 h2,
.review-content-q1z9 h3,
.review-content-q1z9 h4 {
    color: var(--c-white);
    font-weight: 700;
    line-height: 1.25;
    margin-top: 28px;
    margin-bottom: 12px;
}

.review-content-q1z9 h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.review-content-q1z9 h2 {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

.review-content-q1z9 h3 {
    font-size: 1.2rem;
}

.review-content-q1z9 p {
    color: #c8c8c8;
    font-size: 15px;
    line-height: 1.78;
    margin-bottom: 16px;
}

.review-content-q1z9 ul,
.review-content-q1z9 ol {
    margin: 16px 0 20px 24px;
    list-style: disc;
}

.review-content-q1z9 ol {
    list-style: decimal;
}

.review-content-q1z9 li {
    color: #c0c0c0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.review-content-q1z9 table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px auto;
    font-size: 14px;
    overflow-x: auto;
    display: block;
}

.review-content-q1z9 table th,
.review-content-q1z9 table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #2a2a2a;
}

.review-content-q1z9 table th {
    background: #1a1a1a;
    color: var(--c-accent);
    font-weight: 700;
}

.review-content-q1z9 table td {
    color: #bbb;
}

.review-content-q1z9 table tr:nth-child(even) td {
    background: #111;
}

.review-content-q1z9 strong {
    color: var(--c-white);
    font-weight: 700;
}

.review-content-q1z9 em {
    color: var(--c-accent);
    font-style: normal;
}

.review-content-q1z9 a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.review-content-q1z9 blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 12px 20px;
    margin: 20px 0;
    background: #111;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #bbb;
    font-style: italic;
}

/* ========== AUTHOR ========== */
.author-m3t7 {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #111;
    border: 1px solid #222;
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 0 20px;
}

.author-m3t7-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #222;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--c-accent);
    border: 2px solid var(--c-accent);
}

.author-m3t7-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-m3t7-role {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    line-height: 1.5;
}

.author-m3t7-link {
    font-size: 13px;
    color: var(--c-accent);
}

.author-m3t7-link:hover {
    text-decoration: underline;
}

/* ========== REVIEWS ========== */
.reviews-f4d8-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}

.reviews-f4d8-card {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 26px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.reviews-f4d8-card:hover {
    border-color: #383838;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .45);
}

.reviews-f4d8-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.reviews-f4d8-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #2a2a2a;
    overflow: hidden;
    flex-shrink: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-accent);
    border: 1.5px solid #333;
}

.reviews-f4d8-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.reviews-f4d8-stars {
    display: flex;
    gap: 2px;
}

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

.reviews-f4d8-text {
    font-size: 14px;
    color: #bbb;
    line-height: 1.65;
}

/* ========== REVIEW FORM ========== */
.review-form-c9k2 {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 36px 40px;
}

.review-form-c9k2 h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-field-xp {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-field-xp label {
    font-size: 13px;
    font-weight: 600;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.form-field-xp input,
.form-field-xp textarea {
    background: #111;
    border: 1px solid #2e2e2e;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--c-white);
    font-family: var(--font-main);
    font-size: 15px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form-field-xp input:focus,
.form-field-xp textarea:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(203, 253, 102, .12);
}

.form-field-xp textarea {
    min-height: 100px;
    resize: vertical;
}

.form-success-msg {
    display: none;
    background: rgba(74, 222, 128, .1);
    border: 1px solid rgba(74, 222, 128, .3);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: #4ade80;
    font-size: 15px;
    font-weight: 600;
    margin-top: 16px;
    text-align: center;
    animation: fadeInUp .3s ease;
}

/* ========== FAQ ========== */
.faq-k7m2-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-k7m2-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--c-white);
    transition: background var(--transition);
    user-select: none;
}

.faq-k7m2-q:hover {
    background: #181818;
}

.faq-k7m2-icon {
    font-size: 20px;
    color: var(--c-accent);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 12px;
}

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

.faq-k7m2-a {
    display: none;
    padding: 0 22px 18px;
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    border-top: 1px solid #1e1e1e;
    padding-top: 16px;
}

.faq-k7m2-item.is-open .faq-k7m2-a {
    display: block;
}

/* ========== FOOTER ========== */
.ftr-z3n8 {
    background: var(--c-header);
    border-top: 1px solid #1c1c1c;
    padding: 56px 0 0;
}

.ftr-z3n8-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 44px;
}

.ftr-z3n8-logo {
    margin-bottom: 14px;
}

.ftr-z3n8-logo img {
    height: 40px;
    border-radius: 6px;
    background-color: #4ade80;

}

.ftr-z3n8-about {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    max-width: 320px;
}

.ftr-z3n8-col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #777;
    margin-bottom: 16px;
}

.ftr-z3n8-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ftr-z3n8-links a {
    font-size: 14px;
    color: #999;
    transition: color var(--transition);
}

.ftr-z3n8-links a:hover {
    color: var(--c-accent);
}

.ftr-z3n8-payments, .ftr-z3n8-providers {
    padding: 28px 0;
    border-top: 1px solid #1c1c1c;
    border-bottom: 1px solid #1c1c1c;
    margin-bottom: 28px;
}

.ftr-z3n8-payments-title, .ftr-z3n8-providers-title {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    font-weight: 600;
}

.ftr-z3n8-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.ftr-z3n8-logo-badge {
    background: #141414;
    border: 1px solid #252525;
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    letter-spacing: .4px;
    transition: border-color var(--transition), color var(--transition);
}

.ftr-z3n8-logo-badge:hover {
    border-color: #3a3a3a;
    color: #bbb;
}

.ftr-z3n8-bottom {
    background: #030303;
    padding: 22px 0;
}

.ftr-z3n8-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.ftr-z3n8-copy {
    font-size: 12px;
    color: #555;
    line-height: 1.7;
    max-width: 640px;
}

.ftr-z3n8-legal {
    font-size: 11px;
    color: #444;
    margin-top: 6px;
    line-height: 1.6;
}

.ftr-z3n8-license {
    font-size: 11px;
    color: #555;
    background: #0d0d0d;
    border: 1px solid #1e1e1e;
    border-radius: 6px;
    padding: 10px 16px;
    white-space: nowrap;
    align-self: flex-start;
}

/* ========== STICKY WIDGET ========== */
.widget-n7p3 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: linear-gradient(90deg, #0d0d0d 0%, #111 50%, #0d0d0d 100%);
    border-top: 1px solid #252525;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .6);
}

.widget-n7p3-text {
    font-size: 14px;
    color: #bbb;
    font-weight: 500;
}

.widget-n7p3-text strong {
    color: var(--c-accent);
}

.widget-n7p3-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #555;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition);
    line-height: 1;
}

.widget-n7p3-close:hover {
    color: #999;
}

/* ========== DIVIDERS ========== */
.sec-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #252525, transparent);
    margin: 0 20px;
}

/* ========== UNUSED (uniquification) ========== */
.wp-block-group__inner-container {
    display: flex;
}

.elementor-widget-wrap {
    position: relative;
}

.wp-block-cover__inner-container {
    max-width: 100%;
}

.p6c4z-unused {
    visibility: hidden;
    pointer-events: none;
    position: absolute;
}

.m2h7d-ghost {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.r9q5x-void {
    display: none !important;
}

.e2f8g-noop {
    font-size: 0;
}

.k3v7l-skip {
    width: 0;
    height: 0;
    overflow: hidden;
}

.wp-caption {
    padding: 0;
}

.wp-smiley {
    margin: 0;
}

.sticky {
    position: static;
}

.bypostauthor {
    opacity: 1;
}

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .adv-r6k1-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ftr-z3n8-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hdr-x9m2-inner {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        padding: 12px 16px;
    }

    .hdr-nav {
        display: none;
    }

    .hdr-online {
        display: none;
    }

    .hdr-burger {
        display: flex;
    }

    .hero-q7w3 {
        min-height: 440px;
    }

    .hero-q7w3-desc {
        font-size: 15px;
    }

    .adv-r6k1-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .jackpots-v2n5 {
        margin: 0;
        padding: 36px 20px;
    }

    .jackpots-v2n5-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tourn-h8p3-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .tourn-h8p3-grid::-webkit-scrollbar {
        height: 4px;
    }

    .tourn-h8p3-grid::-webkit-scrollbar-track {
        background: #111;
    }

    .tourn-h8p3-grid::-webkit-scrollbar-thumb {
        background: #333;
        border-radius: 2px;
    }

    .tourn-h8p3-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .wheel-g5n2 {
        margin: 0;
        padding: 36px 20px;
    }

    .wheel-g5n2-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    #wheel-canvas {
        width: 240px !important;
        height: 240px !important;
    }

    .review-content-q1z9 {
        margin: 0;
        padding: 24px 20px;
    }

    .reviews-f4d8-grid {
        grid-template-columns: 1fr;
    }

    .review-form-c9k2 {
        padding: 26px 20px;
    }

    .author-m3t7 {
        margin: 0;
    }

    .ftr-z3n8-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ftr-z3n8-bottom-inner {
        flex-direction: column;
    }

    .widget-n7p3 {
        padding: 10px 16px;
        gap: 12px;
    }

    .widget-n7p3-text {
        font-size: 12px;
    }

    .sec-divider {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .b7r9p-cont {
        padding: 0 14px;
    }

    .adv-r6k1-grid {
        grid-template-columns: 1fr;
    }

    .hdr-btns .btn-login {
        display: none;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }

    .jackpots-v2n5-amount {
        font-size: 1.8rem;
    }

    .sec-m4x9 {
        padding: 48px 0 40px;
    }
}

@media (max-width: 768px) {

    .sec-m4x9 {
        padding: 50px 0;
    }

    .sec-m4x9-head {
        margin-bottom: 24px;
        text-align: center;
    }

    .sec-m4x9-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .sec-m4x9-sub {
        font-size: 14px;
        margin-bottom: 0;
    }

    .tourn-h8p3-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        overflow: visible;
    }

    .tourn-h8p3-card {
        width: 100%;
        min-width: auto;
        border-radius: 16px;
    }

    .tourn-h8p3-card-header {
        padding: 18px;
    }

    .tourn-h8p3-card-body {
        padding: 18px;
    }

    .tourn-h8p3-card-title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .tourn-h8p3-card-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .tourn-h8p3-prize {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .tourn-h8p3-timer {
        min-height: 50px;
        padding: 14px;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .tourn-h8p3-card .btn-signup {
        width: 100%;
        min-height: 50px;
        font-size: 15px;
        font-weight: 700;
    }
}

@media (max-width: 480px) {

    .tourn-h8p3-card-title {
        font-size: 18px;
    }

    .tourn-h8p3-prize {
        font-size: 24px;
    }

    .tourn-h8p3-card-header,
    .tourn-h8p3-card-body {
        padding: 16px;
    }
}