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

:root {
    --c-bg: #1E101E;
    --c-header: #05071A;
    --c-footer: #05071A;
    --c-btn-primary: #FFE600;
    --c-btn-primary-hover: #ffd000;
    --c-btn-secondary: #26293A;
    --c-btn-secondary-hover: #31354d;
    --c-text: #e8e4f0;
    --c-text-muted: #9e97b0;
    --c-accent: #FFE600;
    --c-card: #2a1a2e;
    --c-card-alt: #221529;
    --c-border: rgba(255, 230, 0, 0.12);
    --c-border-light: rgba(255, 255, 255, 0.08);
    --c-pros: #0f3d2e;
    --c-cons: #3d0f14;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Rajdhani', 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-color: var(--c-bg);
    color: var(--c-text);
    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: #fff;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.container--wide {
    max-width: 1440px;
}

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

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-accent);
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--c-text-muted);
    margin-bottom: 40px;
    max-width: 560px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--transition);
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.07);
}

.btn--primary {
    background: var(--c-btn-primary);
    color: #05071A;
}

.btn--primary:hover {
    background: var(--c-btn-primary-hover);
    color: #05071A;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(255, 230, 0, 0.35);
}

.btn--secondary {
    background: var(--c-btn-secondary);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 10px;
}

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

.btn--pulse {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 230, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(255, 230, 0, 0);
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

.d7x3f9 {
    display: none;
}

.k2m8r1 {
    visibility: hidden;
    position: absolute;
}

.p5n6w2 {
    opacity: 0;
    pointer-events: none;
}

.hs-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 0;
}

/* ========== HEADER ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-header);
    border-bottom: 1px solid rgba(255, 230, 0, 0.1);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    height: 72px;
}

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

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
}

.header-nav__item a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: var(--c-text);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.header-nav__item a:hover,
.header-nav__item a.active {
    color: var(--c-accent);
    background: rgba(255, 230, 0, 0.08);
}

.header-nav__item svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    flex-shrink: 0;
}

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--c-text-muted);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    border: 1px solid var(--c-border-light);
    white-space: nowrap;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: blink-dot 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

#online-count {
    color: #fff;
    font-weight: 700;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--c-btn-secondary);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition);
    flex-shrink: 0;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-header);
    z-index: 999;
    padding: 24px 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--c-text);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--c-border-light);
    transition: all var(--transition);
}

.mobile-menu ul li a:hover {
    color: var(--c-accent);
    background: rgba(255, 230, 0, 0.06);
}

.mobile-menu ul li a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-menu__btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu__btns .btn {
    width: 100%;
    justify-content: center;
}

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

.hero-slider {
    position: absolute;
    inset: 0;
}

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

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

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 7, 26, 0.85) 0%, rgba(30, 16, 30, 0.65) 60%, rgba(30, 16, 30, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 230, 0, 0.12);
    border: 1px solid rgba(255, 230, 0, 0.3);
    color: var(--c-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

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

.hero-desc {
    font-size: 1.05rem;
    color: rgba(232, 228, 240, 0.88);
    margin-bottom: 32px;
    line-height: 1.65;
}

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

.hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--c-text-muted);
    font-size: 0.875rem;
}

.hero-stars {
    color: var(--c-accent);
    font-size: 1rem;
    letter-spacing: 2px;
}

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

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

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

/* ========== CARD BLOCK ========== */
.card-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

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

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

.pros-block {
    background: linear-gradient(135deg, #0f3d2e 0%, #0a2e23 100%);
    border-color: rgba(34, 197, 94, 0.2);
}

.cons-block {
    background: linear-gradient(135deg, #3d0f14 0%, #2a0a0f 100%);
    border-color: rgba(239, 68, 68, 0.2);
}

.pros-block h3,
.cons-block h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.pros-block h3 {
    color: #4ade80;
}

.cons-block h3 {
    color: #f87171;
}

.pros-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pros-cons-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
}

.pros-cons-list--pros li::before {
    background-color: rgba(74, 222, 128, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%234ade80' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pros-cons-list--cons li::before {
    background-color: rgba(248, 113, 113, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23f87171' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ========== RATING BADGE ========== */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 16px 24px;
    margin-top: 24px;
}

.rating-score {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1;
}

.rating-stars-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-stars-row .stars {
    color: var(--c-accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-stars-row small {
    color: var(--c-text-muted);
    font-size: 0.75rem;
}

/* ========== TABLE ========== */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
}

.hs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    min-width: 700px;
}

.hs-table th {
    background: var(--c-header);
    color: var(--c-accent);
    padding: 14px 16px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--c-border);
    white-space: nowrap;
}

.hs-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--c-border-light);
    vertical-align: middle;
    color: var(--c-text);
    text-align: left;
}

.hs-table tr:last-child td {
    border-bottom: none;
}

.hs-table tr {
    background: var(--c-card);
    transition: background var(--transition);
}

.hs-table tr:nth-child(even) {
    background: var(--c-card-alt);
}

.hs-table tr:hover {
    background: rgba(255, 230, 0, 0.04);
}

.pm-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.pm-icon-badge {
    width: 36px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.badge-fast {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.badge-zero {
    background: rgba(255, 230, 0, 0.12);
    color: var(--c-accent);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

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

.tournament-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-accent), #ff6b00);
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 230, 0, 0.3);
}

.tournament-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff6b00;
    background: rgba(255, 107, 0, 0.12);
    padding: 4px 10px;
    border-radius: 4px;
    width: fit-content;
}

.tournament-card h3 {
    font-size: 1.1rem;
    color: #fff;
    font-family: var(--font-display);
}

.tournament-card p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin: 0;
    line-height: 1.5;
}

.tournament-prize {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1;
}

.tournament-prize small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--c-text-muted);
    font-family: var(--font-main);
    display: block;
    margin-top: 4px;
}

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

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--c-header);
    border-radius: 6px;
    padding: 6px 10px;
    min-width: 40px;
}

.timer-val {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.timer-lbl {
    font-size: 0.6rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 3px;
}

.timer-sep {
    font-size: 1.2rem;
    color: var(--c-text-muted);
    font-weight: 700;
    margin-bottom: 12px;
}

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

.bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
}

.bonus-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(0deg, rgba(255, 230, 0, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

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

.bonus-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 230, 0, 0.1);
    border: 1px solid rgba(255, 230, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.bonus-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-accent);
    background: rgba(255, 230, 0, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    width: fit-content;
}

.bonus-card h3 {
    font-size: 1.2rem;
    font-family: var(--font-display);
    color: #fff;
}

.bonus-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1;
}

.bonus-amount span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-text-muted);
    font-family: var(--font-main);
}

.bonus-card p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin: 0;
    flex: 1;
}

.bonus-terms {
    font-size: 0.72rem;
    color: #6b6480;
    border-top: 1px solid var(--c-border-light);
    padding-top: 12px;
    margin-top: 4px;
}

/* ========== WHEEL GAME ========== */
.wheel-section {
    background: linear-gradient(135deg, #12062a 0%, #1a0d30 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(120, 80, 220, 0.3);
    padding: 56px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.wheel-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120, 80, 220, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.wheel-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 32px auto;
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 230, 0, 0.2), 0 0 40px rgba(120, 80, 220, 0.3);
    display: block;
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--c-accent);
    filter: drop-shadow(0 2px 6px rgba(255, 230, 0, 0.5));
    z-index: 2;
}

.wheel-result {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.wheel-result-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.wheel-result-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.wheel-result-text.win {
    color: var(--c-accent);
}

.wheel-result-text.lose {
    color: #f87171;
}

#spin-btn {
    min-width: 200px;
}

/* ========== CONTENT REVIEW ========== */
.content-review {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
}

.author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 230, 0, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    margin-bottom: 32px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-accent);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    margin: 0;
}

.author-info a {
    font-size: 0.78rem;
    color: var(--c-accent);
}

.content-body {
    line-height: 1.8;
}

.content-body h2 {
    font-size: 1.5rem;
    color: #fff;
    margin: 32px 0 16px;
    font-family: var(--font-display);
}

.content-body h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 24px 0 12px;
    font-family: var(--font-display);
}

.content-body p {
    font-size: 0.95rem;
    color: var(--c-text);
    margin-bottom: 16px;
}

.content-body ul, .content-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.content-body li {
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: var(--c-text);
}

.content-body a {
    color: var(--c-accent);
}

.content-body a:hover {
    text-decoration: underline;
}

.content-body strong {
    color: #fff;
    font-weight: 600;
}

.content-body em {
    font-style: italic;
}

.content-body blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(255, 230, 0, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--c-text-muted);
}

.content-body table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
}

.content-body table th {
    background: var(--c-header);
    color: var(--c-accent);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-size: 0.85rem;
}

.content-body table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border-light);
    font-size: 0.875rem;
}

.content-body img {
    border-radius: var(--radius-sm);
    max-width: 100%;
    margin: 16px 0;
}

/* ========== FAQ ========== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.faq-item.open {
    border-color: rgba(255, 230, 0, 0.3);
}

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

.faq-question:hover {
    background: rgba(255, 230, 0, 0.04);
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 230, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background var(--transition);
    font-size: 1rem;
    color: var(--c-accent);
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(255, 230, 0, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    padding: 0 20px;
}

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

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

.review-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform var(--transition);
}

.review-card:hover {
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-border);
    flex-shrink: 0;
    background: var(--c-btn-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-accent);
    overflow: hidden;
}

.review-meta {
    flex: 1;
}

.review-meta strong {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

.review-meta span {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.review-stars svg {
    fill: var(--c-accent);
    width: 14px;
    height: 14px;
}

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

.review-text {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    line-height: 1.65;
}

/* ========== REVIEW FORM ========== */
.review-form-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 36px;
    max-width: 640px;
    margin: 0 auto;
}

.review-form-wrap h3 {
    font-size: 1.4rem;
    font-family: var(--font-display);
    color: #fff;
    margin-bottom: 8px;
}

.review-form-wrap p {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    margin-bottom: 28px;
}

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

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-family: var(--font-main);
    font-size: 0.9rem;
    padding: 12px 16px;
    width: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #5e5875;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(255, 230, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.08);
}

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

.form-star-select {
    display: flex;
    gap: 6px;
    align-items: center;
}

.form-star-select input {
    display: none;
}

.form-star-select label {
    cursor: pointer;
    font-size: 1.6rem;
    color: #3a3553;
    transition: color var(--transition), transform var(--transition);
    line-height: 1;
}

.form-star-select label:hover,
.form-star-select label.selected {
    color: var(--c-accent);
    transform: scale(1.15);
}

.form-success {
    display: none;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: #4ade80;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 16px;
}

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

/* ========== FOOTER ========== */
.site-footer {
    background: var(--c-footer);
    border-top: 1px solid rgba(255, 230, 0, 0.1);
    padding: 56px 0 0;
    margin-top: auto;
}

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

.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 16px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--c-btn-secondary);
    border: 1px solid var(--c-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: rgba(255, 230, 0, 0.12);
    border-color: rgba(255, 230, 0, 0.3);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: var(--c-text-muted);
}

.footer-social a:hover svg {
    fill: var(--c-accent);
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: 16px;
}

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

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: #fff;
}

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

.footer-logo-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border-light);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--c-text-muted);
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: border-color var(--transition);
}

.footer-logo-badge:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer-divider {
    height: 1px;
    background: var(--c-border-light);
    margin: 40px 0 24px;
}

.footer-bottom {
    padding: 24px 0 32px;
    border-top: 1px solid var(--c-border-light);
}

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

.footer-legal {
    font-size: 0.75rem;
    color: #4a4464;
    line-height: 1.65;
    max-width: 560px;
}

.footer-legal a {
    color: #6b6480;
}

.footer-legal a:hover {
    color: var(--c-text-muted);
}

.age-badge {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #4a4464;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    color: #4a4464;
    font-family: var(--font-display);
}

.footer-trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 16px;
}

/* ========== BOTTOM WIDGET ========== */
.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #05071A 0%, #12062a 50%, #05071A 100%);
    border-top: 1px solid rgba(255, 230, 0, 0.25);
    padding: 12px 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

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

.bottom-widget-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bottom-widget-text {
    display: flex;
    flex-direction: column;
}

.bottom-widget-text strong {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 700;
}

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

.bottom-widget-promo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-code {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 230, 0, 0.08);
    border: 1px dashed rgba(255, 230, 0, 0.4);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    cursor: pointer;
    transition: all var(--transition);
}

.promo-code:hover {
    background: rgba(255, 230, 0, 0.14);
}

.promo-code span {
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    color: var(--c-accent);
}

.promo-copy {
    font-size: 0.72rem;
    color: var(--c-text-muted);
    white-space: nowrap;
}

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

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

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c-btn-secondary);
    border: 1px solid var(--c-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    opacity: 0;
    pointer-events: none;
    z-index: 800;
}

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

.scroll-top:hover {
    background: rgba(255, 230, 0, 0.12);
    border-color: rgba(255, 230, 0, 0.3);
}

.scroll-top svg {
    width: 18px;
    height: 18px;
    fill: var(--c-text-muted);
}

/* ==========  ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-in {
    animation: fadeInUp 0.5s ease both;
}

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

.slider-container {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.slider-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-btn-secondary);
    border: 1px solid var(--c-border-light);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.slider-nav-btn:hover {
    background: rgba(255, 230, 0, 0.12);
}

.slider-dots-row {
    display: flex;
    gap: 6px;
}

.slider-dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all var(--transition);
}

.slider-dot-sm.active {
    background: var(--c-accent);
    width: 16px;
    border-radius: 3px;
}

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

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

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

    .burger-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .header-inner {
        grid-template-columns: auto auto;
    }

    .hero-content {
        padding: 56px 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .tournaments-grid {
        display: none;
    }

    .bonuses-grid {
        display: none;
    }

    .slider-container .slider-track {
    }

    .slider-nav {
        display: flex;
    }

    .tournaments-slider,
    .bonuses-slider {
        display: block;
    }

    .tournaments-slider .slider-track .tournament-card,
    .bonuses-slider .slider-track .bonus-card {
        min-width: calc(100vw - 56px);
        flex-shrink: 0;
    }

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

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

    .footer-bottom-grid {
        flex-direction: column;
    }

    .content-review {
        padding: 24px;
    }

    .wheel-section {
        padding: 36px 20px;
    }

    .bottom-widget-inner {
        flex-wrap: wrap;
    }

    .bottom-widget-text {
        display: none;
    }

    .online-counter {
        display: none;
    }
}

@media (max-width: 480px) {
    .review-form-wrap {
        padding: 24px 16px;
    }

    .card-block {
        padding: 20px 16px;
    }

    .bonuses-grid, .tournaments-grid {
        display: none;
    }
}

.wp-block-group {
    display: block;
}

.wp-block-columns {
    display: flex;
    gap: 16px;
}

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

.entry-content {
    display: block;
}

.post-thumbnail {
    display: block;
}

.site-content {
    display: block;
}

.wc-block-grid {
    display: grid;
}

.yoast-breadcrumbs {
    display: none;
}

.yst-snippet-preview {
    display: none;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.85em;
    color: #666;
}

.screen-reader-text {
    position: absolute;
    left: -9999em;
}

.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.size-full {
    max-width: 100%;
    height: auto;
}

.wp-post-image {
    display: block;
}

.sticky {
    position: relative;
}

.bypostauthor {
    display: block;
}

.gallery-item {
    display: inline-block;
}

.gallery-caption {
    display: block;
}

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

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

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

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

.gap-16 {
    gap: 16px;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
}

.tag-pill--green {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
}

.tag-pill--yellow {
    background: rgba(255, 230, 0, 0.1);
    color: var(--c-accent);
}

.tag-pill--purple {
    background: rgba(120, 80, 220, 0.1);
    color: #a78bfa;
}

.tag-pill--orange {
    background: rgba(255, 107, 0, 0.1);
    color: #fb923c;
}

.c8j2x4 {
    letter-spacing: normal;
}

.v3n7p1 {
    word-spacing: normal;
}

.r9k4m6 {
    text-rendering: optimizeLegibility;
}
