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

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

:root {
    --cl-header: #332d32;
    --cl-header-dark: #261f26;
    --cl-bg: #4b0a4e;
    --cl-bg-dark: #3a0840;
    --cl-bg-card: #5c1060;
    --cl-btn-blue: #1795e3;
    --cl-btn-blue-hv: #0f7cc9;
    --cl-btn-green: #81de22;
    --cl-btn-green-hv: #6bc418;
    --cl-text: #f0e6f1;
    --cl-text-muted: #c4a8c6;
    --cl-accent: #e3b017;
    --cl-border: rgba(255, 255, 255, 0.12);
    --cl-border-bright: rgba(129, 222, 34, 0.35);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 20px rgba(129, 222, 34, 0.18);
    --transition: 0.22s ease;
    --font: 'Oswald', sans-serif;
}

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

body {
    font-family: var(--font);
    color: var(--cl-text);
    background: var(--cl-bg);
    min-height: 100vh;
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

a {
    color: var(--cl-btn-blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--cl-btn-green);
}

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

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

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

.box {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

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

.btn--green {
    background: var(--cl-btn-green);
    color: #1a3a00;
}

.btn--green:hover {
    background: var(--cl-btn-green-hv);
    color: #1a3a00;
    box-shadow: 0 4px 18px rgba(129, 222, 34, 0.4);
}

.btn--blue {
    background: var(--cl-btn-blue);
    color: #fff;
}

.btn--blue:hover {
    background: var(--cl-btn-blue-hv);
    color: #fff;
    box-shadow: 0 4px 18px rgba(23, 149, 227, 0.4);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--cl-btn-green);
    color: var(--cl-btn-green);
}

.btn--outline:hover {
    background: var(--cl-btn-green);
    color: #1a3a00;
}

.btn--sm {
    font-size: 0.8rem;
    padding: 7px 15px;
}

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

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(129, 222, 34, 0.5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(129, 222, 34, 0);
    }
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cl-accent);
    margin-bottom: 6px;
}

.section-sub {
    color: var(--cl-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* === HEADER === */
.site-header {
    background: var(--cl-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    min-height: 64px;
}

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

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

.header-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cl-text);
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.header-logo-text span {
    color: var(--cl-btn-green);
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--cl-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

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

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

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

.header-winner {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    font-size: 0.78rem;
    color: var(--cl-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
}

.header-winner strong {
    color: var(--cl-btn-green);
    font-weight: 600;
}

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

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cl-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* === HERO === */
.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--cl-bg-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/game-banner.png') center/cover no-repeat;
    filter: brightness(0.45);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(75, 10, 78, 0.92) 0%, rgba(75, 10, 78, 0.5) 60%, transparent 100%);
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(129, 222, 34, 0.15);
    border: 1px solid var(--cl-btn-green);
    color: var(--cl-btn-green);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
    color: var(--cl-accent);
}

.hero-desc {
    font-size: 1rem;
    color: var(--cl-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-stars {
    display: flex;
    gap: 3px;
}

.hero-stars span {
    font-size: 1.2rem;
    color: var(--cl-accent);
}

.hero-rating-text {
    font-size: 0.85rem;
    color: var(--cl-text-muted);
}

.hero-rating-text strong {
    color: var(--cl-text);
    font-size: 1rem;
}

/* === BREADCRUMBS === */
.breadcrumbs-wrap {
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--cl-border);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    flex-wrap: wrap;
    font-size: 0.82rem;
}

.breadcrumbs a {
    color: var(--cl-text-muted);
}

.breadcrumbs a:hover {
    color: var(--cl-btn-green);
}

.breadcrumbs .sep {
    color: rgba(255, 255, 255, 0.25);
}

.breadcrumbs .current {
    color: var(--cl-text);
}

/* === CONTENT SECTIONS === */
.section {
    padding: 48px 0;
}

.section + .section {
    border-top: 1px solid var(--cl-border);
}

/* === DEMO + DETAILS === */
.demo-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.demo-wrap {
    background: var(--cl-header-dark);
    border-radius: var(--radius-md);
    border: 1px solid var(--cl-border);
    box-shadow: var(--shadow);
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.demo-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.demo-footer {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--cl-header);
}

.demo-footer-label {
    font-size: 0.82rem;
    color: var(--cl-text-muted);
}

.details-table-wrap {
    background: var(--cl-header-dark);
    border-radius: var(--radius-md);
    border: 1px solid var(--cl-border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.details-table-title {
    background: var(--cl-header);
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cl-accent);
    border-bottom: 1px solid var(--cl-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
}

.details-table tr {
    border-bottom: 1px solid var(--cl-border);
    transition: background var(--transition);
}

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

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

.details-table td {
    padding: 9px 16px;
    font-size: 0.88rem;
    line-height: 1.4;
}

.details-table td:first-child {
    color: var(--cl-text-muted);
    width: 46%;
    display: flex;
    align-items: center;
    gap: 7px;
}

.details-table td:first-child svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--cl-btn-blue);
}

.details-table td:last-child {
    color: var(--cl-text);
    font-weight: 500;
}

.badge-rtp {
    display: inline-block;
    background: rgba(23, 149, 227, 0.2);
    color: var(--cl-btn-blue);
    border: 1px solid var(--cl-btn-blue);
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-vol {
    display: inline-block;
    background: rgba(227, 176, 23, 0.18);
    color: var(--cl-accent);
    border: 1px solid var(--cl-accent);
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 0.8rem;
    font-weight: 700;
}

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

.adv-tile {
    background: var(--cl-header-dark);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius-md);
    padding: 24px 18px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.adv-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(129, 222, 34, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.adv-tile:hover {
    transform: translateY(-4px);
    border-color: var(--cl-border-bright);
    box-shadow: var(--shadow-glow);
}

.adv-icon {
    width: 52px;
    height: 52px;
    background: rgba(129, 222, 34, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--cl-btn-green);
}

.adv-icon svg {
    width: 26px;
    height: 26px;
}

.adv-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--cl-text);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.adv-text {
    font-size: 0.84rem;
    color: var(--cl-text-muted);
    line-height: 1.55;
}

/* === MOBILE BLOCK === */
.mobile-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
}

.phone-frame {
    width: 200px;
    flex-shrink: 0;
    position: relative;
}

.phone-outer {
    background: #1a1a1a;
    border-radius: 36px;
    padding: 14px 10px;
    border: 3px solid #444;
    box-shadow: 0 0 0 6px #222, 0 8px 32px rgba(0, 0, 0, 0.6);
    position: relative;
}

.phone-notch {
    width: 60px;
    height: 10px;
    background: #111;
    border-radius: 8px;
    margin: 0 auto 10px;
}

.phone-screen {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-home {
    width: 34px;
    height: 4px;
    background: #444;
    border-radius: 4px;
    margin: 10px auto 0;
}

.mobile-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.mobile-table thead th {
    background: var(--cl-header);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cl-text-muted);
    border-bottom: 2px solid var(--cl-border-bright);
}

.mobile-table tbody tr {
    border-bottom: 1px solid var(--cl-border);
}

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

.mobile-table td {
    padding: 9px 14px;
    font-size: 0.87rem;
    color: var(--cl-text);
}

.mobile-table td:first-child {
    color: var(--cl-text-muted);
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--cl-header);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius-sm);
    padding: 9px 16px;
    color: var(--cl-text);
    font-family: var(--font);
    font-size: 0.82rem;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
    text-decoration: none;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cl-btn-green);
    color: var(--cl-text);
}

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

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn-sub {
    font-size: 0.7rem;
    color: var(--cl-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.app-btn-name {
    font-size: 0.9rem;
    font-weight: 600;
}

/* === BONUSES SLIDER === */
.bonuses-slider-wrap {
    position: relative;
}

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

.bonus-card {
    background: linear-gradient(145deg, var(--cl-header-dark), var(--cl-bg-card));
    border: 1px solid var(--cl-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.bonus-card-header {
    background: var(--cl-header);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--cl-border);
}

.bonus-casino-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    background: #fff;
    padding: 3px;
}

.bonus-casino-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--cl-text);
}

.bonus-casino-rating {
    font-size: 0.75rem;
    color: var(--cl-accent);
}

.bonus-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cl-btn-green);
    line-height: 1.1;
}

.bonus-amount span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--cl-text-muted);
    display: block;
    margin-top: 2px;
}

.bonus-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 4px;
}

.bonus-features li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.83rem;
    color: var(--cl-text-muted);
}

.bonus-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cl-btn-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.bonus-card-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--cl-border);
}

.bonus-terms {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(227, 176, 23, 0.15);
    border: 1px solid var(--cl-accent);
    color: var(--cl-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.swiper {
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
}

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

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

.slider-dot.active {
    background: var(--cl-btn-green);
    width: 22px;
    border-radius: 4px;
}

/* === STRATEGIES === */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.strategy-card {
    background: var(--cl-header-dark);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    transform: translateY(-3px);
    border-color: var(--cl-btn-blue);
}

.strategy-img {
    position: relative;
    height: 140px;
    overflow: hidden;
    background: var(--cl-bg-dark);
}

.strategy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.strategy-card:hover .strategy-img img {
    transform: scale(1.06);
}

.strategy-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
}

.strategy-num {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
    background: var(--cl-btn-green);
    color: #1a3a00;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strategy-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strategy-name {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--cl-text);
    letter-spacing: 0.03em;
}

.strategy-desc {
    font-size: 0.83rem;
    color: var(--cl-text-muted);
    line-height: 1.5;
    flex: 1;
}

.strategy-footer {
    padding: 10px 16px;
    border-top: 1px solid var(--cl-border);
}

/* === CONTENT REVIEW === */
.review-block {
    background: var(--cl-header-dark);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius-md);
    padding: 32px 36px;
    box-shadow: var(--shadow);
}

.author-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius-sm);
    margin-bottom: 28px;
}

.author-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--cl-btn-blue);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--cl-header);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cl-btn-blue);
    overflow: hidden;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cl-text);
}

.author-title {
    font-size: 0.8rem;
    color: var(--cl-btn-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.author-bio {
    font-size: 0.82rem;
    color: var(--cl-text-muted);
    line-height: 1.5;
}

.author-bio a {
    color: var(--cl-btn-blue);
}

.review-content {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--cl-text);
}

.review-content h2, .review-content h3, .review-content h4 {
    color: var(--cl-accent);
    font-weight: 700;
    text-transform: uppercase;
    margin: 22px 0 10px;
    letter-spacing: 0.04em;
}

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

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

.review-content h4 {
    font-size: 0.95rem;
}

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

.review-content ul, .review-content ol {
    margin: 0 0 14px 20px;
}

.review-content li {
    margin-bottom: 5px;
}

.review-content a {
    color: var(--cl-btn-blue);
}

.review-content a:hover {
    color: var(--cl-btn-green);
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.87rem;
}

.review-content table th {
    background: var(--cl-header);
    padding: 9px 12px;
    text-align: left;
    color: var(--cl-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--cl-border-bright);
}

.review-content table td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--cl-border);
}

.review-content table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.review-content blockquote {
    border-left: 3px solid var(--cl-btn-green);
    padding: 10px 16px;
    margin: 16px 0;
    background: rgba(129, 222, 34, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--cl-text-muted);
    font-style: italic;
}

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

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

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

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

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

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

.faq-q.active {
    color: var(--cl-btn-green);
}

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

.faq-q.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    padding: 4px 20px 16px;
    font-size: 0.88rem;
    color: var(--cl-text-muted);
    line-height: 1.65;
    border-top: 1px solid var(--cl-border);
}

.faq-a.open {
    display: block;
}

/* === FOOTER === */
.site-footer {
    background: var(--cl-header-dark);
    border-top: 1px solid var(--cl-border);
    margin-top: auto;
    padding: 40px 0 24px;
}

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

.footer-brand img {
    height: 44px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand-text {
    font-size: 0.83rem;
    color: var(--cl-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cl-text-muted);
    margin-bottom: 12px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-nav-list a {
    font-size: 0.85rem;
    color: var(--cl-text-muted);
    transition: color var(--transition);
}

.footer-nav-list a:hover {
    color: var(--cl-btn-green);
}

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

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

.footer-payments .fp-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.75rem;
    color: var(--cl-text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
}

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--cl-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

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

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

.social-icon:hover {
    background: var(--cl-btn-blue);
    border-color: var(--cl-btn-blue);
    color: #fff;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--cl-border);
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

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

.footer-legal {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.55;
    margin-top: 12px;
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-provider img {
    height: 26px;
    opacity: 0.55;
    filter: grayscale(0.4);
    transition: opacity var(--transition);
}

.footer-provider img:hover {
    opacity: 0.85;
}

/* === STICKY WIDGET === */
.sticky-widget {
    position: fixed;
    right: 16px;
    bottom: 24px;
    z-index: 999;
    background: var(--cl-header);
    border: 1px solid var(--cl-border-bright);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(129, 222, 34, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 180px;
    animation: slide-in-right 0.5s ease forwards;
}

@keyframes slide-in-right {
    from {
        transform: translateX(200px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.sticky-widget-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.sticky-widget-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--cl-text);
    text-align: center;
    line-height: 1.2;
}

.sticky-widget-bonus {
    font-size: 0.75rem;
    color: var(--cl-btn-green);
    text-align: center;
    font-weight: 600;
}

.sticky-widget-close {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--cl-text-muted);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: background var(--transition);
}

.sticky-widget-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.wave-sep {
    display: block;
    width: 100%;
    height: 32px;
    background: transparent;
}

.wp-block-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.has-text-align-center {
    text-align: center;
}

.alignnone {
    margin: 0;
}

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.entry-content .wp-block-image {
    margin: 16px 0;
}

.commentlist {
    list-style: none;
}

.single-post-content {
    max-width: 860px;
    margin: 0 auto;
}

.post-thumbnail {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.entry-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.tag-cloud-link {
    display: inline-block;
    padding: 2px 7px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    font-size: 0.78rem;
    margin: 2px;
}

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

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

    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cl-header-dark);
        padding: 12px 16px;
        border-bottom: 1px solid var(--cl-border);
        z-index: 999;
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav a {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .burger {
        display: flex;
    }

    .header-top {
        gap: 8px;
    }

    .hero {
        min-height: 360px;
    }

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

    .hero-desc {
        display: none;
    }

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

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

    .bonuses-grid {
        display: none;
    }

    .bonuses-slider-wrap .swiper {
        display: block;
    }

    .slider-nav {
        display: flex;
    }

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

    .phone-frame {
        display: none;
    }

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

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

    .sticky-widget {
        max-width: 150px;
        padding: 10px 12px;
    }

    .header-winner {
        display: none;
    }
}

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

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

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .demo-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .details-table td:first-child {
        width: auto;
    }
}

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

.section {
    animation: fade-up 0.5s ease both;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.xe9f2a {
    display: none;
    position: absolute;
    left: -9999px;
}

.zv7m1b {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.q3tk8c-placeholder {
    opacity: 0;
    pointer-events: none;
}

.b1p5rv::after {
    content: '';
    display: block;
    clear: both;
}

.fd2c9e {
    font-size: 0;
    line-height: 0;
}

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