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

:root {
    --clr-bg: #15161a;
    --clr-header: #16171b;
    --clr-btn-primary: #13ca90;
    --clr-btn-secondary: #3d18a4;
    --clr-text: #e8eaf0;
    --clr-text-muted: #8a8fa8;
    --clr-border: #2a2c35;
    --clr-card: #1c1d24;
    --clr-card-hover: #22232e;
    --clr-accent: #13ca90;
    --clr-purple: #3d18a4;
    --clr-purple-light: #5928d6;
    --clr-green-dark: #0e9e6e;
    --clr-danger: #e05252;
    --clr-warning: #f0b429;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .45);
    --shadow-btn: 0 2px 12px rgba(19, 202, 144, .3);
    --transition: .22s cubic-bezier(.4, 0, .2, 1);
}

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

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

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

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

a {
    color: var(--clr-btn-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #2ffcb4;
}

button {
    cursor: pointer;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

.x3k9q {
    display: none !important;
}

.wp-block-separator {
    display: none;
}

.elementor-hidden {
    visibility: hidden;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-gap {
    padding: 72px 0;
}

.section-gap--sm {
    padding: 48px 0;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--clr-text);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -.02em;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--clr-text-muted);
    text-align: center;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    padding: 11px 24px;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: .01em;
    cursor: pointer;
}

.btn--primary {
    background: var(--clr-btn-primary);
    color: #0d1a14;
    box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
    background: #0fe0a0;
    box-shadow: 0 4px 20px rgba(19, 202, 144, .45);
    transform: translateY(-1px);
    color: #0d1a14;
}

.btn--secondary {
    background: var(--clr-btn-secondary);
    color: #fff;
}

.btn--secondary:hover {
    background: var(--clr-purple-light);
    transform: translateY(-1px);
    color: #fff;
}

.btn--outline {
    background: transparent;
    border: 1.5px solid var(--clr-btn-secondary);
    color: #c5b8ff;
}

.btn--outline:hover {
    background: var(--clr-btn-secondary);
    color: #fff;
}

.btn--sm {
    padding: 8px 18px;
    font-size: .85rem;
}

.btn--lg {
    padding: 14px 36px;
    font-size: 1.05rem;
}

.badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.badge--green {
    background: rgba(19, 202, 144, .15);
    color: var(--clr-btn-primary);
}

.badge--purple {
    background: rgba(61, 24, 164, .2);
    color: #a98cff;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-header);
    border-bottom: 1px solid var(--clr-border);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
}

.header-logo img {
    height: 44px;
    width: auto;
}

.header-logo {
    flex-shrink: 0;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    font-weight: 500;
    color: #b8bcd0;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.header-nav a:hover {
    color: var(--clr-text);
    background: rgba(255, 255, 255, .05);
}

.header-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.header-actions .btn {
    padding: 9px 18px;
    font-size: .85rem;
}

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

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-btn-primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

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

.online-count {
    font-weight: 600;
    color: var(--clr-btn-primary);
}

.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, .09);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    min-width: 160px;
    padding: 6px;
    display: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
    z-index: 100;
}

.lang-dropdown.open {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    font-size: .85rem;
    color: var(--clr-text);
    border-radius: 6px;
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, .06);
}

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

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-header);
    z-index: 1050;
    flex-direction: column;
    padding: 80px 24px 32px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu .header-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.mobile-menu .header-nav a {
    font-size: 1.1rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--clr-border);
}

.mobile-menu-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.mobile-menu-actions .btn {
    flex: 1;
    min-width: 120px;
}

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--clr-text);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity .7s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-slide__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(21, 22, 26, .92) 35%, rgba(21, 22, 26, .3) 100%);
}

.hero-slide__content {
    position: relative;
    z-index: 1;
    max-width: 580px;
    padding: 80px 0;
}

.hero-slide__eyebrow {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--clr-btn-primary);
    margin-bottom: 14px;
}

.hero-slide__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: 18px;
    color: #fff;
}

.hero-slide__title span {
    color: var(--clr-btn-primary);
}

.hero-slide__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.6;
}

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

.slider-controls {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.slider-dot.active {
    background: var(--clr-btn-primary);
    width: 24px;
    border-radius: 4px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(22, 23, 27, .7);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--clr-btn-primary);
    border-color: var(--clr-btn-primary);
    color: #0d1a14;
}

.slider-arrow--prev {
    left: 20px;
}

.slider-arrow--next {
    right: 20px;
}

/* =========================================
   PROS / CONS
   ========================================= */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pros-card, .cons-card {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--clr-border);
}

.pros-card {
    border-top: 3px solid var(--clr-btn-primary);
}

.cons-card {
    border-top: 3px solid var(--clr-danger);
}

.pros-cons__heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.pros-cons__heading svg {
    width: 20px;
    height: 20px;
}

.pros-cons__heading--pros {
    color: var(--clr-btn-primary);
}

.pros-cons__heading--cons {
    color: var(--clr-danger);
}

.pros-cons__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    font-size: .9375rem;
    color: var(--clr-text);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    line-height: 1.5;
}

.pros-cons__list li:last-child {
    border-bottom: none;
}

.pros-cons__list li span.icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* =========================================
   WINNERS
   ========================================= */
.winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.winners-table th {
    background: rgba(61, 24, 164, .2);
    color: #c5b8ff;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
}

.winners-table td {
    padding: 12px 18px;
    font-size: .9rem;
    color: var(--clr-text);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    text-align: left;
}

.winners-table tr:hover td {
    background: rgba(255, 255, 255, .025);
}

.winners-table .rank {
    font-weight: 700;
    width: 44px;
}

.rank--gold {
    color: #f0b429;
}

.rank--silver {
    color: #c0c8d8;
}

.rank--bronze {
    color: #c87a3c;
}

.winners-table .amount {
    font-weight: 700;
    color: var(--clr-btn-primary);
}

.winners-table .nickname {
    font-weight: 500;
}

.winners-table .game-name {
    color: var(--clr-text-muted);
    font-size: .85rem;
}

/* =========================================
   VIDEO
   ========================================= */
.video-wrap {
    position: relative;
    padding-top: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: #000;
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

.bonus-card {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-btn-primary), var(--clr-purple-light));
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
}

.bonus-icon {
    width: 52px;
    height: 52px;
    background: rgba(19, 202, 144, .1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-icon svg {
    width: 26px;
    height: 26px;
    color: var(--clr-btn-primary);
}

.bonus-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text);
}

.bonus-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--clr-btn-primary);
    letter-spacing: -.02em;
    line-height: 1.1;
}

.bonus-desc {
    font-size: .875rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.bonus-card .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.bonuses-slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.bonuses-slider-dots .sdot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}

.bonuses-slider-dots .sdot.active {
    background: var(--clr-btn-primary);
}

/* =========================================
   WHEEL OF FORTUNE
   ========================================= */
.wheel-section {
    background: linear-gradient(180deg, var(--clr-bg) 0%, #1a1040 50%, var(--clr-bg) 100%);
}

.wheel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.wheel-canvas-wrap {
    position: relative;
    flex-shrink: 0;
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 22px solid var(--clr-btn-primary);
    filter: drop-shadow(0 0 6px rgba(19, 202, 144, .6));
    z-index: 2;
}

#wheelCanvas {
    display: block;
    border-radius: 50%;
}

.wheel-info {
    max-width: 360px;
}

.wheel-info__title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.wheel-info__desc {
    color: var(--clr-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

#wheelResult {
    margin-top: 20px;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    display: none;
    font-size: 1rem;
    line-height: 1.5;
}

#wheelResult.win {
    background: rgba(19, 202, 144, .12);
    border: 1px solid rgba(19, 202, 144, .3);
    display: block;
}

#wheelResult.lose {
    background: rgba(224, 82, 82, .1);
    border: 1px solid rgba(224, 82, 82, .25);
    display: block;
}

.wheel-result-title {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

/* =========================================
   REVIEW CONTENT
   ========================================= */
.review-block {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--clr-border);
    max-width: 860px;
    margin: 0 auto;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--clr-border);
}

.review-author__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-btn-primary), var(--clr-purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-author__name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.review-author__bio {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.45;
}

.review-author__links {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.review-author__links a {
    font-size: .8rem;
    color: var(--clr-btn-primary);
}

.review-content-area h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--clr-text);
    letter-spacing: -.01em;
}

.review-content-area h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 22px 0 10px;
    color: var(--clr-text);
}

.review-content-area h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 18px 0 8px;
}

.review-content-area p {
    margin-bottom: 14px;
    color: var(--clr-text);
    line-height: 1.7;
    font-size: .9375rem;
}

.review-content-area ul, .review-content-area ol {
    margin: 12px 0 20px 20px;
    list-style: disc;
}

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

.review-content-area li {
    padding: 4px 0;
    color: var(--clr-text);
    line-height: 1.6;
    font-size: .9375rem;
}

.review-content-area a {
    color: var(--clr-btn-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.review-content-area strong {
    font-weight: 700;
    color: #fff;
}

.review-content-area em {
    font-style: italic;
}

.review-content-area blockquote {
    border-left: 3px solid var(--clr-btn-primary);
    padding: 10px 18px;
    margin: 18px 0;
    background: rgba(19, 202, 144, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: rgba(232, 234, 240, .8);
    font-style: italic;
}

.review-content-area table {
    width: auto;
    border-collapse: collapse;
    margin: 20px auto;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.review-content-area th {
    background: rgba(61, 24, 164, .2);
    color: #c5b8ff;
    font-weight: 700;
    padding: 10px 16px;
    text-align: left;
    border: 1px solid var(--clr-border);
    font-size: .875rem;
}

.review-content-area td {
    padding: 10px 16px;
    border: 1px solid var(--clr-border);
    font-size: .875rem;
    text-align: left;
    color: var(--clr-text);
}

.review-content-area tr:nth-child(even) td {
    background: rgba(255, 255, 255, .025);
}

/* =========================================
   FAQ
   ========================================= */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.faq-item.open {
    border-color: rgba(19, 202, 144, .3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    font-weight: 600;
    font-size: .9375rem;
    cursor: pointer;
    gap: 14px;
    user-select: none;
}

.faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--clr-text-muted);
    transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--clr-btn-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s;
    padding: 0 22px;
}

.faq-answer p {
    padding-bottom: 18px;
    font-size: .9rem;
    color: rgba(232, 234, 240, .85);
    line-height: 1.65;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-top: 0;
}

/* =========================================
   COMMENTS
   ========================================= */
.comments-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.comment-item {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--clr-border);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-purple), var(--clr-btn-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.comment-meta {
    flex: 1;
}

.comment-name {
    font-weight: 600;
    font-size: .9rem;
}

.comment-date {
    font-size: .78rem;
    color: var(--clr-text-muted);
}

.comment-stars {
    color: var(--clr-warning);
    font-size: .9rem;
    letter-spacing: 1px;
}

.comment-text {
    font-size: .9rem;
    color: rgba(232, 234, 240, .85);
    line-height: 1.6;
}

.comment-form-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--clr-text);
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.form-input, .form-textarea, .form-select {
    background: var(--clr-card);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: inherit;
    font-size: .9375rem;
    padding: 11px 14px;
    transition: border-color var(--transition);
    width: 100%;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--clr-btn-primary);
    box-shadow: 0 0 0 3px rgba(19, 202, 144, .12);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.form-select {
    appearance: none;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.star-select {
    display: flex;
    gap: 6px;
}

.star-select label {
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--clr-border);
    transition: color var(--transition);
}

.star-select input[type="radio"] {
    display: none;
}

.star-select label:hover,
.star-select label:hover ~ label {
    color: var(--clr-border);
}

.star-select:hover label,
.star-select input:checked ~ label {
    color: var(--clr-warning);
}

.form-success {
    background: rgba(19, 202, 144, .1);
    border: 1px solid rgba(19, 202, 144, .3);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    display: none;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--clr-btn-primary);
    font-weight: 600;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 56px 0 32px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: .875rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--clr-btn-primary);
    border-color: var(--clr-btn-primary);
    color: #0d1a14;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-col-title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: .875rem;
    color: rgba(232, 234, 240, .65);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--clr-text);
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 28px 0;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-badge {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.footer-badge--license {
    color: var(--clr-btn-primary);
    border-color: rgba(19, 202, 144, .2);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
}

.payment-icon {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.provider-tag {
    background: rgba(61, 24, 164, .12);
    border: 1px solid rgba(61, 24, 164, .25);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: .75rem;
    color: #a98cff;
}

.footer-flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--clr-text-muted);
}

.flag-nl {
    display: inline-block;
    width: 22px;
    height: 16px;
    border-radius: 2px;
    background: linear-gradient(to bottom, #ae1c28 33%, #fff 33% 66%, #21468b 66%);
    flex-shrink: 0;
}

.footer-copyright {
    font-size: .8rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.footer-legal {
    font-size: .78rem;
    color: rgba(138, 143, 168, .65);
    margin-top: 12px;
    line-height: 1.65;
}

.footer-email a {
    color: var(--clr-btn-primary);
}

/* =========================================
   STICKY WIDGET
   ========================================= */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clr-header);
    border-top: 1px solid rgba(19, 202, 144, .25);
    padding: 12px 20px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    transform: translateY(100%);
    transition: transform .45s ease;
}

.sticky-widget.visible {
    transform: translateY(0);
}

.sticky-widget__text {
    font-size: .85rem;
    color: var(--clr-text-muted);
}

.sticky-widget__text strong {
    color: var(--clr-text);
}

.promo-code-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .04);
    border: 1.5px dashed rgba(19, 202, 144, .4);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
}

.promo-code {
    font-family: monospace;
    font-size: .95rem;
    font-weight: 700;
    color: var(--clr-btn-primary);
    letter-spacing: .05em;
}

.btn-copy {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    padding: 2px;
    transition: color var(--transition);
    display: flex;
    align-items: center;
}

.btn-copy:hover {
    color: var(--clr-btn-primary);
}

.btn-copy svg {
    width: 15px;
    height: 15px;
}

.copy-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--clr-btn-primary);
    color: #0d1a14;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    z-index: 1100;
    white-space: nowrap;
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.sticky-widget__close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px 8px;
    transition: color var(--transition);
}

.sticky-widget__close:hover {
    color: var(--clr-text);
}

/* =========================================
   INFO PAGES
   ========================================= */
.info-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 0 72px;
}

.info-page-content h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -.02em;
}

.info-page-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 28px 0 12px;
}

.info-page-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 8px;
}

.info-page-content p {
    margin-bottom: 14px;
    color: rgba(232, 234, 240, .85);
    line-height: 1.7;
}

.info-page-content ul, .info-page-content ol {
    margin: 10px 0 18px 20px;
}

.info-page-content ul {
    list-style: disc;
}

.info-page-content ol {
    list-style: decimal;
}

.info-page-content li {
    padding: 4px 0;
    color: rgba(232, 234, 240, .85);
    line-height: 1.6;
}

.info-page-content a {
    color: var(--clr-btn-primary);
}

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

.info-page-content th {
    background: rgba(61, 24, 164, .2);
    color: #c5b8ff;
    font-weight: 700;
    padding: 10px 16px;
    text-align: left;
    border: 1px solid var(--clr-border);
}

.info-page-content td {
    padding: 10px 16px;
    border: 1px solid var(--clr-border);
    text-align: left;
}

.info-page-content tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

/* =========================================
   SECTION BACKGROUNDS
   ========================================= */
.bg-alt {
    background: var(--clr-card);
}

.bg-gradient-section {
    background: linear-gradient(180deg, var(--clr-bg) 0%, #161225 50%, var(--clr-bg) 100%);
}

/* =========================================
   UTILITY
   ========================================= */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--clr-text-muted);
}

.mt-8 {
    margin-top: 8px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mb-24 {
    margin-bottom: 24px;
}

.d-none {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.wp-post-thumbnail {
    display: none;
}

.elementor-widget-container--inner {
}

.wpcf7-form-control-wrap {
    display: contents;
}

.qn7xp2 {
    font-weight: inherit;
}

.m8t3j6 {
    letter-spacing: inherit;
}

.r4k9s1 {
    line-height: inherit;
}

.b2w7q5 {
    opacity: 0.9999;
}

.yoast-breadcrumb {
    display: none;
}

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
}

@media (max-width: 1024px) {
    .bonuses-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .header-actions .btn--outline {
        display: none;
    }

    .hero-slider {
        min-height: 420px;
    }

    .hero-slide__content {
        padding: 60px 0 80px;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .bonuses-slider-dots {
        display: flex;
    }

    .wheel-wrapper {
        gap: 32px;
    }

    #wheelCanvas {
        width: 260px !important;
        height: 260px !important;
    }

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

    .review-block {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .sticky-widget {
        gap: 10px;
        padding: 10px 40px 10px 12px;
    }

    .sticky-widget__text {
        font-size: .78rem;
    }
}

@media (max-width: 480px) {
    .section-gap {
        padding: 48px 0;
    }

    .hero-slide__actions {
        flex-direction: column;
    }

    .hero-slide__actions .btn {
        width: 100%;
    }

    .slider-arrow {
        width: 34px;
        height: 34px;
    }

    #wheelCanvas {
        width: 220px !important;
        height: 220px !important;
    }

    .online-counter {
        display: none;
    }

    .lang-btn span.lang-label {
        display: none;
    }
}

html.menu-open,
body.menu-open {
    overflow: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    background: var(--clr-header, #16171b);
}

body {
    padding-top: 68px;
}

.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-top: 68px;
    }

    .header-inner {
        min-height: 68px;
    }

    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100dvh;
        padding: 78px 16px 24px;
        background: rgba(22, 23, 27, .99);
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 100000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform .3s ease, opacity .25s ease, visibility .25s ease;
    }

    .mobile-menu.open,
    .mobile-menu.active,
    .mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .mobile-menu .header-nav {
        display: flex !important;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .mobile-menu .header-nav a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 50px;
        gap: 12px;
        padding: 13px 15px;
        color: var(--clr-text, #e8eaf0);
        background: rgba(255, 255, 255, .04);
        border: 1px solid var(--clr-border, #2a2c35);
        border-radius: 11px;
        font-size: 15px;
        font-weight: 600;
    }

    .mobile-menu .header-nav a svg {
        width: 19px;
        height: 19px;
        flex: 0 0 19px;
        color: var(--clr-btn-primary, #13ca90);
    }

    .mobile-menu-close {
        position: absolute;
        top: 18px;
        right: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid var(--clr-border, #2a2c35);
        border-radius: 50%;
        background: rgba(255, 255, 255, .06);
        color: var(--clr-text, #e8eaf0);
        font-size: 30px;
        line-height: 1;
        z-index: 2;
    }

    .mobile-menu-actions {
        display: grid;
        grid-template-columns:1fr 1fr;
        width: 100%;
        gap: 10px;
        margin-top: auto;
        padding-top: 20px;
    }

    .mobile-menu-actions .btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .burger {
        display: flex;
        position: relative;
        z-index: 100001;
    }

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

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

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

@media (max-width: 480px) {
    .mobile-menu {
        padding-left: 10px;
        padding-right: 10px;
    }

    .mobile-menu-actions {
        grid-template-columns:1fr;
    }
}
