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

:root {
    --c-navy: #081259;
    --c-navy-deep: #060e47;
    --c-navy-mid: #0d1e7a;
    --c-gold: #e09f46;
    --c-gold-light: #f0b75a;
    --c-blue: #079bfa;
    --c-blue-dark: #0584d8;
    --c-white: #ffffff;
    --c-bg: #f4f6fb;
    --c-text: #1a1d2e;
    --c-text-muted: #5a6080;
    --c-border: #dde2f0;
    --c-card-bg: #ffffff;
    --c-success: #22c55e;
    --c-danger: #ef4444;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 8px rgba(8, 18, 89, 0.08);
    --shadow-md: 0 6px 24px rgba(8, 18, 89, 0.13);
    --shadow-lg: 0 16px 48px rgba(8, 18, 89, 0.18);
    --transition: 0.22s ease;
    --font: 'Inter', 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(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.wrapper {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

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

.box {
    border-radius: var(--radius-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.2;
}

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

.btn--primary:hover {
    background: var(--c-blue-dark);
    color: var(--c-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(7, 155, 250, 0.4);
}

.btn--secondary {
    background: var(--c-gold);
    color: var(--c-navy);
}

.btn--secondary:hover {
    background: var(--c-gold-light);
    color: var(--c-navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(224, 159, 70, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--c-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--c-white);
}

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

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

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--c-navy);
    margin-bottom: 8px;
    line-height: 1.25;
}

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

.section-header {
    margin-bottom: 36px;
}

.xb3k9 {
    display: none;
}

.qv72m {
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

.rp4xz {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* ==================== HEADER ==================== */
.header-wrap {
    background: var(--c-navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(8, 18, 89, 0.28);
}

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

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

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover, .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-gold);
}

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

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-success);
    animation: pulse-dot 1.8s infinite;
    flex-shrink: 0;
}

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

.lang-select-wrap {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 7px 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lang-btn svg {
    width: 14px;
    height: 14px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    min-width: 140px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all var(--transition);
    z-index: 200;
}

.lang-dropdown.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 0.85rem;
    color: var(--c-text);
    cursor: pointer;
    transition: background var(--transition);
}

.lang-option:hover {
    background: var(--c-bg);
    color: var(--c-navy);
}

.lang-option .flag {
    font-size: 1.1rem;
}

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

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: all 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);
}

.mobile-menu {
    display: none;
    background: var(--c-navy-deep);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.open {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 20px;
}

.mobile-nav .nav-link {
    padding: 11px 14px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
}

.mobile-actions {
    display: flex;
    gap: 10px;
    padding: 16px 20px 0;
    flex-wrap: wrap;
}

/* ==================== HERO ==================== */
.hero-section {
    position: relative;
    background: var(--c-navy);
    overflow: hidden;
    padding: 80px 0 100px;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-sky.png');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 18, 89, 0.92) 0%, rgba(7, 155, 250, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
    width: 100%;
}

.hero-text {
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(224, 159, 70, 0.18);
    border: 1px solid rgba(224, 159, 70, 0.4);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-gold);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--c-white);
    line-height: 1.15;
    margin-bottom: 16px;
    text-balance: balance;
}

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

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

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

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-stat {
}

.hero-stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-gold);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-tile {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(224, 159, 70, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    backdrop-filter: blur(12px);
    min-width: 240px;
    animation: fadeUp 0.6s ease 0.2s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bonus-tile-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

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

.bonus-tile-sub {
    font-size: 1rem;
    color: var(--c-white);
    font-weight: 600;
    margin-bottom: 6px;
}

.bonus-tile-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
    line-height: 1.5;
}

/* ==================== SECTIONS ==================== */
.section-pad {
    padding: 72px 0;
}

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

/* ==================== INFO TABLE ==================== */
.info-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-border);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    background: var(--c-white);
}

.info-table th {
    background: var(--c-navy);
    color: var(--c-white);
    padding: 16px 20px;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.info-table td {
    padding: 13px 20px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    vertical-align: middle;
}

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

.info-table tr:nth-child(even) td {
    background: var(--c-bg);
}

.info-table tr:hover td {
    background: rgba(7, 155, 250, 0.04);
}

.table-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(8, 18, 89, 0.08);
    border-radius: 8px;
    margin-right: 10px;
    color: var(--c-navy);
    flex-shrink: 0;
}

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

.table-param {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--c-navy);
}

.table-value {
    color: var(--c-text);
}

.table-value strong {
    color: var(--c-navy);
    font-weight: 600;
}

.rating-stars {
    color: var(--c-gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ==================== JACKPOTS ==================== */
.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.jackpot-card {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
    position: relative;
    overflow: hidden;
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(224, 159, 70, 0.08);
    border-radius: 50%;
}

.jackpot-card:hover {
    transform: translateY(-4px);
}

.jackpot-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.jackpot-name {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.jackpot-game {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== WINNERS ==================== */
.winners-table-wrap {
    background: var(--c-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

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

.winners-table thead th {
    background: var(--c-navy);
    color: var(--c-white);
    padding: 13px 18px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.winners-table tbody tr:hover td {
    background: rgba(7, 155, 250, 0.05);
}

.winners-table tbody td {
    padding: 11px 18px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.88rem;
    vertical-align: middle;
}

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

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 700;
}

.rank-1 {
    background: var(--c-gold);
    color: var(--c-navy);
}

.rank-2 {
    background: #c0c0c0;
    color: #333;
}

.rank-3 {
    background: #cd7f32;
    color: #fff;
}

.rank-other {
    background: var(--c-bg);
    color: var(--c-text-muted);
}

.winner-amount {
    font-weight: 700;
    color: var(--c-success);
}

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

.winner-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-navy), var(--c-blue));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-white);
    margin-right: 8px;
}

/* ==================== CARDS GRID ==================== */
.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.tournament-card {
    background: var(--c-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.tournament-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.tournament-card-header {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.tournament-card-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.tournament-badge {
    display: inline-block;
    background: rgba(224, 159, 70, 0.2);
    color: var(--c-gold);
    border: 1px solid rgba(224, 159, 70, 0.4);
    border-radius: 12px;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.tournament-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-white);
    line-height: 1.3;
}

.tournament-card-body {
    padding: 18px 20px;
    flex: 1;
}

.tournament-desc {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.55;
    margin-bottom: 14px;
}

.tournament-prize {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-navy);
    margin-bottom: 4px;
}

.tournament-prize-lbl {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.countdown {
    display: flex;
    gap: 8px;
}

.countdown-unit {
    background: var(--c-bg);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    text-align: center;
    min-width: 46px;
}

.countdown-val {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--c-navy);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-lbl {
    display: block;
    font-size: 0.65rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}

/* ==================== BONUS CARDS ==================== */
.bonus-card {
    background: var(--c-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
    overflow: hidden;
    transition: all var(--transition);
}

.bonus-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.bonus-card-top {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue-dark) 100%);
    padding: 24px 20px;
    text-align: center;
}

.bonus-card-icon {
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.bonus-card-type {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.bonus-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-white);
    line-height: 1.2;
}

.bonus-card-body {
    padding: 20px;
}

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

.bonus-tag {
    display: inline-block;
    background: rgba(8, 18, 89, 0.07);
    color: var(--c-navy);
    border-radius: 6px;
    padding: 3px 9px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 2px 2px 2px 0;
}

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

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

.wheel-container {
    position: relative;
    display: inline-block;
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(8, 18, 89, 0.25), 0 0 0 8px var(--c-gold), 0 0 0 12px rgba(224, 159, 70, 0.2);
    display: block;
    transition: transform 0.1s;
}

.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(--c-gold);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.wheel-spin-btn {
    margin-top: 28px;
}

.wheel-result {
    display: none;
    margin-top: 20px;
    background: var(--c-white);
    border: 2px solid var(--c-success);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    animation: fadeUp 0.4s ease;
}

.wheel-result.win {
    border-color: var(--c-success);
}

.wheel-result.lose {
    border-color: var(--c-border);
}

.wheel-result-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.wheel-result-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 6px;
}

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

.wheel-info {
}

.wheel-info-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-navy);
    margin-bottom: 14px;
    line-height: 1.3;
}

.wheel-info-desc {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

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

.wheel-prize-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--c-bg);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.wheel-prize-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.wheel-prize-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-navy);
    flex: 1;
}

.wheel-prize-chance {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

/* ==================== CONTENT REVIEW ==================== */
.content-section {
    background: var(--c-white);
}

.content-wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.author-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    position: sticky;
    top: 90px;
}

.author-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-navy);
    margin-bottom: 12px;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}

.author-bio {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.55;
    margin-bottom: 14px;
}

.author-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.author-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--c-blue);
    font-weight: 500;
}

.author-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

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

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

.review-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-navy);
    margin: 22px 0 10px;
}

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

.review-content p {
    margin-bottom: 16px;
}

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

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

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

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

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

.review-content em {
    font-style: italic;
}

.review-content blockquote {
    border-left: 4px solid var(--c-blue);
    padding: 12px 18px;
    background: rgba(7, 155, 250, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    font-style: italic;
}

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

.review-content table th {
    background: var(--c-navy);
    color: var(--c-white);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.875rem;
}

.review-content table td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.875rem;
}

.review-content table tr:nth-child(even) td {
    background: var(--c-bg);
}

.review-content img {
    border-radius: var(--radius-sm);
    margin: 16px 0;
    box-shadow: var(--shadow-sm);
    max-width: 100%;
}

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

/* ==================== FOOTER ==================== */
.footer-wrap {
    background: var(--c-navy);
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 260px 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
}

.footer-logo img {
    height: 42px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 18px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--c-white);
}

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

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

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

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

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

.footer-mid {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logos-row {
    margin-bottom: 20px;
}

.footer-logos-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

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

.footer-logo-chip {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    transition: background var(--transition);
}

.footer-logo-chip:hover {
    background: rgba(255, 255, 255, 0.14);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-badge span.flag {
    font-size: 1rem;
}

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

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

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 600px;
}

.footer-copy strong {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition);
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== STICKY WIDGET ==================== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--c-navy);
    border-top: 2px solid var(--c-gold);
    box-shadow: 0 -4px 24px rgba(8, 18, 89, 0.3);
    padding: 10px 0;
    transform: translateY(0);
    transition: transform var(--transition);
}

.sticky-widget.hidden {
    transform: translateY(100%);
}

.sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-text {
    flex: 1;
}

.sticky-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--c-white);
}

.sticky-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-bonus-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--c-gold);
}

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

.sticky-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
}

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

/* ==================== INFO PAGE ==================== */
.info-page-wrap {
    padding: 60px 0 80px;
}

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

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

.info-page-wrap h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-navy);
    margin: 20px 0 8px;
}

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

.info-page-wrap ul, .info-page-wrap ol {
    padding-left: 24px;
    margin-bottom: 14px;
}

.info-page-wrap li {
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--c-text);
}

.info-page-wrap a {
    color: var(--c-blue);
    text-decoration: underline;
}

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

.info-page-wrap table thead th {
    background: var(--c-navy);
    color: var(--c-white);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 600;
}

.info-page-wrap table tbody td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    font-size: 0.92rem;
    color: var(--c-text);
}

.info-page-wrap table tbody tr:nth-child(even) td {
    background: var(--c-bg);
}

.info-page-wrap blockquote {
    border-left: 4px solid var(--c-gold);
    padding: 14px 20px;
    background: var(--c-bg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--c-text-muted);
}

.contact-form {
    max-width: 640px;
    margin: 0 auto 32px;
    display: grid;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-navy);
}

.form-group label span {
    color: var(--c-danger);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--c-text);
    background: var(--c-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--c-blue);
    box-shadow: 0 0 0 3px rgba(7, 155, 250, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    cursor: pointer;
    color: var(--c-text-muted);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--c-blue);
    cursor: pointer;
}

.form-success {
    margin-top: 12px;
    padding: 14px 18px;
    background: #dcfce7;
    border: 1.5px solid #22c55e;
    border-radius: var(--radius-sm);
    color: #15803d;
    font-size: 0.92rem;
}

.form-error {
    margin-top: 12px;
    padding: 14px 18px;
    background: #fee2e2;
    border: 1.5px solid #ef4444;
    border-radius: var(--radius-sm);
    color: #b91c1c;
    font-size: 0.92rem;
}

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

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

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

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

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

/* ==================== FADE IN ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== WP CAMOUFLAGE (unused) ==================== */
.wp-block-group {
    display: block;
}

.wp-block-columns {
    display: flex;
    gap: 2em;
}

.entry-content {
    line-height: 1.6;
}

.post-thumbnail {
    margin-bottom: 1.5em;
}

.elementor-widget-container {
    position: relative;
}

.elementor-section {
    padding: 0;
}

#wpadminbar {
    display: none !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 220px 1fr 1fr;
    }

    .footer-top .footer-col:last-child {
        grid-column: 2 / 4;
    }

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

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

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

    .wheel-wrap {
        order: 2;
    }

    .wheel-info {
        order: 1;
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .bonus-tile {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .author-card {
        position: static;
    }

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

    .cards-grid-3 {
        grid-template-columns: 1fr;
    }

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

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

    .online-counter {
        display: none;
    }

    .lang-select-wrap {
        display: none;
    }

    .burger {
        display: flex;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto auto;
    }

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

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

    .section-title {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 56px 0 72px;
    }

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

    .cards-grid-4 {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
    }

    .sticky-inner {
        flex-wrap: wrap;
    }

    .info-table {
        min-width: 480px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 16px;
    }

    .btn--lg {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.35rem;
    }
}

.vcaxa {
    background: #fff;
    border: 2px solid var(--c-border);
    border-radius: 28px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 100%;
}

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

.vcaxa .content-wrap {
    display: grid;
    grid-template-columns:minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}

.vcaxa .review-content {
    min-width: 0;
    overflow: hidden;
}

.vcaxa .review-content * {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.vcaxa .review-content img,
.vcaxa .review-content svg,
.vcaxa .review-content video {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 24px auto;
}

.vcaxa .review-content iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 16px;
}

.vcaxa .review-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
    margin: 24px 0;
}

.vcaxa .review-content table th,
.vcaxa .review-content table td {
    white-space: nowrap;
}

.vcaxa .review-content pre,
.vcaxa .review-content code {
    display: block;
    overflow: auto;
    max-width: 100%;
}

.vcaxa .review-content a {
    word-break: break-all;
}

.vcaxa .author-card {
    background: var(--c-bg);
    border: 2px solid var(--c-border);
    border-radius: 20px;
    padding: 24px;
    position: sticky;
    top: 90px;
    overflow: hidden;
}

.vcaxa .author-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
}

.vcaxa .author-name,
.vcaxa .author-title,
.vcaxa .author-bio {
    text-align: center;
}

.vcaxa .author-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.vcaxa .author-link {
    justify-content: center;
    text-align: center;
}

@media (max-width: 992px) {

    .vcaxa {
        padding: 28px;
    }

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

    .vcaxa .author-card {
        position: static;
        width: 100%;
    }

}

@media (max-width: 768px) {

    .vcaxa {
        padding: 20px 16px;
        border-radius: 20px;
        margin: 24px 0;
    }

    .vcaxa .section-header {
        margin-bottom: 24px;
    }

    .vcaxa .section-title {
        font-size: 28px;
    }

    .vcaxa .section-subtitle {
        font-size: 15px;
    }

    .vcaxa .review-content {
        font-size: 15px;
    }

    .vcaxa .review-content h2 {
        font-size: 24px;
    }

    .vcaxa .review-content h3 {
        font-size: 20px;
    }

    .vcaxa .review-content h4 {
        font-size: 18px;
    }

    .vcaxa .review-content table {
        font-size: 14px;
    }

    .vcaxa .review-content table th,
    .vcaxa .review-content table td {
        padding: 10px 12px;
    }

}

@media (max-width: 480px) {

    .vcaxa {
        padding: 16px;
    }

    .vcaxa .review-content * {
        min-width: 0;
    }

    .vcaxa .author-card {
        padding: 18px;
    }

    .vcaxa .author-avatar img {
        width: 72px;
        height: 72px;
    }

    .vcaxa .author-link {
        font-size: 13px;
        word-break: break-word;
    }

}