:root {
    --clr-bg: #2B2B2B;
    --clr-hdr: #151515;
    --clr-btn-login: #1A1A1A;
    --clr-btn-reg: #347938;
    --clr-btn-reg-hover: #2d6830;
    --clr-text: #f0f0f0;
    --clr-text-muted: #a8a8a8;
    --clr-card: #1f1f1f;
    --clr-card-alt: #222222;
    --clr-border: #3a3a3a;
    --clr-accent: #347938;
    --clr-accent2: #4caf50;
    --clr-gold: #f5c518;
    --clr-danger: #e03030;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: .25s ease;
    --font-main: 'Montserrat', 'Roboto', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--clr-bg);
}

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.x4f9a2 {
    display: none;
}

.wp-block-spacer {
    height: 0;
}

.wpcf7-not-valid-tip {
    font-size: 0;
}

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

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

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

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--clr-text);
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--clr-accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

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

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

.btn--login {
    background: var(--clr-btn-login);
    color: var(--clr-text);
    border: 1px solid #3a3a3a;
}

.btn--login:hover {
    background: #252525;
}

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

.btn--reg:hover {
    background: var(--clr-btn-reg-hover);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn--sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
}

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

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

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

.b2k9x {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

#hdr-z9q1 {
    background: var(--clr-hdr);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #232323;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.hdr-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    height: 70px;
}

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

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

.hdr-logo-txt {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px;
}

.hdr-logo-txt span {
    color: var(--clr-accent);
}

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

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

.hdr-nav ul li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

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

.hdr-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-right: 8px;
}

.hdr-online-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s ease;
}

.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;
    background: var(--clr-hdr);
    border-top: 1px solid #2a2a2a;
    padding: 16px 20px;
}

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

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
}

.mobile-menu ul li a {
    display: block;
    color: #ccc;
    font-size: 15px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.mobile-menu ul li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.mobile-menu-btns {
    display: flex;
    gap: 10px;
}

#hero-m4r2 {
    position: relative;
    overflow: hidden;
    height: 500px;
    background: #111;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .3) 60%, rgba(0, 0, 0, .1) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.hero-tag {
    display: inline-block;
    background: var(--clr-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(1.6rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    max-width: 560px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, .85);
    max-width: 460px;
}

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

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

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

.hero-dot.active {
    background: var(--clr-accent);
    width: 24px;
    border-radius: 4px;
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
    z-index: 10;
}

.hero-arrow {
    pointer-events: all;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.hero-arrow:hover {
    background: var(--clr-accent);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.pros-block-title, .cons-block-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-block-title {
    color: var(--clr-accent2);
}

.cons-block-title {
    color: var(--clr-danger);
}

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: 14px;
    color: #ddd;
    line-height: 1.5;
}

.pros-list li:last-child, .cons-list li:last-child {
    border-bottom: none;
}

.pros-list li::before {
    content: '';
    display: block;
    min-width: 18px;
    height: 18px;
    background: var(--clr-accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    margin-top: 1px;
}

.cons-list li::before {
    content: '';
    display: block;
    min-width: 18px;
    height: 18px;
    background: var(--clr-danger);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='white' stroke='white' stroke-width='1' d='M3 3l6 6M9 3l-6 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    margin-top: 1px;
}

.tournaments-wrap {
    position: relative;
}

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

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

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

.tournament-card-top {
    background: linear-gradient(135deg, #1a3d1a 0%, #0d2b0d 100%);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--clr-border);
}

.tournament-icon {
    font-size: 2.4rem;
    margin-bottom: 8px;
}

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

.tournament-prize {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.tournament-card-body {
    padding: 18px 20px;
}

.tournament-desc {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 16px;
    line-height: 1.5;
}

.tournament-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.timer-label {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.timer-blocks {
    display: flex;
    gap: 6px;
}

.timer-unit {
    background: #111;
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    padding: 4px 8px;
    text-align: center;
    min-width: 42px;
}

.timer-num {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-accent);
    font-variant-numeric: tabular-nums;
}

.timer-lbl {
    display: block;
    font-size: 9px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
}

.tournaments-slider-nav {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.sl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    border: none;
    transition: background var(--transition);
}

.sl-dot.active {
    background: var(--clr-accent);
}

#video-k7p3 .video-wrap {
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
}

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

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

.bonus-card {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.bonus-card-header {
    background: linear-gradient(135deg, #1e3a1e, #122412);
    padding: 22px 20px 18px;
    text-align: center;
    border-bottom: 1px solid var(--clr-border);
}

.bonus-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.bonus-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-gold);
    margin-bottom: 2px;
}

.bonus-type {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.bonus-card-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.bonus-desc {
    font-size: 13px;
    color: #bbb;
    line-height: 1.5;
    flex: 1;
}

.bonus-terms {
    font-size: 11px;
    color: #777;
}

.bonus-card-footer {
    padding: 14px 20px 20px;
    text-align: center;
}

.bonus-card-footer .btn {
    width: 100%;
}

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

#wheel-n8v5 {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    padding: 40px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.wheel-title-row {
    text-align: center;
    margin-bottom: 28px;
}

.wheel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px;
}

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

.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--clr-gold);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
    z-index: 10;
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 0 4px #333, 0 0 0 8px #222, 0 8px 32px rgba(0, 0, 0, .7);
    display: block;
}

.wheel-right {
    text-align: center;
}

.wheel-desc {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.5;
}

#spinBtn {
    width: 100%;
    margin-bottom: 16px;
    padding: 14px 24px;
    font-size: 15px;
}

.wheel-result {
    display: none;
    padding: 16px;
    background: rgba(52, 121, 56, .15);
    border: 1px solid var(--clr-accent);
    border-radius: var(--radius-md);
    text-align: center;
    animation: fadeIn .4s ease;
}

.wheel-result.win .wr-title {
    color: var(--clr-accent);
}

.wheel-result.lose .wr-title {
    color: var(--clr-danger);
}

.wr-icon {
    font-size: 2rem;
    margin-bottom: 6px;
}

.wr-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.wr-text {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 12px;
}

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

.content-review-block {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    padding: 36px 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

.author-avatar-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #333;
    overflow: hidden;
    flex-shrink: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--clr-accent);
}

.author-name {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 2px;
}

.author-role {
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-bottom: 4px;
}

.author-link {
    font-size: 12px;
    color: var(--clr-accent);
    transition: color var(--transition);
}

.author-link:hover {
    color: var(--clr-accent2);
}

.review-content {
    line-height: 1.75;
    color: #ddd;
}

.review-content h1, .review-content h2, .review-content h3,
.review-content h4, .review-content h5, .review-content h6 {
    color: #fff;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.review-content h1 {
    font-size: 1.6rem;
}

.review-content h2 {
    font-size: 1.35rem;
}

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

.review-content p {
    margin-bottom: 14px;
}

.review-content a {
    color: var(--clr-accent);
    transition: color var(--transition);
}

.review-content a:hover {
    color: var(--clr-accent2);
}

.review-content ul, .review-content ol {
    margin: 12px 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-content ul {
    list-style: disc;
}

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

.review-content li {
    color: #ddd;
    line-height: 1.6;
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 14px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.review-content table th, .review-content table td {
    border: 1px solid var(--clr-border);
    padding: 10px 14px;
    text-align: left;
    color: #ddd;
}

.review-content table th {
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
}

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

.review-content blockquote {
    border-left: 3px solid var(--clr-accent);
    margin: 16px 0;
    padding: 12px 20px;
    background: rgba(52, 121, 56, .08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #ccc;
    font-style: italic;
}

.review-content strong {
    color: #fff;
}

.review-content img {
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

.review-content hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 24px 0;
}

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

.review-card {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    padding: 22px;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.rc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--clr-accent);
    flex-shrink: 0;
}

.rc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin-bottom: 3px;
}

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

.rc-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--clr-gold);
}

.rc-text {
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
}

.rc-date {
    font-size: 11px;
    color: #666;
    margin-top: 8px;
}

.review-form-wrap {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    padding: 28px 32px;
    max-width: 600px;
    margin: 0 auto;
}

.review-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

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

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

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
}

.form-input, .form-textarea {
    background: #1a1a1a;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--clr-text);
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--clr-accent);
}

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

.form-submit {
    margin-top: 18px;
    text-align: center;
}

.form-success {
    display: none;
    padding: 14px 18px;
    background: rgba(52, 121, 56, .15);
    border: 1px solid var(--clr-accent);
    border-radius: var(--radius-md);
    color: var(--clr-accent2);
    font-size: 14px;
    text-align: center;
    margin-top: 14px;
    animation: fadeIn .4s ease;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, .04);
}

.faq-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition);
    font-size: 12px;
    color: #fff;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
    padding: 0 20px;
}

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

#ftr-p9k2 {
    background: var(--clr-hdr);
    border-top: 1px solid #232323;
    padding: 50px 0 0;
}

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

.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand-name span {
    color: var(--clr-accent);
}

.footer-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 36px;
    width: auto;
    margin-bottom: 14px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px;
}

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

.footer-col ul li a {
    font-size: 13px;
    color: #777;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--clr-accent);
}

.footer-payments {
    padding: 24px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    margin-bottom: 24px;
}

.footer-payments-title {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
    text-align: center;
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-logo-pill {
    background: #1e1e1e;
    border: 1px solid #2e2e2e;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #aaa;
    transition: border-color var(--transition), color var(--transition);
}

.footer-logo-pill:hover {
    border-color: var(--clr-accent);
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-size: 12px;
    color: #555;
}

.footer-legal {
    font-size: 11px;
    color: #444;
    line-height: 1.5;
    max-width: 800px;
    text-align: center;
}

.footer-license {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.footer-license-badge {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: #666;
}

#widget-c3d8 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #0e2b10, #1a4020);
    border-top: 2px solid var(--clr-accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    transform: translateY(0);
    animation: slideUp .6s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.widget-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-bonus-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
}

.widget-bonus-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color var(--transition);
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 24px;
}

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

.breadcrumb a:hover {
    color: var(--clr-accent);
}

.breadcrumb-sep {
    color: #444;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    padding: 18px 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.rating-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--clr-gold);
    line-height: 1;
}

.rating-stars-row {
    display: flex;
    gap: 3px;
    margin-bottom: 4px;
}

.rating-stars-row svg {
    width: 20px;
    height: 20px;
    fill: var(--clr-gold);
}

.rating-label {
    font-size: 13px;
    color: #aaa;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    padding: 18px 16px;
    text-align: center;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #888;
}

.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 998;
    border: none;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(52, 121, 56, .5);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-3px);
}

.m7x2q {
    display: none;
    visibility: hidden;
}

.wp-content-area {
    position: static;
}

.elementor-widget {
    display: inline;
}

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

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .burger {
        display: flex;
    }

    .hdr-inner {
        grid-template-columns: auto 1fr auto auto;
    }

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

    .tournaments-grid {
        display: flex;
        overflow: hidden;
        position: relative;
    }

    .tournament-card {
        flex-shrink: 0;
        width: 100%;
    }

    .tournaments-slider-nav {
        display: flex;
    }

    .bonuses-grid {
        display: flex;
        overflow: hidden;
        position: relative;
    }

    .bonus-card {
        flex-shrink: 0;
        width: 100%;
    }

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

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

    .wheel-layout {
        grid-template-columns: 1fr;
    }

    .wheel-canvas-wrap {
        justify-content: center;
    }

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

    #hero-m4r2 {
        height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .content-review-block {
        padding: 24px 20px;
    }

    .review-form-wrap {
        padding: 22px 18px;
    }

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

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .widget-left .widget-bonus-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .hdr-online {
        display: none;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .hdr-logo-txt {
        font-size: 1rem;
    }

    .hero-cta .btn--outline {
        display: none;
    }
}

@media (max-width: 768px) {

    #games .slider-wrap,
    #tournaments .slider-wrap {
        overflow: visible !important;
        padding: 0 !important;
    }

    #games .slider-track,
    #tournaments .slider-track {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        transform: none !important;
        width: 100% !important;
    }

    #games .game-card,
    #tournaments .tournament-card {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    #games .game-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 12px;
    }

    #games .slider-btn,
    #tournaments .slider-btn {
        display: none !important;
    }
}

@media (max-width: 768px) {
    #games .slider-wrap,
    #tournaments .slider-wrap {
        display: block !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    #games .slider-track.games-grid,
    #tournaments .slider-track.tournaments-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
        overflow: visible !important;
        transform: none !important;
        transition: none !important;
    }

    #games .slider-track.games-grid > .game-card,
    #tournaments .slider-track.tournaments-grid > .tournament-card {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex: unset !important;
        flex-basis: auto !important;
        flex-shrink: 1 !important;
        margin: 0 !important;
    }

    #games .game-card img {
        width: 100% !important;
        height: 180px !important;
        object-fit: cover !important;
    }

    #games .slider-btn,
    #tournaments .slider-btn {
        display: none !important;
    }
}

@media (max-width: 768px) {
    #games .slider-wrap,
    #tournaments .slider-wrap,
    #tournaments .tournaments-wrap,
    #bonuses {
        overflow: visible !important;
    }

    #games .slider-track.games-grid,
    #tournaments .slider-track.tournaments-grid,
    #tournaments .tournaments-grid,
    #bonuses .bonuses-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
        overflow: visible !important;
        transform: none !important;
        transition: none !important;
    }

    #games .game-card,
    #tournaments .tournament-card,
    #bonuses .bonus-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex: none !important;
        flex-basis: auto !important;
        transform: none !important;
    }

    #games .slider-btn,
    #tournaments .slider-btn,
    .tournaments-slider-nav,
    .bonuses-slider-nav {
        display: none !important;
    }
}