:root {
    --clr-bg: #1A1429;
    --clr-header: #1C142F;
    --clr-btn-login: #2D1239;
    --clr-btn-reg: #613225;
    --clr-accent: #c97b3a;
    --clr-text: #e8e0f0;
    --clr-muted: #a090b8;
    --clr-border: #2e2448;
    --clr-card: #221a38;
    --clr-pros: #1a3328;
    --clr-cons: #33191a;
    --radius: 12px;
    --radius-sm: 7px;
    --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --font: 'Inter', 'Roboto', Arial, sans-serif;
}

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

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

body {
    font-family: var(--font);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a:hover {
    color: #e8a055;
}

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

h1, h2, h3, h4 {
    line-height: 1.25;
    color: #f0eaff;
    font-weight: 700;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    margin-bottom: 0.85rem;
}

h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 0.9rem;
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: 0.9rem;
}

li {
    margin-bottom: 0.3rem;
}

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

th, td {
    padding: 0.6rem 0.9rem;
    text-align: left;
    border: 1px solid var(--clr-border);
}

th {
    background: rgba(45, 18, 57, .6);
    font-weight: 600;
}

tr:nth-child(even) td {
    background: rgba(45, 18, 57, .3);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.lb-section {
    padding: 3.5rem 0;
}

.lb-section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.lb-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-btn-reg), var(--clr-accent));
    margin: 0.6rem auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: .02em;
}

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

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

.btn-login {
    background: var(--clr-btn-login);
    color: #d9c8f0;
    border: 1px solid rgba(97, 50, 37, .4);
}

.btn-reg {
    background: var(--clr-btn-reg);
    color: #f5e0d0;
    border: 1px solid rgba(201, 123, 58, .35);
}

.btn-accent {
    background: linear-gradient(135deg, var(--clr-btn-reg) 0%, #7a3d28 100%);
    color: #fff;
    font-size: 1rem;
    padding: 0.75rem 2rem;
}

.lb-x7k2 {
    display: none;
    visibility: hidden;
}

.lb-3p9q {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.lb-m4r1 {
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 68px;
}

.header-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.header-nav a {
    color: var(--clr-muted);
    font-size: 0.88rem;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-online {
    font-size: 0.78rem;
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.header-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

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

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    height: 2px;
    background: var(--clr-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-slider-wrap {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    background: var(--clr-header);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(.45) saturate(1.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 3rem 1.25rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(97, 50, 37, .8);
    color: #f5d0b0;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 99px;
    margin-bottom: 1rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(1.6rem, 4.5vw, 2.8rem);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .7);
}

.hero-content p {
    font-size: 1.05rem;
    color: #cbbfe0;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

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

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

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

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(28, 20, 47, .65);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    font-size: 1.1rem;
}

.hero-arrow:hover {
    background: rgba(97, 50, 37, .8);
}

.hero-arrow-prev {
    left: 1.2rem;
}

.hero-arrow-next {
    right: 1.2rem;
}

/* ═══════════════════════════════════════════
   PROS / CONS
═══════════════════════════════════════════ */
.pros-cons-grid {
    display: flex;
    gap: 1.25rem;
}

.pros-col, .cons-col {
    flex: 1;
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--clr-border);
}

.pros-col {
    border-top: 3px solid #3cb371;
    background: var(--clr-pros);
}

.cons-col {
    border-top: 3px solid #c0392b;
    background: var(--clr-cons);
}

.pros-cons-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem;
}

.pros-col .pros-cons-title {
    color: #5dde8a;
}

.cons-col .pros-cons-title {
    color: #e07070;
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
}

.pros-list li, .cons-list li {
    padding: 0.45rem 0;
    padding-left: 1.6rem;
    position: relative;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    margin-bottom: 0;
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5dde8a;
    font-weight: 700;
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e07070;
    font-weight: 700;
}

/* ═══════════════════════════════════════════
   WINNERS TABLE
═══════════════════════════════════════════ */
.winners-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
}

.winners-table {
    width: 100%;
    min-width: 420px;
}

.winners-table thead th {
    background: linear-gradient(135deg, #2D1239 0%, #1C142F 100%);
    color: var(--clr-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: .07em;
    padding: 0.9rem 1.1rem;
}

.winners-table tbody tr {
    transition: background var(--transition);
}

.winners-table tbody tr:hover td {
    background: rgba(97, 50, 37, .18);
}

.winners-table td {
    font-size: 0.9rem;
    padding: 0.7rem 1.1rem;
}

.winners-rank {
    font-weight: 700;
    color: var(--clr-muted);
}

.winners-rank.top1 {
    color: #ffd700;
}

.winners-rank.top2 {
    color: #c0c0c0;
}

.winners-rank.top3 {
    color: #cd7f32;
}

.winners-amount {
    font-weight: 700;
    color: #6de891;
}

.winners-game {
    color: var(--clr-muted);
    font-size: 0.82rem;
}

/* ═══════════════════════════════════════════
   VIDEO REVIEW
═══════════════════════════════════════════ */
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ═══════════════════════════════════════════
   BONUSES
═══════════════════════════════════════════ */
.bonuses-grid {
    display: flex;
    gap: 1.25rem;
}

.bonus-card {
    flex: 1;
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.75rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform var(--transition), box-shadow 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: linear-gradient(90deg, var(--clr-btn-reg), var(--clr-accent));
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .5);
    border-color: rgba(201, 123, 58, .35);
}

.bonus-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.bonus-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-accent);
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f0eaff;
}

.bonus-desc {
    font-size: 0.88rem;
    color: var(--clr-muted);
    flex: 1;
}

.bonus-tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    background: rgba(97, 50, 37, .45);
    color: var(--clr-accent);
    border-radius: 99px;
    font-weight: 600;
}

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

.bonuses-slider-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.bonuses-slider-controls {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

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

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

/* ═══════════════════════════════════════════
   WHEEL OF FORTUNE
═══════════════════════════════════════════ */
.wheel-section-inner {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

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

.wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(97, 50, 37, .5), 0 0 0 5px #2D1239;
    display: block;
}

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

.wheel-info {
    max-width: 340px;
    text-align: center;
}

.wheel-info h2 {
    margin-bottom: 0.75rem;
}

.wheel-info p {
    color: var(--clr-muted);
    margin-bottom: 1.5rem;
}

.wheel-result {
    margin-top: 1.25rem;
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    display: none;
    animation: fadeInUp 0.4s ease;
}

.wheel-result.win {
    background: rgba(28, 51, 40, .8);
    border: 1px solid #3cb371;
    color: #5dde8a;
    display: block;
}

.wheel-result.lose {
    background: rgba(51, 25, 26, .8);
    border: 1px solid #c0392b;
    color: #e07070;
    display: block;
}

.wheel-result .btn-accent {
    margin-top: 0.75rem;
}

.btn-spin {
    background: linear-gradient(135deg, #613225 0%, #8b4a30 100%);
    color: #fff;
    font-size: 1.05rem;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition);
    letter-spacing: .03em;
}

.btn-spin:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(97, 50, 37, .6);
}

.btn-spin:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.reviews-grid {
    display: flex;
    gap: 1.1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.review-card {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.4rem;
    flex: 1 1 280px;
    transition: transform var(--transition), border-color var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 123, 58, .3);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.85rem;
}

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

.review-meta {
}

.review-author {
    font-weight: 700;
    font-size: 0.92rem;
    color: #f0eaff;
    margin-bottom: 0.15rem;
}

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

.star-svg {
    width: 14px;
    height: 14px;
    fill: #f5a623;
}

.star-svg.empty {
    fill: var(--clr-border);
}

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

.review-form-wrap {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 2rem;
    max-width: 560px;
    margin: 0 auto;
}

.review-form-wrap h3 {
    margin-bottom: 1.25rem;
    text-align: center;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.form-field label {
    font-size: 0.85rem;
    color: var(--clr-muted);
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    background: rgba(28, 20, 47, .8);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.9rem;
    color: var(--clr-text);
    font-family: var(--font);
    font-size: 0.92rem;
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}

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

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

.form-success {
    display: none;
    background: rgba(28, 51, 40, .7);
    border: 1px solid #3cb371;
    color: #5dde8a;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
    animation: fadeInUp 0.35s ease;
}

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

/* ═══════════════════════════════════════════
   CONTENT REVIEW BLOCK
═══════════════════════════════════════════ */
.content-review-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 2.25rem 2rem;
}

.content-review-block h1,
.content-review-block h2,
.content-review-block h3,
.content-review-block h4 {
    margin-top: 1.4rem;
    margin-bottom: 0.7rem;
}

.content-review-block h1:first-child,
.content-review-block h2:first-child {
    margin-top: 0;
}

.content-review-block p {
    color: #cbbfe0;
}

.content-review-block ul,
.content-review-block ol {
    color: #cbbfe0;
}

.content-review-block table {
    margin: 1rem 0;
}

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

.content-review-block strong {
    color: #f0eaff;
}

.content-review-block blockquote {
    border-left: 3px solid var(--clr-accent);
    padding-left: 1rem;
    color: var(--clr-muted);
    font-style: italic;
    margin: 1rem 0;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(45, 18, 57, .4);
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    padding: 1.1rem 1.3rem;
    margin-top: 2rem;
}

.author-box-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-box-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.author-box-desc {
    font-size: 0.83rem;
    color: var(--clr-muted);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    margin-top: 1rem;
    padding: 3rem 0 1.5rem;
}

.footer-top {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-logo-col {
    flex: 0 0 auto;
}

.footer-logo-col img {
    height: 38px;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.footer-logo-desc {
    font-size: 0.82rem;
    color: var(--clr-muted);
    max-width: 200px;
    line-height: 1.5;
}

.footer-nav-col {
    flex: 1 1 140px;
}

.footer-nav-col h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-muted);
    margin-bottom: 0.85rem;
}

.footer-nav-col a {
    display: block;
    font-size: 0.86rem;
    color: var(--clr-muted);
    margin-bottom: 0.45rem;
}

.footer-nav-col a:hover {
    color: var(--clr-text);
}

.footer-brands {
    margin-bottom: 1.5rem;
}

.footer-brands h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-muted);
    margin-bottom: 0.85rem;
}

.footer-brand-logos {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-brand-logo {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
    color: var(--clr-muted);
    font-weight: 600;
    transition: background var(--transition);
}

.footer-brand-logo:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--clr-text);
}

.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: 1.25rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--clr-muted);
    margin-bottom: 0.4rem;
}

.footer-legal {
    font-size: 0.74rem;
    color: rgba(160, 144, 184, .6);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   BOTTOM WIDGET
═══════════════════════════════════════════ */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(135deg, #2D1239 0%, #3d1a4a 100%);
    border-top: 2px solid var(--clr-btn-reg);
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
}

.widget-text {
    color: #e8d8f8;
    font-size: 0.9rem;
    font-weight: 600;
}

.widget-bonus {
    color: var(--clr-accent);
    font-weight: 800;
    font-size: 1rem;
}

.widget-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .08);
    border: none;
    color: var(--clr-muted);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 26px;
    text-align: center;
    transition: background var(--transition);
}

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

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.anim-fadein {
    animation: fadeIn 0.55s ease both;
}

.anim-fadeinup {
    animation: fadeInUp 0.5s ease both;
}

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

[data-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════ */
.breadcrumb-wrap {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.83rem;
    color: var(--clr-muted);
    flex-wrap: wrap;
}

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

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

.breadcrumb-sep {
    color: rgba(160, 144, 184, .4);
}

/* ═══════════════════════════════════════════
   MISC / WP-STYLE HIDDEN ELEMENTS
═══════════════════════════════════════════ */
.wp-block-group {
    display: block;
}

.entry-content {
    display: block;
}

.elementor-section {
    display: block;
}

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

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .pros-cons-grid {
        flex-direction: column;
    }

    .bonuses-grid {
        flex-direction: column;
    }

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

    .wheel-section-inner {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--clr-header);
        flex-direction: column;
        padding: 1rem;
        gap: 0.25rem;
        border-bottom: 1px solid var(--clr-border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
        z-index: 999;
    }

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

    .header-nav a {
        padding: 0.7rem 1rem;
        width: 100%;
    }

    .burger {
        display: flex;
    }

    .header-right {
        gap: 0.5rem;
    }

    .header-right .btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.82rem;
    }

    .hero-slider-wrap {
        min-height: 340px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .lb-section {
        padding: 2.25rem 0;
    }

    .bonuses-grid {
        flex-direction: row;
        overflow: hidden;
    }

    .bonus-card {
        flex: 0 0 85%;
        max-width: 85%;
    }

    .reviews-grid {
        flex-direction: column;
    }

    .sticky-widget {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.75rem 3rem 0.75rem 1rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 1.25rem;
    }

    .content-review-block {
        padding: 1.4rem 1rem;
    }

    .review-form-wrap {
        padding: 1.4rem 1rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-right .btn-login {
        display: none;
    }

    .hero-content p {
        display: none;
    }
}

@media (max-width: 768px) {
    #bonuses.lb-section {
        padding: 44px 0;
        overflow: hidden;
    }

    #bonuses .container {
        padding: 0 14px;
    }

    #bonuses .lb-section-title {
        margin-bottom: 20px;
    }

    #bonuses .lb-section-title h2 {
        font-size: 1.45rem;
        line-height: 1.2;
    }

    #bonuses .bonuses-slider-wrap {
        overflow: visible;
    }

    #bonuses .bonuses-slider-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px 14px;
    }

    #bonuses .bonuses-slider-track::-webkit-scrollbar {
        display: none;
    }

    #bonuses .bonuses-slider-track {
        scrollbar-width: none;
    }

    #bonuses .bonus-card {
        flex: 0 0 86%;
        min-width: 86%;
        max-width: 86%;
        scroll-snap-align: center;
        padding: 20px 16px;
        border-radius: 14px;
        gap: 12px;
    }

    #bonuses .bonus-icon {
        font-size: 2rem;
    }

    #bonuses .bonus-name {
        font-size: 1rem;
        line-height: 1.3;
    }

    #bonuses .bonus-amount {
        font-size: 1.6rem;
        line-height: 1;
    }

    #bonuses .bonus-desc {
        font-size: .84rem;
        line-height: 1.55;
    }

    #bonuses .bonus-tag {
        font-size: .7rem;
        padding: 5px 10px;
    }

    #bonuses .btn {
        width: 100%;
        min-height: 46px;
        font-size: .88rem;
        margin-top: auto !important;
    }

    #bonuses .bonuses-slider-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
    }

    #bonuses .bonuses-dot {
        width: 7px;
        height: 7px;
    }

    #bonuses .bonuses-dot.active {
        transform: scale(1.25);
    }
}

@media (max-width: 480px) {
    #bonuses .container {
        padding: 0 12px;
    }

    #bonuses .bonus-card {
        flex-basis: 92%;
        min-width: 92%;
        max-width: 92%;
        padding: 18px 14px;
    }

    #bonuses .bonus-desc {
        font-size: .82rem;
    }

    #bonuses .btn {
        min-height: 44px;
        font-size: .84rem;
    }
}