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

:root {
    --c-header: #0a0a35;
    --c-header-dark: #07072a;
    --c-btn-primary: #fbec1f;
    --c-btn-primary-hover: #f5e00a;
    --c-btn-secondary: #016d19;
    --c-btn-secondary-hover: #015514;
    --c-bg: #000000;
    --c-bg2: #0d0d0d;
    --c-bg3: #111122;
    --c-surface: #12122a;
    --c-surface2: #1a1a3a;
    --c-surface3: #1e1e42;
    --c-border: #2a2a5a;
    --c-text: #e8e8f0;
    --c-text-muted: #9898b8;
    --c-text-dim: #6868a0;
    --c-gold: #fbec1f;
    --c-green: #016d19;
    --c-green-light: #00c93a;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(10, 10, 53, 0.5);
    --transition: 0.22s ease;
}

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

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    min-height: 100vh;
}

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

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn:active {
    transform: scale(0.97);
}

.btn--primary {
    background: var(--c-btn-primary);
    color: #0a0a35;
    box-shadow: 0 2px 12px rgba(251, 236, 31, 0.25);
}

.btn--primary:hover {
    background: var(--c-btn-primary-hover);
    color: #0a0a35;
    box-shadow: 0 4px 20px rgba(251, 236, 31, 0.4);
    transform: translateY(-1px);
}

.btn--secondary {
    background: var(--c-btn-secondary);
    color: #fff;
    box-shadow: 0 2px 12px rgba(1, 109, 25, 0.25);
}

.btn--secondary:hover {
    background: var(--c-btn-secondary-hover);
    color: #fff;
    box-shadow: 0 4px 20px rgba(1, 109, 25, 0.4);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--c-text);
    border: 1.5px solid var(--c-border);
}

.btn--outline:hover {
    border-color: var(--c-btn-primary);
    color: var(--c-btn-primary);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 12px;
}

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

.x9f2a {
    display: none;
}

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

/* =========== HEADER =========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    background: var(--c-header);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(251, 236, 31, 0.1);
}

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

.header-logo a {
    display: flex;
    align-items: center;
}

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 8px;
    color: #c8c8e8;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(251, 236, 31, 0.1);
    color: var(--c-btn-primary);
}

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

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-green-light);
    box-shadow: 0 0 6px var(--c-green-light);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.lang-select {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-select select {
    appearance: none;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    padding: 5px 28px 5px 10px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.lang-select::after {
    content: '▾';
    position: absolute;
    right: 8px;
    color: var(--c-text-muted);
    pointer-events: none;
    font-size: 0.7rem;
}

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

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

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

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

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--c-header-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 18px;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    z-index: 8900;
}

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

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #c8c8e8;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
    background: rgba(251, 236, 31, 0.08);
    color: var(--c-btn-primary);
}

.mobile-menu svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--c-border);
    margin: 4px 0;
}

/* =========== HERO =========== */
.hero-section {
    position: relative;
    min-height: 420px;
    background: url('/nb-hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 53, 0.85) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(1, 109, 25, 0.3) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 236, 31, 0.15);
    border: 1px solid rgba(251, 236, 31, 0.35);
    color: var(--c-btn-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 16px;
    animation: fadeInDown 0.6s ease both;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
    max-width: 680px;
    animation: fadeInDown 0.7s ease both;
}

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

.hero-subtitle {
    font-size: 1.05rem;
    color: #c8c8e8;
    margin-bottom: 28px;
    max-width: 560px;
    line-height: 1.6;
    animation: fadeInDown 0.8s ease both;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease both;
}

.hero-bonus-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(1, 109, 25, 0.2);
    border: 1px solid rgba(1, 109, 25, 0.4);
    border-radius: var(--radius);
    padding: 10px 16px;
    color: #fff;
    font-size: 0.85rem;
    margin-top: 20px;
    animation: fadeInUp 1s ease both;
    max-width: max-content;
}

.hero-bonus-tag strong {
    color: var(--c-btn-primary);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.section-sm {
    padding: 36px 0;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.section-subtitle {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

/* =========== INFO TABLE =========== */
.info-table-wrap {
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 0 auto;
}

.info-table td {
    padding: 11px 16px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    vertical-align: middle;
}

.info-table tr:first-child td {
    border-top: 1px solid var(--c-border);
}

.info-table tr:hover td {
    background: rgba(251, 236, 31, 0.03);
}

.info-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 500;
    white-space: nowrap;
    width: 42%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-table td:first-child svg {
    width: 18px;
    height: 18px;
    color: var(--c-btn-primary);
    flex-shrink: 0;
}

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

.info-table .tag {
    display: inline-block;
    background: rgba(251, 236, 31, 0.12);
    color: var(--c-btn-primary);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.78rem;
    margin: 2px 2px 0 0;
}

.info-table .badge-green {
    background: rgba(1, 109, 25, 0.2);
    color: var(--c-green-light);
    border: 1px solid rgba(0, 201, 58, 0.25);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.78rem;
}

/* =========== ADVANTAGES =========== */
.adv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.adv-card {
    flex: 1 1 200px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(251, 236, 31, 0.1);
    border-color: rgba(251, 236, 31, 0.3);
}

.adv-icon {
    width: 46px;
    height: 46px;
    background: rgba(251, 236, 31, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-icon svg {
    width: 24px;
    height: 24px;
    color: var(--c-btn-primary);
}

.adv-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

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

/* =========== PAYMENTS TABLE =========== */
.payments-table-wrap {
    overflow-x: auto;
}

.payments-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 640px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
}

.payments-table thead tr {
    background: var(--c-surface2);
}

.payments-table th {
    padding: 12px 14px;
    text-align: left;
    color: var(--c-text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--c-border);
}

.payments-table td {
    padding: 11px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(42, 42, 90, 0.6);
    color: var(--c-text);
}

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

.payments-table tbody tr:hover td {
    background: rgba(251, 236, 31, 0.02);
}

.pm-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    color: #fff;
}

.pm-logo svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.pm-logo span {
    color: var(--c-text-muted);
    font-size: 0.75rem;
    font-weight: 400;
}

/* =========== VIDEO =========== */
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius-lg);
}

/* =========== WHEEL GAME =========== */
.wheel-section {
    background: var(--c-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    padding: 36px 24px;
    text-align: center;
}

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

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

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(251, 236, 31, 0.3), 0 0 60px rgba(251, 236, 31, 0.1);
    max-width: 280px;
    width: 100%;
    height: auto;
}

.wheel-pointer {
    position: absolute;
    top: -12px;
    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-btn-primary);
    filter: drop-shadow(0 2px 6px rgba(251, 236, 31, 0.5));
}

.wheel-result {
    display: none;
    background: var(--c-surface2);
    border: 1px solid rgba(251, 236, 31, 0.3);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    text-align: center;
    animation: fadeInUp 0.4s ease;
}

.wheel-result.show {
    display: block;
}

.wheel-result-win {
    color: var(--c-btn-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.wheel-result p {
    color: var(--c-text-muted);
    font-size: 0.88rem;
    margin-top: 6px;
}

/* =========== REVIEW CONTENT =========== */
.review-content {
    max-width: 900px;
}

.review-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 10px;
}

.review-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 22px 0 8px;
}

.review-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 16px 0 6px;
}

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

.review-content ul, .review-content ol {
    margin: 10px 0 14px 20px;
    color: var(--c-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

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

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

.review-content table th, .review-content table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    text-align: left;
    font-size: 0.88rem;
}

.review-content table th {
    background: var(--c-surface2);
    color: var(--c-text-muted);
    font-size: 0.8rem;
}

.review-content strong {
    color: #fff;
}

.review-content blockquote {
    border-left: 3px solid var(--c-btn-primary);
    padding: 10px 18px;
    background: rgba(251, 236, 31, 0.04);
    margin: 16px 0;
    color: var(--c-text-muted);
    font-style: italic;
}

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

/* =========== SECURITY =========== */
.security-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.security-card {
    flex: 1 1 180px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    transition: border-color var(--transition);
}

.security-card:hover {
    border-color: rgba(0, 201, 58, 0.3);
}

.sec-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 201, 58, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.sec-icon svg {
    width: 22px;
    height: 22px;
    color: var(--c-green-light);
}

.sec-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.sec-text {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    line-height: 1.55;
}

/* =========== REVIEWS =========== */
.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

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

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

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

.review-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-top: 3px;
}

.review-stars svg {
    width: 14px;
    height: 14px;
}

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

.review-form {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    max-width: 560px;
}

.review-form h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

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

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

.form-group input, .form-group textarea {
    background: var(--c-bg3);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    color: var(--c-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 10px 14px;
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: rgba(251, 236, 31, 0.4);
}

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

.form-success {
    display: none;
    background: rgba(0, 201, 58, 0.1);
    border: 1px solid rgba(0, 201, 58, 0.3);
    border-radius: 8px;
    padding: 14px;
    color: var(--c-green-light);
    font-size: 0.9rem;
    margin-top: 12px;
}

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

/* =========== AUTHOR =========== */
.author-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.author-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-border);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.author-role {
    color: var(--c-btn-primary);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    transition: all var(--transition);
}

.author-link:hover {
    border-color: var(--c-btn-secondary);
    color: var(--c-green-light);
}

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

.author-dates {
    margin-top: 12px;
    color: var(--c-text-dim);
    font-size: 0.78rem;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.author-dates span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* =========== FOOTER =========== */
.site-footer {
    background: var(--c-header);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.footer-top {
    padding: 48px 0 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-col {
    flex: 1 1 180px;
}

.footer-logo {
    margin-bottom: 14px;
}

.footer-logo img {
    height: 40px;
}

.footer-desc {
    color: var(--c-text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-flag {
    width: 24px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
}

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

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

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

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

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
}

.footer-social a:hover {
    background: rgba(251, 236, 31, 0.15);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    color: var(--c-text-muted);
}

.footer-logos-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6px;
}

.footer-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.75rem;
    color: var(--c-text-muted);
    font-weight: 600;
    gap: 6px;
}

.footer-logo-badge svg {
    width: 16px;
    height: 16px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

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

.footer-copyright {
    color: var(--c-text-dim);
    font-size: 0.78rem;
    line-height: 1.6;
    max-width: 700px;
}

.footer-copyright a {
    color: var(--c-text-dim);
    text-decoration: underline;
}

.footer-copyright a:hover {
    color: var(--c-text-muted);
}

.footer-age {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #c0392b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* =========== STICKY WIDGET =========== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8000;
    background: var(--c-header-dark);
    border-top: 2px solid var(--c-btn-primary);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-widget.visible {
    transform: translateY(0);
}

.widget-text {
    color: var(--c-text);
    font-size: 0.85rem;
    font-weight: 500;
}

.widget-text strong {
    color: var(--c-btn-primary);
}

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

.widget-close {
    background: none;
    border: none;
    color: var(--c-text-dim);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 2px 6px;
    transition: color var(--transition);
}

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

/* =========== SURFACE BOXES =========== */
.box-surface {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}

.box-surface + .box-surface {
    margin-top: 16px;
}

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

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 12px;
    transition: background var(--transition);
    text-align: left;
}

.faq-question:hover {
    background: rgba(251, 236, 31, 0.04);
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 4px 18px 16px;
    color: var(--c-text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* =========== DIVIDER / UTILS =========== */
.spacer {
    height: 32px;
}

.spacer-lg {
    height: 56px;
}

.text-gold {
    color: var(--c-btn-primary);
}

.text-green {
    color: var(--c-green-light);
}

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

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

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

.separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 48px 0;
}

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

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

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

.entry-content {
    display: block;
}

.elementor-section {
    display: block;
}

.wpcf7-form {
    display: block;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .site-header {
        position: sticky;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 320px;
    }

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

    .hero-actions {
        gap: 8px;
    }

    .adv-card {
        flex: 1 1 160px;
    }

    .security-card {
        flex: 1 1 150px;
    }

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

    .author-dates {
        justify-content: center;
    }

    .author-links {
        justify-content: center;
    }

    .footer-top {
        gap: 24px;
    }

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

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

    .online-counter {
        display: none;
    }

    .info-table td:first-child {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 40px 0;
    }

    .section {
        padding: 36px 0;
    }

    .hero-actions .btn--lg {
        padding: 11px 20px;
        font-size: 0.9rem;
    }

    .widget-text {
        font-size: 0.78rem;
    }

    .review-card {
        flex: 1 1 100%;
    }
}

.video-section {
    margin-bottom: 48px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
}

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