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

:root {
    --clr-bg: #131521;
    --clr-bg-alt: #181929;
    --clr-header: #1C1D27;
    --clr-card: #1E2030;
    --clr-card-hover: #252739;
    --clr-primary: #FD2D5E;
    --clr-primary-dark: #d91f4a;
    --clr-primary-glow: rgba(253, 45, 94, 0.18);
    --clr-secondary: #292A33;
    --clr-secondary-hover: #32333e;
    --clr-accent-blue: #2979FF;
    --clr-accent-green: #00C853;
    --clr-accent-yellow: #FFD600;
    --clr-accent-purple: #AA00FF;
    --clr-accent-teal: #00BCD4;
    --clr-accent-orange: #FF6D00;
    --clr-success: #4CAF50;
    --clr-warning: #FF9800;
    --clr-error: #F44336;
    --clr-text: #EAEAF0;
    --clr-text-muted: #9294A8;
    --clr-text-faint: #5A5C72;
    --clr-border: #2A2C3C;
    --clr-border-light: #323447;
    --font-body: 'Roboto', Arial, sans-serif;
    --font-heading: 'Rubik', 'Roboto', Arial, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 24px rgba(253, 45, 94, 0.22);
    --transition: 0.22s ease;
    --spacing: 8px;
}

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

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--clr-primary-dark);
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
}

table {
    border-collapse: collapse;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--clr-text);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    overflow: visible;
    padding: 8px 16px;
    background: var(--clr-primary);
    color: #fff;
    border-radius: var(--radius-sm);
    z-index: 9999;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

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

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

.btn:active {
    transform: scale(0.98);
}

.btn--primary {
    background: var(--clr-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(253, 45, 94, 0.35);
}

.btn--primary:hover {
    background: var(--clr-primary-dark);
    box-shadow: 0 6px 24px rgba(253, 45, 94, 0.5);
    color: #fff;
}

.btn--secondary {
    background: var(--clr-secondary);
    color: var(--clr-text);
    border: 1px solid var(--clr-border-light);
}

.btn--secondary:hover {
    background: var(--clr-secondary-hover);
    color: var(--clr-text);
}

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

.btn--md {
    font-size: 0.9rem;
    padding: 10px 22px;
}

.btn--lg {
    font-size: 1rem;
    padding: 14px 30px;
}

.btn--full {
    width: 100%;
}

.btn--pulse {
    animation: btn-pulse 2.5s infinite;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(253, 45, 94, 0.35);
    }
    50% {
        box-shadow: 0 4px 36px rgba(253, 45, 94, 0.65);
    }
}

.btn--wheel {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--clr-header);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
}

.hdr-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hdr-x9k2 {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px;
    min-height: 68px;
}

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

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

.hdr-nav-item {
}

.hdr-nav-lnk {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.hdr-nav-lnk:hover {
    color: var(--clr-text);
    background: rgba(255, 255, 255, 0.05);
}

.hdr-nav-lnk svg {
    flex-shrink: 0;
}

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

.hdr-online-cnt {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 5px 12px;
}

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

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.hdr-online-num {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--clr-text);
}

.hdr-online-lbl {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.hdr-burger:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

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

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

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

.hdr-nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 850;
    opacity: 0;
    transition: opacity 0.3s;
}

.hdr-nav-mobile-overlay.active {
    opacity: 1;
}

.hero-block {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(19, 21, 33, 0.94) 45%, rgba(19, 21, 33, 0.7) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 100px;
    width: 100%;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(253, 45, 94, 0.12);
    border: 1px solid rgba(253, 45, 94, 0.3);
    color: var(--clr-primary);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.hero-h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.1rem;
    color: #C0C2D4;
    margin-bottom: 36px;
    line-height: 1.65;
}

.hero-sub strong {
    color: #fff;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    width: fit-content;
}

.hero-stat {
    text-align: center;
    padding: 0 20px;
}

.hero-stat-num {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.hero-stat-lbl {
    display: block;
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--clr-border);
    flex-shrink: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    margin: 0 auto;
    animation: scroll-fade 2s infinite;
}

@keyframes scroll-fade {
    0%, 100% {
        opacity: 0.8;
        height: 36px;
    }
    50% {
        opacity: 0.2;
        height: 18px;
    }
}

.page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-wrap {
    padding-bottom: 24px;
}

.section-wrap {
    padding: 72px 0;
    border-bottom: 1px solid var(--clr-border);
}

.section-wrap:last-child {
    border-bottom: none;
}

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 10px;
}

.section-sub {
    font-size: 1rem;
    color: var(--clr-text-muted);
    max-width: 520px;
    margin: 0 auto;
}

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

.adv-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.adv-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
    background: radial-gradient(circle at 50% 0%, rgba(253, 45, 94, 0.07), transparent 70%);
}

.adv-card:hover::before {
    opacity: 1;
}

.adv-card:hover {
    border-color: rgba(253, 45, 94, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.adv-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.adv-icon--pink {
    background: rgba(253, 45, 94, 0.12);
    color: #FD2D5E;
}

.adv-icon--blue {
    background: rgba(41, 121, 255, 0.12);
    color: #2979FF;
}

.adv-icon--green {
    background: rgba(0, 200, 83, 0.12);
    color: #00C853;
}

.adv-icon--yellow {
    background: rgba(255, 214, 0, 0.12);
    color: #FFD600;
}

.adv-icon--purple {
    background: rgba(170, 0, 255, 0.12);
    color: #AA00FF;
}

.adv-icon--teal {
    background: rgba(0, 188, 212, 0.12);
    color: #00BCD4;
}

.adv-icon--orange {
    background: rgba(255, 109, 0, 0.12);
    color: #FF6D00;
}

.adv-icon--red {
    background: rgba(244, 67, 54, 0.12);
    color: #F44336;
}

.adv-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--clr-text);
}

.adv-text {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.bonuses-slider-wrap {
    position: relative;
    overflow: hidden;
}

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

.bonus-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(253, 45, 94, 0.3);
}

.bonus-card-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-card-icon {
}

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

.bonus-card-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--clr-primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.bonus-card-amount span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.bonus-card-desc {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    flex: 1;
}

.bonus-card-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bonus-card-list li {
    font-size: 0.825rem;
    color: var(--clr-text-muted);
    padding-left: 14px;
    position: relative;
}

.bonus-card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--clr-primary);
}

.tournaments-slider-wrap {
    position: relative;
    overflow: hidden;
}

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

.trn-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.trn-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(253, 45, 94, 0.2);
}

.trn-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--clr-border);
}

.trn-card-icon {
}

.trn-card-prize {
    text-align: right;
}

.trn-prize-label {
    display: block;
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trn-prize-amount {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--clr-primary);
    font-family: var(--font-heading);
}

.trn-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.trn-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
}

.trn-card-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
    flex: 1;
}

.trn-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--clr-border);
}

.trn-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--clr-accent-yellow);
    font-weight: 600;
}

.app-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.app-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.app-table {
    width: 100%;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-width: 360px;
}

.app-table tbody tr {
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition);
}

.app-table tbody tr:last-child {
    border-bottom: none;
}

.app-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.app-table th {
    text-align: left;
    padding: 13px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.03);
    width: 42%;
    white-space: nowrap;
}

.app-table td {
    padding: 13px 18px;
    font-size: 0.875rem;
    color: var(--clr-text);
}

.app-download {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-download-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.app-rating-stars {
    display: flex;
    gap: 4px;
}

.app-rating-text {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
}

.app-dl-desc {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.app-dl-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    background: var(--clr-secondary);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-md);
    color: var(--clr-text);
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
}

.app-dl-btn:hover {
    background: var(--clr-secondary-hover);
    border-color: var(--clr-primary);
    color: var(--clr-text);
    transform: translateX(4px);
}

.app-dl-btn--ios svg {
    color: #a2aaad;
}

.app-dl-btn--android svg {
    color: #3ddc84;
}

.app-dl-btn--apk svg {
    color: var(--clr-primary);
}

.app-dl-btn-text {
    display: flex;
    flex-direction: column;
}

.app-dl-btn-sub {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    line-height: 1;
}

.app-dl-btn-main {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.wheel-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    filter: drop-shadow(0 2px 6px rgba(253, 45, 94, 0.5));
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(253, 45, 94, 0.2), 0 8px 32px rgba(0, 0, 0, 0.5);
    display: block;
}

.wheel-controls {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wheel-intro {
}

.wheel-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.wheel-desc {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.wheel-result {
    display: none;
    padding: 24px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
}

.wheel-result.visible {
    display: block;
}

.wheel-result-win, .wheel-result-lose {
    text-align: center;
}

.wheel-win-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.wheel-result h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.wheel-result p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.wheel-win-text {
    color: var(--clr-primary) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
}

.wheel-lose-icon {
    margin: 0 auto 8px;
    width: fit-content;
}

.faq-list {
    max-width: 840px;
    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(253, 45, 94, 0.3);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text);
    text-align: left;
    cursor: pointer;
    background: transparent;
    transition: background var(--transition);
}

.faq-q:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--clr-text-muted);
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-a {
    max-height: 400px;
}

.faq-a > div {
    padding: 0 22px 18px;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.faq-a p {
    margin-bottom: 8px;
}

.faq-a p:last-child {
    margin-bottom: 0;
}

.faq-a strong {
    color: var(--clr-text);
}

.review-author-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 36px;
}

.review-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(253, 45, 94, 0.1);
    border: 2px solid rgba(253, 45, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 4px;
}

.review-author-role {
    display: block;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
}

.review-author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #0A66C2;
    font-weight: 600;
}

.review-author-link:hover {
    color: #084e96;
}

.review-author-date {
    text-align: right;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.review-author-date span {
    display: block;
}

.review-author-date time {
    font-weight: 600;
    color: var(--clr-text);
}

.review-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.review-content h2, .review-content h3, .review-content h4 {
    color: var(--clr-text);
    margin: 1.4em 0 0.6em;
    font-family: var(--font-heading);
}

.review-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.review-content h4 {
    font-size: 1rem;
    font-weight: 600;
}

.review-content p {
    margin-bottom: 1em;
    color: var(--clr-text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

.review-content ul, .review-content ol {
    margin: 0.8em 0 1.2em 1.5em;
}

.review-content li {
    margin-bottom: 0.5em;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

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

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

.review-content strong {
    color: var(--clr-text);
}

.review-content em {
    color: var(--clr-text);
    font-style: italic;
}

.review-content a {
    color: var(--clr-primary);
    text-decoration: underline;
}

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

.review-content blockquote {
    border-left: 3px solid var(--clr-primary);
    margin: 1.5em 0;
    padding: 12px 20px;
    background: rgba(253, 45, 94, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.review-content table {
    width: 100%;
    margin: 1.5em 0;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.review-content table th {
    background: rgba(255, 255, 255, 0.04);
    text-align: left;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border);
}

.review-content table td {
    padding: 10px 14px;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    border-bottom: 1px solid var(--clr-border);
}

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

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

.ftr-wrap {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
}

.ftr-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.ftr-x7m4 {
}

.ftr-top {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr;
    gap: 40px;
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--clr-border);
}

.ftr-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ftr-logo-lnk img {
    height: 38px;
    width: auto;
}

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

.ftr-socials {
    display: flex;
    gap: 8px;
}

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

.ftr-social-lnk:hover {
    background: rgba(253, 45, 94, 0.1);
    border-color: rgba(253, 45, 94, 0.3);
    color: var(--clr-primary);
}

.ftr-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.ftr-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ftr-nav-list li a {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.ftr-nav-list li a:hover {
    color: var(--clr-text);
}

.ftr-lnk {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}

.ftr-lnk:hover {
    color: var(--clr-text);
}

.ftr-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ftr-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.825rem;
    color: var(--clr-text-muted);
}

.ftr-badge svg {
    flex-shrink: 0;
}

.ftr-providers {
    padding: 28px 0;
    border-bottom: 1px solid var(--clr-border);
}

.ftr-section-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-faint);
    margin-bottom: 14px;
}

.ftr-providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ftr-provider-tag {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 4px 12px;
    transition: all var(--transition);
}

.ftr-provider-tag:hover {
    border-color: rgba(253, 45, 94, 0.3);
    color: var(--clr-text);
}

.ftr-payments {
    padding: 24px 0;
    border-bottom: 1px solid var(--clr-border);
}

.ftr-payments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ftr-pay-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 5px 12px;
}

.ftr-bottom {
    padding: 24px 0;
}

.ftr-copyright p {
    font-size: 0.8rem;
    color: var(--clr-text-faint);
    line-height: 1.6;
    margin-bottom: 8px;
}

.ftr-legal {
    font-size: 0.78rem !important;
}

.ftr-age-warning {
    font-size: 0.8rem !important;
    color: var(--clr-text-muted) !important;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-top: 8px;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.sticky-widget-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sticky-widget-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.sticky-widget-badge {
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.sticky-widget-offer {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.sticky-widget-sub {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.sticky-widget-btn {
    flex-shrink: 0;
}

.sticky-widget-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    flex-shrink: 0;
    transition: all var(--transition);
}

.sticky-widget-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--clr-text);
}

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

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

.slider-dot.active {
    background: var(--clr-primary);
    transform: scale(1.3);
}

.info-page-hero {
    background: linear-gradient(180deg, var(--clr-header) 0%, var(--clr-bg) 100%);
    padding: 28px 0 20px;
    border-bottom: 1px solid var(--clr-border);
}

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

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

.bc-lnk:hover {
    color: var(--clr-text);
}

.bc-current {
    color: var(--clr-text);
    font-weight: 500;
}

.info-content-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    padding: 48px 0;
    align-items: start;
}

.info-content-box {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.info-h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--clr-border);
}

.info-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 1.6em 0 0.6em;
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-text);
    margin: 1.2em 0 0.5em;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.75;
    margin-bottom: 1em;
}

.info-content ul, .info-content ol {
    margin: 0.8em 0 1.2em 1.5em;
}

.info-content li {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 0.4em;
}

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

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

.info-content strong {
    color: var(--clr-text);
}

.info-content a {
    color: var(--clr-primary);
    text-decoration: underline;
}

.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.sidebar-widget-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--clr-text);
}

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

.sidebar-lnk {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    display: block;
    padding: 6px 0;
    border-bottom: 1px solid var(--clr-border);
    transition: color var(--transition);
}

.sidebar-lnk:hover {
    color: var(--clr-primary);
}

.sidebar-widget--cta {
    background: linear-gradient(135deg, rgba(253, 45, 94, 0.12), rgba(253, 45, 94, 0.05));
    border-color: rgba(253, 45, 94, 0.25);
}

.sidebar-cta-text {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.animate-fadein {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fadein.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-card {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pg-home #wpadminbar {
    display: none !important;
}

@media (max-width: 1100px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 900px) {
    .hdr-x9k2 {
        grid-template-columns: auto 1fr auto;
    }

    .hdr-nav-wrap {
        display: none;
    }

    .hdr-burger {
        display: flex;
        order: 3;
    }

    .hdr-actions {
        order: 2;
    }

    .hdr-online-cnt {
        display: none;
    }

    .hdr-nav-wrap.open {
        display: flex;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--clr-header);
        flex-direction: column;
        z-index: 870;
        padding: 24px;
        border-top: 1px solid var(--clr-border);
        overflow-y: auto;
    }

    .hdr-nav-wrap.open .hdr-nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .hdr-nav-wrap.open .hdr-nav-lnk {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .hdr-nav-mobile-overlay {
        display: block;
    }

    .tournaments-slider {
        grid-template-columns: 1fr;
    }

    .bonuses-slider {
        grid-template-columns: 1fr;
    }

    .slider-dots {
        display: flex;
    }

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

    #wheel-canvas {
        width: 280px;
        height: 280px;
    }

    .info-content-wrap {
        grid-template-columns: 1fr;
    }

    .info-sidebar {
        position: static;
    }

    .review-author-card {
        grid-template-columns: auto 1fr;
    }

    .review-author-date {
        display: none;
    }

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

@media (max-width: 640px) {
    .hero-btns {
        flex-direction: column;
    }

    .hero-stats {
        width: 100%;
        justify-content: center;
        overflow-x: auto;
    }

    .hero-stat {
        padding: 0 12px;
    }

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

    .section-wrap {
        padding: 48px 0;
    }

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

    .hdr-actions .btn--secondary {
        display: none;
    }

    .sticky-widget-sub {
        display: none;
    }

    .hero-h1 {
        font-size: 1.75rem;
    }

    .app-block {
        gap: 24px;
    }

    .info-content-box {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 0 16px;
    }

    .hdr-container {
        padding: 0 16px;
    }

    .ftr-container {
        padding: 0 16px;
    }

    .sticky-widget-inner {
        padding: 12px 16px;
    }
}

.wc-head {
    position: sticky;
    top: 0;
    z-index: 99999;
    width: 100%;
    background: #050508;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.wc-head__inner {
    width: 100%;
    max-width: 1200px;
    min-height: 72px;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.wc-head__logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.wc-head__logo img {
    width: auto;
    max-width: 150px;
    max-height: 44px;
    object-fit: contain;
}

.wc-head__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.wc-head__nav a {
    padding: 9px 12px;
    border-radius: 10px;
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.wc-head__nav a:hover {
    background: rgba(255, 46, 111, .14);
    color: #ff2e6f;
}

.wc-head__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.wc-btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.wc-btn--dark {
    background: #1b1c26;
    color: #fff;
}

.wc-btn--pink {
    background: #ff2e6f;
    color: #fff;
}

.wc-burger {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: #15161f;
    flex: 0 0 auto;
}

.wc-burger span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: .25s;
}

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

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

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

@media (max-width: 900px) {
    .wc-head__inner {
        min-height: 64px;
        padding: 0 12px;
        gap: 8px;
    }

    .wc-head__logo img {
        max-width: 112px;
        max-height: 36px;
    }

    .wc-head__actions {
        margin-left: auto;
        gap: 6px;
    }

    .wc-btn {
        min-height: 34px;
        padding: 8px 11px;
        font-size: 12px;
        border-radius: 9px;
    }

    .wc-burger {
        display: flex;
        width: 38px;
        height: 38px;
    }

    .wc-head__nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        z-index: 99998;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 14px 12px 18px;
        background: #050508;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: .25s ease;
    }

    .wc-head__nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .wc-head__nav a {
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #15161f;
        border: 1px solid rgba(255, 255, 255, .08);
        color: #fff;
    }
}

@media (max-width: 420px) {
    .wc-head__logo img {
        max-width: 96px;
    }

    .wc-btn {
        padding: 7px 9px;
        font-size: 11px;
    }

    .wc-burger {
        width: 36px;
        height: 36px;
    }
}
