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

:root {
    --c-header: #01281D;
    --c-footer: #01281D;
    --c-bg: #004534;
    --c-bg-alt: #013828;
    --c-gold: #F6EBB5;
    --c-gold-dark: #d4c47a;
    --c-gold-btn: #F6EBB5;
    --c-text: #e8f4f0;
    --c-text-muted: #a8c8bc;
    --c-border: rgba(246, 235, 181, 0.18);
    --c-card: rgba(0, 0, 0, 0.28);
    --c-card-hover: rgba(0, 0, 0, 0.42);
    --c-green-light: #007a55;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.38);
    --shadow-gold: 0 2px 18px rgba(246, 235, 181, 0.18);
    --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
    --font: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--c-bg);
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--c-gold-dark);
}

ul {
    list-style: none;
}

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

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

.box {
    position: relative;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.btn--primary {
    background: var(--c-gold-btn);
    color: #01281D;
    padding: 12px 26px;
    box-shadow: 0 2px 14px rgba(246, 235, 181, 0.22);
}

.btn--primary:hover {
    background: var(--c-gold-dark);
    color: #01281D;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(246, 235, 181, 0.32);
}

.btn--secondary {
    background: transparent;
    color: var(--c-gold);
    border: 1.5px solid var(--c-gold);
    padding: 10px 22px;
}

.btn--secondary:hover {
    background: rgba(246, 235, 181, 0.1);
    color: var(--c-gold);
    transform: translateY(-2px);
}

.btn--lg {
    font-size: 1.08rem;
    padding: 15px 36px;
    border-radius: var(--radius-md);
}

.btn--sm {
    font-size: 0.82rem;
    padding: 7px 16px;
}

.btn--bonus {
    background: linear-gradient(135deg, #c9a227 0%, var(--c-gold) 100%);
    color: #01281D;
    padding: 12px 26px;
    box-shadow: 0 2px 14px rgba(201, 162, 39, 0.28);
}

.btn--bonus:hover {
    background: linear-gradient(135deg, #b8911e 0%, var(--c-gold-dark) 100%);
    color: #01281D;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 162, 39, 0.38);
}

/* ─── SECTION TITLES ──────────────────────────────── */
.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-gold);
    margin-bottom: 10px;
    line-height: 1.25;
}

.section-subtitle {
    color: var(--c-text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.55;
}

.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-head .section-title {
    font-size: 2rem;
}

/* ─── HEADER ──────────────────────────────────────── */
.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid rgba(246, 235, 181, 0.1);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
}

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--c-text);
    padding: 8px 13px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(246, 235, 181, 0.1);
    color: var(--c-gold);
}

.header-nav a svg {
    width: 16px;
    height: 16px;
    opacity: 0.85;
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 20px;
    border: 1px solid rgba(246, 235, 181, 0.12);
    white-space: nowrap;
}

.online-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

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

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

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-gold);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 40, 29, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-text);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    width: 280px;
    transition: all var(--transition);
}

.mobile-menu a:hover {
    background: rgba(246, 235, 181, 0.1);
    color: var(--c-gold);
}

.mobile-menu a svg {
    width: 20px;
    height: 20px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--c-gold);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-btns {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-rich.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0, 69, 52, 0.93) 0%, rgba(1, 40, 29, 0.78) 55%, rgba(0, 40, 28, 0.55) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    padding: 70px 0;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 235, 181, 0.12);
    border: 1px solid rgba(246, 235, 181, 0.3);
    color: var(--c-gold);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

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

.hero-desc {
    color: rgba(232, 244, 240, 0.85);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 520px;
}

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

.hero-bonus-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(246, 235, 181, 0.28);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    min-width: 240px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-gold), var(--shadow);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-bonus-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    line-height: 1;
}

.hero-bonus-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--c-gold);
    line-height: 1.1;
    margin-bottom: 4px;
}

.hero-bonus-label {
    color: var(--c-text-muted);
    font-size: 0.84rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.hero-bonus-spins {
    display: inline-block;
    background: var(--c-green-light);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

/* ─── SECTION WRAPPER ─────────────────────────────── */
.section {
    padding: 70px 0;
}

.section--alt {
    background: var(--c-bg-alt);
}

.section--dark {
    background: rgba(0, 0, 0, 0.18);
}

/* ─── TABLE OF CONTENTS ───────────────────────────── */
.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    transition: all var(--transition);
    color: var(--c-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.toc-item:hover {
    background: var(--c-card-hover);
    border-color: rgba(246, 235, 181, 0.35);
    color: var(--c-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.toc-icon {
    width: 38px;
    height: 38px;
    background: rgba(246, 235, 181, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toc-icon svg {
    width: 20px;
    height: 20px;
    color: var(--c-gold);
}

/* ─── ADVANTAGES ──────────────────────────────────── */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.advantage-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.advantage-card:hover {
    border-color: rgba(246, 235, 181, 0.3);
    background: var(--c-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

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

.adv-icon {
    width: 52px;
    height: 52px;
    background: rgba(246, 235, 181, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.adv-icon svg {
    width: 26px;
    height: 26px;
    color: var(--c-gold);
}

.adv-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-gold);
    margin-bottom: 8px;
}

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

/* ─── MIRRORS TABLE ───────────────────────────────── */
.mirrors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 14px;
}

.mirrors-time {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.83rem;
    color: var(--c-text-muted);
}

.mirrors-time-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
}

#mirror-datetime {
    color: var(--c-gold);
    font-weight: 600;
}

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

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th {
    background: rgba(0, 0, 0, 0.35);
    color: var(--c-gold);
    font-weight: 700;
    text-align: left;
    padding: 14px 18px;
    border-bottom: 2px solid rgba(246, 235, 181, 0.18);
    white-space: nowrap;
}

.data-table td {
    padding: 13px 18px;
    border-bottom: 1px solid rgba(246, 235, 181, 0.08);
    color: var(--c-text);
    vertical-align: middle;
}

.data-table tr:hover td {
    background: rgba(246, 235, 181, 0.04);
}

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

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
}

.mirror-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
}

/* ─── WINNERS ─────────────────────────────────────── */
.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    transition: all var(--transition);
}

.winner-item:hover {
    border-color: rgba(246, 235, 181, 0.25);
    background: var(--c-card-hover);
}

.winner-rank {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    background: rgba(246, 235, 181, 0.12);
    color: var(--c-gold);
    flex-shrink: 0;
}

.winner-rank.top1 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #01281D;
}

.winner-rank.top2 {
    background: linear-gradient(135deg, #C0C0C0, #a0a0a0);
    color: #01281D;
}

.winner-rank.top3 {
    background: linear-gradient(135deg, #CD7F32, #a05c1e);
    color: #01281D;
}

.winner-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-bg-alt), var(--c-green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-gold);
    flex-shrink: 0;
    border: 1.5px solid var(--c-border);
}

.winner-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--c-text);
    flex: 1;
}

.winner-game {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.winner-amount {
    font-weight: 800;
    color: var(--c-gold);
    font-size: 1rem;
    text-align: right;
    flex-shrink: 0;
}

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

.bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.bonus-card--featured {
    border-color: rgba(246, 235, 181, 0.5);
    background: rgba(246, 235, 181, 0.05);
}

.bonus-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(246, 235, 181, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(246, 235, 181, 0.35);
}

.bonus-badge {
    display: inline-block;
    background: rgba(246, 235, 181, 0.15);
    color: var(--c-gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-icon-wrap {
    font-size: 2.4rem;
    margin-bottom: 14px;
    line-height: 1;
}

.bonus-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--c-gold);
    margin-bottom: 8px;
}

.bonus-amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
}

.bonus-desc {
    color: var(--c-text-muted);
    font-size: 0.86rem;
    line-height: 1.6;
    margin-bottom: 22px;
}

.bonus-terms {
    font-size: 0.75rem;
    color: rgba(168, 200, 188, 0.6);
    margin-top: 12px;
    line-height: 1.5;
}

/* ─── MOBILE BONUS SLIDER ─────────────────────────── */
.bonuses-slider-wrap {
    display: none;
}

.bonuses-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(246, 235, 181, 0.2) transparent;
}

.bonuses-slider::-webkit-scrollbar {
    height: 4px;
}

.bonuses-slider::-webkit-scrollbar-track {
    background: transparent;
}

.bonuses-slider::-webkit-scrollbar-thumb {
    background: rgba(246, 235, 181, 0.2);
    border-radius: 2px;
}

.bonuses-slider .bonus-card {
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* ─── WHEEL OF FORTUNE ────────────────────────────── */
.wheel-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(246, 235, 181, 0.2), 0 0 40px rgba(246, 235, 181, 0.12), var(--shadow);
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    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-gold);
    filter: drop-shadow(0 2px 6px rgba(246, 235, 181, 0.4));
    z-index: 2;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: var(--c-gold);
    border-radius: 50%;
    border: 3px solid var(--c-header);
    z-index: 2;
}

.wheel-result {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    transition: all var(--transition);
}

.wheel-result.win {
    border-color: rgba(74, 222, 128, 0.5);
    background: rgba(74, 222, 128, 0.08);
}

.wheel-result.lose {
    border-color: rgba(248, 113, 113, 0.4);
    background: rgba(248, 113, 113, 0.06);
}

.wheel-result-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text-muted);
}

.wheel-result.win .wheel-result-text {
    color: #4ade80;
    font-size: 1.1rem;
}

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

.wheel-info {
    max-width: 500px;
}

.wheel-info h2 {
    margin-bottom: 16px;
}

.wheel-info p {
    color: var(--c-text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.wheel-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.wheel-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

.wheel-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(246, 235, 181, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wheel-feature-icon svg {
    width: 17px;
    height: 17px;
    color: var(--c-gold);
}

/* ─── REVIEW CONTENT ──────────────────────────────── */
.review-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
}

.author-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 32px;
}

.author-avatar {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--c-bg-alt), var(--c-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-gold);
    flex-shrink: 0;
    border: 2px solid var(--c-border);
}

.author-info {
}

.author-name {
    font-weight: 700;
    color: var(--c-gold);
    font-size: 0.98rem;
}

.author-bio {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-top: 3px;
}

.author-link {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: color var(--transition);
}

.author-link:hover {
    color: var(--c-gold);
}

.author-link svg {
    width: 15px;
    height: 15px;
}

.review-content {
    color: var(--c-text);
    line-height: 1.75;
}

.review-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-gold);
    margin: 32px 0 14px;
    line-height: 1.3;
}

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

.review-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-gold);
    margin: 18px 0 8px;
}

.review-content p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.review-content ul, .review-content ol {
    margin: 0 0 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.review-content ul {
    list-style: none;
    margin-left: 0;
}

.review-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--c-text-muted);
    padding: 6px 0;
}

.review-content ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--c-gold);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.review-content ol {
    list-style: decimal;
    padding-left: 20px;
}

.review-content ol li {
    padding: 4px 0;
    font-size: 0.93rem;
    color: var(--c-text-muted);
}

.review-content a {
    color: var(--c-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.review-content a:hover {
    color: var(--c-gold-dark);
}

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

.review-content em {
    color: rgba(232, 244, 240, 0.7);
}

.review-content blockquote {
    border-left: 3px solid var(--c-gold);
    padding: 14px 20px;
    background: rgba(246, 235, 181, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 18px 0;
    font-style: italic;
    color: var(--c-text-muted);
}

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

.review-content table th {
    background: rgba(0, 0, 0, 0.35);
    color: var(--c-gold);
    font-weight: 700;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid rgba(246, 235, 181, 0.18);
}

.review-content table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(246, 235, 181, 0.08);
    color: var(--c-text);
}

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

.review-content img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: 18px 0;
}

/* ─── COMMENTS ────────────────────────────────────── */
.comments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    transition: all var(--transition);
}

.comment-card:hover {
    border-color: rgba(246, 235, 181, 0.22);
}

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

.comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-bg-alt), var(--c-green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-gold);
    flex-shrink: 0;
    border: 1.5px solid var(--c-border);
}

.comment-meta {
    flex: 1;
}

.comment-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--c-text);
}

.comment-date {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin-top: 2px;
}

.comment-stars {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.star {
    font-size: 0.9rem;
    color: var(--c-gold);
}

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

.comment-form-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
}

.form-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-gold);
    margin-bottom: 22px;
}

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

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
    background: rgba(0, 0, 0, 0.28);
    border: 1.5px solid rgba(246, 235, 181, 0.15);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-family: var(--font);
    font-size: 0.92rem;
    padding: 12px 14px;
    width: 100%;
    transition: border-color var(--transition);
    outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(168, 200, 188, 0.5);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: rgba(246, 235, 181, 0.45);
}

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

.form-field select {
    appearance: none;
    cursor: pointer;
}

.form-stars-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.form-star-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: rgba(168, 200, 188, 0.3);
    transition: color var(--transition);
    padding: 0;
    line-height: 1;
}

.form-star-btn.active {
    color: var(--c-gold);
}

.form-success {
    display: none;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: var(--radius-sm);
    color: #4ade80;
    font-size: 0.9rem;
    padding: 12px 16px;
    margin-top: 14px;
    text-align: center;
}

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
    background: var(--c-footer);
    border-top: 1px solid rgba(246, 235, 181, 0.1);
    padding: 50px 0 24px;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(246, 235, 181, 0.1);
    margin-bottom: 32px;
}

.footer-logo-wrap img {
    height: 44px;
    width: auto;
    margin-bottom: 14px;
}

.footer-desc {
    font-size: 0.84rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 280px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(246, 235, 181, 0.08);
    border: 1px solid rgba(246, 235, 181, 0.14);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: rgba(246, 235, 181, 0.16);
    color: var(--c-gold);
    border-color: rgba(246, 235, 181, 0.3);
}

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

.footer-col-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

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

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

.footer-links a:hover {
    color: var(--c-gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--c-text-muted);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--c-gold);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--c-text-muted);
}

.footer-contact-item a:hover {
    color: var(--c-gold);
}

.footer-mid {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(246, 235, 181, 0.08);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-badge-label {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 6px;
    white-space: nowrap;
}

.footer-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    font-weight: 500;
    transition: all var(--transition);
}

.footer-badge-pill:hover {
    border-color: rgba(246, 235, 181, 0.25);
    color: var(--c-gold);
}

.footer-badge-pill svg {
    width: 14px;
    height: 14px;
}

.footer-country-flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--c-text-muted);
}

.footer-country-flag img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

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

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(168, 200, 188, 0.5);
    line-height: 1.65;
    max-width: 600px;
}

.footer-copyright strong {
    color: rgba(168, 200, 188, 0.7);
}

.footer-legal-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.footer-legal-links a {
    font-size: 0.78rem;
    color: rgba(168, 200, 188, 0.5);
    transition: color var(--transition);
}

.footer-legal-links a:hover {
    color: var(--c-gold);
}

/* ─── STICKY WIDGET ───────────────────────────────── */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(135deg, #01281D 0%, #014030 100%);
    border-top: 2px solid rgba(246, 235, 181, 0.3);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.widget-promo {
    background: rgba(246, 235, 181, 0.1);
    border: 1px dashed rgba(246, 235, 181, 0.35);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-gold);
    letter-spacing: 0.05em;
}

.widget-bonus-text {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.4;
}

.widget-bonus-text strong {
    color: #fff;
}

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

.widget-close {
    background: none;
    border: none;
    color: rgba(168, 200, 188, 0.5);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
}

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

/* ─── BREADCRUMBS ─────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--c-text-muted);
    padding: 12px 0;
}

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

.breadcrumb a:hover {
    color: var(--c-gold);
}

.breadcrumb-sep {
    opacity: 0.4;
}

/* ─── INFO PAGE ───────────────────────────────────── */
.info-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 50px 0 70px;
}

.info-page h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-gold);
    margin-bottom: 24px;
}

.info-page h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--c-gold);
    margin: 28px 0 12px;
}

.info-page h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-gold);
    margin: 20px 0 9px;
}

.info-page p {
    color: var(--c-text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.info-page ul, .info-page ol {
    margin: 0 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-page li {
    color: var(--c-text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.info-page a {
    color: var(--c-gold);
}

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

.info-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 22px;
    font-size: 0.9rem;
}

.info-page th {
    background: rgba(0, 0, 0, 0.35);
    color: var(--c-gold);
    font-weight: 700;
    text-align: left;
    padding: 12px 16px;
    border: 1px solid var(--c-border);
}

.info-page td {
    padding: 11px 16px;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    vertical-align: top;
}

.info-page tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.15);
}

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

.review-content th {
    background: rgba(0, 0, 0, 0.35);
    color: var(--c-gold);
    font-weight: 700;
    text-align: left;
    padding: 12px 16px;
    border: 1px solid var(--c-border);
}

.review-content td {
    padding: 11px 16px;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    vertical-align: top;
}

.review-content tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.15);
}

.review-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--c-gold);
    margin: 28px 0 12px;
}

.review-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 20px 0 9px;
}

.review-content p {
    color: var(--c-text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.review-content ul, .review-content ol {
    margin: 0 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-content li {
    color: var(--c-text-muted);
    line-height: 1.65;
}

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

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

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

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

.faq-item.open {
    border-color: rgba(246, 235, 181, 0.3);
}

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

.faq-question:hover {
    color: var(--c-gold);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--c-gold);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.22s ease;
    padding: 0 22px;
}

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

.faq-answer p {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.7;
}

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

.fade-in-up {
    animation: fadeInUp 0.55s ease both;
}

.fade-delay-1 {
    animation-delay: 0.1s;
}

.fade-delay-2 {
    animation-delay: 0.2s;
}

.fade-delay-3 {
    animation-delay: 0.3s;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.shimmer-text {
    background: linear-gradient(90deg, var(--c-gold) 0%, #fff8d6 40%, var(--c-gold) 60%, var(--c-gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
    margin: 0 auto 28px;
    border-radius: 3px;
}

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

.wp-block-columns {
    display: grid;
}

.entry-content {
    display: block;
}

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

.screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

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

.elementor-widget-container {
    display: block;
}

.et_pb_section {
    display: block;
}

.vc_row {
    display: block;
}

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

    .wheel-section-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .section-head .section-title {
        font-size: 1.6rem;
    }

    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .online-count {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-bonus-card {
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 28px;
    }

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

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

    .bonuses-grid {
        display: none;
    }

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

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

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

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

    .footer-desc {
        max-width: 100%;
    }

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

    .footer-legal-links {
        justify-content: center;
    }

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

    .widget-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

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

    .author-bar {
        flex-wrap: wrap;
    }

    .author-link {
        margin-left: 0;
    }

    .wheel-container {
        width: 260px;
        height: 260px;
    }

    #wheel-canvas {
        width: 260px !important;
        height: 260px !important;
    }
}

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

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

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

    .hero-bonus-amount {
        font-size: 1.6rem;
    }

    .section-head .section-title {
        font-size: 1.4rem;
    }

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

    .data-table {
        font-size: 0.8rem;
    }

    .data-table th, .data-table td {
        padding: 10px 12px;
    }
}

.mobile-menu-btns {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    gap: 14px;
    margin-top: 24px;
}

.mobile-menu-btns .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
}