:root {
    --c-bg: #121212;
    --c-surface: #1a1a2e;
    --c-header: #1E1E2F;
    --c-card: #1f1f35;
    --c-border: #2a2a45;
    --c-primary: #FF5722;
    --c-primary-h: #ff6d3a;
    --c-secondary: #1E1E2F;
    --c-text: #e8e8f0;
    --c-text-muted: #9090b0;
    --c-gold: #f5c518;
    --c-green: #22c55e;
    --c-white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: .2s ease;
    --font: 'Inter', sans-serif
}

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

html {
    scroll-behavior: smooth;
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--c-bg)
}

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

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

a:hover {
    color: var(--c-primary-h)
}

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

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

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

.section-gap {
    padding: 60px 0
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4
}

.btn--primary {
    background: var(--c-primary);
    color: var(--c-white)
}

.btn--primary:hover {
    background: var(--c-primary-h);
    color: var(--c-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, .35)
}

.btn--secondary {
    background: var(--c-secondary);
    color: var(--c-white);
    border: 1px solid var(--c-border)
}

.btn--secondary:hover {
    background: #2a2a45;
    color: var(--c-white);
    border-color: #3a3a60
}

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

.btn--sm {
    padding: 7px 14px;
    font-size: 13px
}

.btn--block {
    width: 100%
}

/* Header */
.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .4)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto
}

.header-logo {
    flex-shrink: 0
}

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

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

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

.header-nav a:hover {
    background: rgba(255, 255, 255, .07);
    color: var(--c-white)
}

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

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

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--c-text-muted);
    padding: 6px 12px;
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .2);
    border-radius: 20px
}

.header-online .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-green);
    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: 8px;
    background: none;
    border: none;
    outline: none
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    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-nav {
    display: none;
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px
}

.mobile-nav.active {
    display: flex
}

.mobile-nav a {
    color: var(--c-text);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background var(--transition)
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, .07)
}

.mobile-nav a svg {
    width: 16px;
    height: 16px;
    opacity: .8
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 18, 18, .92) 0%, rgba(18, 18, 18, .7) 60%, rgba(18, 18, 18, .4) 100%)
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.hero-text {
    max-width: 560px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 87, 34, .15);
    border: 1px solid rgba(255, 87, 34, .4);
    color: var(--c-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px
}

.hero h1 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--c-white);
    margin-bottom: 16px;
    text-wrap: balance
}

.hero h1 span {
    color: var(--c-primary)
}

.hero-desc {
    font-size: 17px;
    color: #c0c0d8;
    line-height: 1.6;
    margin-bottom: 28px
}

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

.hero-bonus-tile {
    background: rgba(30, 30, 47, .85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px 32px;
    text-align: center;
    min-width: 280px;
    flex-shrink: 0
}

.hero-bonus-tile .bonus-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--c-primary);
    line-height: 1;
    margin-bottom: 6px
}

.hero-bonus-tile .bonus-spins {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-gold);
    margin-bottom: 6px
}

.hero-bonus-tile .bonus-label {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 20px
}

.promo-code-box {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 16px
}

.promo-code-box .code {
    flex: 1;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--c-gold);
    font-family: monospace
}

.promo-code-box .copy-btn {
    background: var(--c-border);
    border: none;
    color: var(--c-text-muted);
    padding: 10px 14px;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 12px;
    font-weight: 600
}

.promo-code-box .copy-btn:hover {
    background: var(--c-primary);
    color: var(--c-white)
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 12px 0;
    border-bottom: 1px solid var(--c-border)
}

.breadcrumbs-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-muted);
    flex-wrap: wrap
}

.breadcrumbs-inner a {
    color: var(--c-text-muted);
    text-decoration: none;
    transition: color var(--transition)
}

.breadcrumbs-inner a:hover {
    color: var(--c-primary)
}

.breadcrumbs-inner .sep {
    opacity: .4
}

.breadcrumbs-inner .current {
    color: var(--c-text)
}

/* Block  */
.block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px
}

.block-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px
}

.block-title svg {
    width: 22px;
    height: 22px;
    color: var(--c-primary);
    flex-shrink: 0
}

/* Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    display: block
}

.info-table th, .info-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-size: 14px;
    white-space: nowrap
}

.info-table th {
    background: rgba(255, 87, 34, .08);
    color: var(--c-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em
}

.info-table td:first-child {
    color: var(--c-text-muted);
    width: 200px;
    font-weight: 500
}

.info-table td:last-child {
    color: var(--c-white)
}

.info-table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.table-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.table-icon svg {
    width: 16px;
    height: 16px;
    color: var(--c-primary);
    flex-shrink: 0
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-sm)
}

/* Mirror block */
.mirror-table {
    width: 100%;
    border-collapse: collapse
}

.mirror-table th, .mirror-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-size: 14px
}

.mirror-table th {
    background: rgba(255, 87, 34, .08);
    color: var(--c-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em
}

.mirror-table td {
    color: var(--c-text)
}

.mirror-table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.mirror-table a {
    color: var(--c-primary);
    text-decoration: none
}

.mirror-table a:hover {
    text-decoration: underline
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600
}

.mirror-status.active {
    color: var(--c-green)
}

.mirror-status .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor
}

.mirror-time {
    font-size: 12px;
    color: var(--c-text-muted)
}

/* App block */
.app-info-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px
}

.app-dl-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--c-secondary);
    border: 1px solid var(--c-border);
    color: var(--c-white);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
    font-size: 14px;
    font-weight: 600
}

.app-dl-btn:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: var(--c-white);
    transform: translateY(-1px)
}

.app-dl-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0
}

.app-dl-btn .dl-sub {
    font-size: 10px;
    font-weight: 400;
    display: block;
    opacity: .7
}

.app-dl-btn .dl-main {
    font-size: 14px;
    font-weight: 700;
    display: block
}

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

.bonus-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-primary)
}

.bonus-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 87, 34, .4)
}

.bonus-card-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center
}

.bonus-card-icon svg {
    width: 48px;
    height: 48px;
    color: var(--c-primary)
}

.bonus-card-amount {
    font-size: 28px;
    font-weight: 900;
    color: var(--c-primary);
    margin-bottom: 4px
}

.bonus-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 8px
}

.bonus-card-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.5;
    margin-bottom: 16px
}

.bonus-card .btn {
    margin-top: auto
}

/* Wheel */
.wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.wheel-container {
    position: relative;
    width: 300px;
    height: 300px
}

.wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 87, 34, .3)
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--c-primary);
    filter: drop-shadow(0 2px 8px rgba(255, 87, 34, .6))
}

.wheel-result {
    text-align: center;
    padding: 20px 28px;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .3);
    border-radius: var(--radius);
    display: none
}

.wheel-result.show {
    display: block
}

.wheel-result.lose {
    background: rgba(239, 68, 68, .08);
    border-color: rgba(239, 68, 68, .25)
}

.wheel-result h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: 8px
}

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

/* Content area */
.review-content {
    line-height: 1.8;
    color: var(--c-text);
    font-size: 16px
}

.review-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--c-white);
    margin: 32px 0 14px
}

.review-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-white);
    margin: 24px 0 10px
}

.review-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--c-text);
    margin: 18px 0 8px
}

.review-content p {
    margin-bottom: 16px;
    color: var(--c-text)
}

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

.review-content li {
    margin-bottom: 6px;
    color: var(--c-text)
}

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

.review-content a {
    color: var(--c-primary)
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    overflow-x: auto;
    display: block
}

.review-content table th {
    background: rgba(255, 87, 34, .1);
    color: var(--c-primary);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-size: 13px;
    font-weight: 700
}

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

.review-content blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 12px 20px;
    background: rgba(255, 87, 34, .05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    color: var(--c-text-muted);
    font-style: italic
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px
}

.review-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color var(--transition)
}

.review-card:hover {
    border-color: rgba(255, 87, 34, .3)
}

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

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

.review-card-name {
    font-weight: 700;
    color: var(--c-white);
    font-size: 14px
}

.review-card-date {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-top: 2px
}

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

.stars svg {
    width: 15px;
    height: 15px;
    fill: var(--c-gold);
    color: var(--c-gold)
}

.review-card-text {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.6
}

/* Review form */
.review-form {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px
}

.review-form h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 20px
}

.form-group {
    margin-bottom: 16px
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .04em
}

.form-control {
    width: 100%;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--c-text);
    transition: border-color var(--transition);
    outline: none
}

.form-control:focus {
    border-color: var(--c-primary)
}

.form-control::placeholder {
    color: var(--c-text-muted)
}

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

.form-msg {
    display: none;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-top: 12px
}

.form-msg.success {
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .3);
    color: var(--c-green);
    display: block
}

.form-msg.error {
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .2);
    color: #ef4444;
    display: block
}

/* Footer */
.site-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 0;
    margin-top: 60px
}

.footer-top {
    display: grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--c-border)
}

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

.footer-brand p {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.6;
    max-width: 260px
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 8px
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--c-text-muted);
    text-decoration: none;
    transition: color var(--transition)
}

.footer-col ul li a:hover {
    color: var(--c-primary)
}

.footer-logos {
    padding: 24px 0;
    border-bottom: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 20px
}

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

.footer-logos-row .lbl {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--c-text-muted);
    letter-spacing: .07em;
    min-width: 90px
}

.logo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-muted);
    transition: all var(--transition);
    white-space: nowrap
}

.logo-chip:hover {
    border-color: rgba(255, 87, 34, .3);
    color: var(--c-text)
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    transition: all var(--transition);
    text-decoration: none
}

.social-link:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: var(--c-white)
}

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

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--c-text-muted)
}

.footer-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    flex-shrink: 0
}

.footer-copyright {
    font-size: 12px;
    color: var(--c-text-muted)
}

.footer-legal {
    font-size: 11px;
    color: var(--c-text-muted);
    line-height: 1.6;
    padding: 16px 0;
    border-top: 1px solid var(--c-border);
    margin-top: 8px
}

/* Sticky widget */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #1a1a2e 0%, #1E1E2F 100%);
    border-top: 2px solid var(--c-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

.widget-text {
    font-size: 14px;
    color: var(--c-white);
    font-weight: 600
}

.widget-text span {
    color: var(--c-primary)
}

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

.widget-code {
    background: rgba(245, 197, 24, .1);
    border: 1px dashed rgba(245, 197, 24, .5);
    color: var(--c-gold);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .1em;
    padding: 6px 14px;
    border-radius: 6px;
    font-family: monospace
}

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

.widget-close:hover {
    color: var(--c-white)
}

/* Slider (bonuses mobile) */
.bonuses-slider-wrap {
    position: relative;
    overflow: hidden
}

.bonuses-slider {
    display: flex;
    gap: 16px;
    transition: transform .4s ease
}

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

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: background var(--transition);
    border: none;
    outline: none
}

.slider-dot.active {
    background: var(--c-primary)
}

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

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

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--c-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background var(--transition)
}

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

.faq-q svg {
    width: 18px;
    height: 18px;
    color: var(--c-primary);
    flex-shrink: 0;
    transition: transform .3s ease
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg)
}

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

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

/* Info page */
.info-content {
    padding: 40px 0 60px
}

.info-content h1 {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: 24px;
    text-wrap: balance
}

.info-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-white);
    margin: 28px 0 12px
}

.info-content p {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: 14px
}

.info-content ul {
    padding-left: 20px;
    margin-bottom: 16px
}

.info-content li {
    font-size: 15px;
    color: var(--c-text-muted);
    margin-bottom: 6px;
    line-height: 1.7
}

.info-content a {
    color: var(--c-primary)
}

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

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

.fade-up {
    animation: fadeInUp .5s ease both
}

.fade-up-d1 {
    animation-delay: .1s
}

.fade-up-d2 {
    animation-delay: .2s
}

.fade-up-d3 {
    animation-delay: .3s
}

.wpcf7-hidden {
    display: none !important
}

.elementor-clearfix::after {
    content: '';
    display: table;
    clear: both
}

.wp-post-image {
    max-width: 100%
}

.aligncenter {
    display: block;
    margin: 0 auto
}

.wp-caption-text {
    font-size: 12px;
    color: var(--c-text-muted)
}

.entry-meta {
    font-size: 13px;
    color: var(--c-text-muted)
}

.tag-cloud-link {
    display: inline-block;
    padding: 2px 8px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 4px;
    font-size: 12px;
    color: var(--c-text-muted);
    margin: 2px;
    text-decoration: none
}

.rtl-hidden {
    display: none
}

.v-hidden {
    visibility: hidden
}

.fl-node {
    position: relative
}

#qc4x7 {
    background: transparent
}

.t9bk2 {
    font-weight: inherit
}

.m3rp5 {
    display: inline
}

.k8wj1 {
    color: inherit
}

.p2nx6 {
    margin: 0
}

.z7yq4 {
    padding: 0
}

.b5tl3 {
    border: none
}

.r6ms8 {
    outline: none
}

.j2hf9 {
    cursor: default
}

.y4dk7 {
    overflow: visible
}

.g8cv2 {
    position: static
}

.x3nb5 {
    float: none
}

.s9qf1 {
    clear: none
}

.w6rl4 {
    width: auto
}

.n7mp3 {
    height: auto
}

.e2xk8 {
    opacity: 1
}

.v5tn1 {
    visibility: visible
}

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

    .hero-bonus-tile {
        display: none
    }
}

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

    .burger {
        display: flex
    }

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

    .bonuses-slider {
        flex-wrap: nowrap
    }

    .bonuses-grid .bonus-card {
        min-width: 260px;
        flex-shrink: 0
    }

    .slider-nav {
        display: flex
    }

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

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

    .hero-content {
        flex-direction: column
    }

    .hero-text {
        max-width: 100%
    }

    .sticky-widget {
        flex-wrap: wrap;
        padding: 10px 16px
    }

    .sticky-widget .widget-text {
        font-size: 12px
    }

    .app-info-grid {
        grid-template-columns:1fr
    }

    .app-dl-btns {
        flex-direction: column
    }

    .block {
        padding: 18px
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px
    }

    .btn--lg {
        padding: 12px 22px;
        font-size: 14px
    }

    .hero-btns {
        flex-direction: column
    }

    .header-actions .btn {
        padding: 8px 12px;
        font-size: 13px
    }
}
