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

:root {
    --clr-header: #0F442E;
    --clr-header-dk: #0a2e1e;
    --clr-bg: #1C724D;
    --clr-bg-alt: #165c3d;
    --clr-btn-primary: #F9CB16;
    --clr-btn-primary-hover: #f0bc00;
    --clr-btn-secondary: #0F442E;
    --clr-btn-secondary-hover: #0a2e1e;
    --clr-text-light: #ffffff;
    --clr-text-muted: rgba(255, 255, 255, 0.72);
    --clr-text-dark: #0F1F17;
    --clr-accent: #F9CB16;
    --clr-card: rgba(255, 255, 255, 0.06);
    --clr-card-border: rgba(255, 255, 255, 0.12);
    --clr-plus: #2ecc71;
    --clr-minus: #e74c3c;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.22);
    --transition: 0.22s ease;
    --font-main: 'Roboto', Arial, sans-serif;
}

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

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

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

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

a:hover {
    color: var(--clr-btn-primary-hover);
}

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

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

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

.section-gap {
    padding: 60px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    flex-wrap: nowrap;
}

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

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

.header-nav a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

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

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

.online-count {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    animation: blink 1.4s infinite;
    flex-shrink: 0;
}

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

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

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

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

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

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

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-main);
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

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

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

.btn-primary {
    background: var(--clr-btn-primary);
    color: var(--clr-text-dark);
    padding: 10px 22px;
    font-size: 0.9rem;
    box-shadow: 0 3px 12px rgba(249, 203, 22, 0.35);
}

.btn-primary:hover {
    background: var(--clr-btn-primary-hover);
    color: var(--clr-text-dark);
    box-shadow: 0 5px 18px rgba(249, 203, 22, 0.5);
}

.btn-secondary {
    background: var(--clr-header);
    color: var(--clr-text-light);
    padding: 10px 22px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--clr-header-dk);
    color: var(--clr-text-light);
}

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

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

.btn-xl {
    padding: 16px 40px;
    font-size: 1.15rem;
    border-radius: var(--radius-md);
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 68, 46, 0.92) 0%, rgba(28, 114, 77, 0.65) 60%, transparent 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: var(--clr-accent);
    color: var(--clr-text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--clr-text-light);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-title span {
    color: var(--clr-accent);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    line-height: 1.65;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
}

/* ── BREADCRUMBS ── */
.breadcrumbs-bar {
    background: var(--clr-header-dk);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.82rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumbs li + li::before {
    content: '/';
    color: rgba(255, 255, 255, 0.35);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.72);
}

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

.breadcrumbs .bc-active {
    color: var(--clr-accent);
    font-weight: 500;
}

/* ── CONTENT SECTIONS ── */
.page-content {
    padding: 40px 0 60px;
}

.block-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-card);
}

.block-wrap--alt {
    background: rgba(15, 68, 46, 0.5);
    border-color: rgba(249, 203, 22, 0.15);
}

.block-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(249, 203, 22, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.block-title svg {
    flex-shrink: 0;
}

/* ── INFO TABLE ── */
.info-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.info-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background var(--transition);
}

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

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

.info-table td {
    padding: 11px 14px;
    vertical-align: top;
    text-align: left;
}

.info-table td:first-child {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    white-space: nowrap;
    width: 38%;
}

.info-table td:last-child {
    color: var(--clr-text-light);
    font-weight: 400;
}

.info-table .badge-val {
    display: inline-block;
    background: rgba(249, 203, 22, 0.15);
    color: var(--clr-accent);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ── PROS CONS ── */
.pros-cons-grid {
    display: flex;
    gap: 20px;
}

.pros-col, .cons-col {
    flex: 1;
    background: rgba(0, 0, 0, 0.18);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.col-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-col .col-title {
    color: var(--clr-plus);
}

.cons-col .col-title {
    color: var(--clr-minus);
}

.pros-col ul, .cons-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.pros-col ul li, .cons-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.pros-col ul li::before {
    content: '+';
    color: var(--clr-plus);
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.cons-col ul li::before {
    content: '−';
    color: var(--clr-minus);
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── MIRRORS TABLE ── */
.mirrors-live-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    animation: blink 1.4s infinite;
    flex-shrink: 0;
}

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

.mirrors-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.mirrors-table th {
    background: rgba(15, 68, 46, 0.7);
    color: var(--clr-accent);
    font-weight: 600;
    padding: 10px 14px;
    text-align: left;
    white-space: nowrap;
}

.mirrors-table th:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.mirrors-table th:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.mirrors-table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.88);
}

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

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

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.status-badge--active {
    background: rgba(46, 204, 113, 0.18);
    color: #2ecc71;
}

.status-badge--dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ecc71;
    animation: blink 1.4s infinite;
}

/* ── WHEEL ── */
.wheel-section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.wheel-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(249, 203, 22, 0.25), 0 8px 32px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.wheel-btn-wrap {
    text-align: center;
}

.wheel-result {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    animation: fadeInUp 0.4s ease;
}

.wheel-result.is-shown {
    display: flex;
}

.wheel-result-icon {
    font-size: 3rem;
}

.wheel-result-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-accent);
}

.wheel-result-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 320px;
}

/* ── CONTENT REVIEW ── */
.review-content {
    line-height: 1.7;
}

.review-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin: 28px 0 12px;
}

.review-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 22px 0 10px;
}

.review-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 18px 0 8px;
}

.review-content p {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.review-content ul, .review-content ol {
    margin: 0 0 14px 24px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

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

.review-content strong {
    color: var(--clr-text-light);
    font-weight: 600;
}

.review-content em {
    color: rgba(255, 255, 255, 0.75);
}

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

.review-content a:hover {
    color: var(--clr-btn-primary-hover);
}

.review-content blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 10px 18px;
    background: rgba(249, 203, 22, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

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

.review-content table th {
    background: rgba(15, 68, 46, 0.7);
    color: var(--clr-accent);
    padding: 9px 12px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-content table td {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.85);
}

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

.review-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

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

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.is-open {
    border-color: rgba(249, 203, 22, 0.35);
}

.faq-question {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.3);
}

.faq-item.is-open .faq-question {
    background: rgba(15, 68, 46, 0.6);
    color: var(--clr-accent);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
    padding: 0 20px;
}

.faq-answer p {
    padding: 14px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

/* ── AUTHOR ── */
.author-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.author-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--clr-accent);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.82rem;
    color: var(--clr-accent);
    font-weight: 500;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
    transition: background var(--transition), color var(--transition);
    text-decoration: none !important;
}

.author-link:hover {
    background: rgba(249, 203, 22, 0.2);
    color: var(--clr-accent);
}

/* ── FOOTER ── */
.site-footer {
    background: var(--clr-header);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0 0;
    margin-top: auto;
}

.footer-top {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer-brand {
    flex: 0 0 auto;
}

.footer-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 200px;
}

.footer-nav-col {
    flex: 1;
    min-width: 130px;
}

.footer-nav-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-accent);
    margin-bottom: 12px;
}

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

.footer-nav-col ul a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

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

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

.footer-logos-title {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

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

.footer-logo-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: background var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-top: 12px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 8px;
}

/* ── STICKY WIDGET ── */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(135deg, var(--clr-header) 0%, #0a3020 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 12px 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.sticky-widget-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.sticky-bonus-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.sticky-bonus-text strong {
    color: var(--clr-accent);
    font-size: 1rem;
}

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

.sticky-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: color var(--transition);
    line-height: 1;
    flex-shrink: 0;
}

.sticky-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

/**/
.info-page-content {
    padding: 48px 0 64px;
}

.info-page-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-text-light);
    margin-bottom: 24px;
}

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

.info-page-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0 8px;
}

.info-page-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 14px;
}

.info-page-content ul, .info-page-content ol {
    margin: 0 0 14px 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.info-page-content li {
    margin-bottom: 6px;
    line-height: 1.6;
}

.info-page-content a {
    color: var(--clr-accent);
    text-decoration: underline;
}

.info-page-content strong {
    color: var(--clr-text-light);
}

.info-page-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

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

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

@keyframes spin360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.anim-fade-in {
    animation: fadeIn 0.5s ease both;
}

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

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ── MOBILE ── */
@media (max-width: 900px) {
    .header-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--clr-header-dk);
        padding: 16px 20px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        gap: 2px;
    }

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

    .header-nav a {
        display: block;
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        position: relative;
    }

    .burger-btn {
        display: flex;
    }

    .pros-cons-grid {
        flex-direction: column;
    }

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

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

    .footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .sticky-widget-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .sticky-cta {
        justify-content: center;
    }

    .sticky-bonus-text {
        text-align: center;
    }

    .hero-content {
        padding: 40px 0;
    }

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

    body {
        padding-bottom: 90px;
    }
}

@media (max-width: 600px) {
    .header-actions .btn {
        padding: 7px 12px;
        font-size: 0.78rem;
    }

    .online-count {
        display: none;
    }

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

    .block-title {
        font-size: 1.1rem;
    }

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

.x9f2a-unused {
    display: none;
    visibility: hidden;
    pointer-events: none;
}

.bc7d1-ghost {
    opacity: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
}

.k4m8q-void {
    max-height: 0;
}

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

.wp-block-columns {
    display: flex;
    gap: 16px;
}

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

.e-con-inner {
    width: 100%;
}

.entry-content {
    display: block;
}

.post-thumbnail {
    display: block;
}
