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

:root {
    --bg: #0E111A;
    --bg-card: #141824;
    --bg-card2: #1a2030;
    --primary: #00B677;
    --secondary: #0F6F53;
    --text: #e8eaf0;
    --text-muted: #8a93a8;
    --border: #232b3e;
    --radius: 12px;
    --radius-lg: 18px;
    --transition: 0.25s ease;
}

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

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

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: #33d498;
}

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

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

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

/* ===================== HEADER ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0E111A;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

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

.nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-item:hover {
    background: var(--bg-card);
    color: var(--text);
}

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

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

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

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: blink 2s infinite;
    flex-shrink: 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--secondary);
    color: #6ecfa8;
}

.btn-login:hover {
    background: var(--secondary);
    color: #fff;
}

.btn-signup {
    background: var(--primary);
    color: #fff;
}

.btn-signup:hover {
    background: #00cc88;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 182, 119, 0.35);
}

.btn-cta {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 10px;
}

.btn-cta:hover {
    background: #00cc88;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 182, 119, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    padding: 12px 26px;
}

.btn-secondary:hover {
    background: #0e8464;
}

.btn-bonus {
    background: linear-gradient(135deg, #00B677, #0F6F53);
    color: #fff;
    padding: 12px 26px;
    font-size: 0.95rem;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 182, 119, 0.4);
}

/* Burger */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
    flex-direction: column;
    gap: 8px;
}

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

.mobile-menu .nav-item {
    font-size: 1rem;
    padding: 12px 16px;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0E111A;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 17, 26, 0.92) 0%, rgba(0, 182, 119, 0.08) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 20px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 182, 119, 0.15);
    border: 1px solid rgba(0, 182, 119, 0.3);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

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

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-bonus-box {
    background: rgba(0, 182, 119, 0.1);
    border: 1px solid rgba(0, 182, 119, 0.25);
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 28px;
    display: inline-block;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.bonus-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.promo-strip {
    background: rgba(0, 182, 119, 0.08);
    border-top: 1px solid rgba(0, 182, 119, 0.15);
    border-bottom: 1px solid rgba(0, 182, 119, 0.15);
    padding: 10px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.promo-strip strong {
    color: var(--primary);
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 60px 20px;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.section-title span {
    color: var(--primary);
}

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

/* ===================== PROS/CONS ===================== */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.pros-box, .cons-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
}

.pros-box {
    border-top: 3px solid var(--primary);
}

.cons-box {
    border-top: 3px solid #e05252;
}

.pros-box h3 {
    color: var(--primary);
    margin-bottom: 18px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cons-box h3 {
    color: #e05252;
    margin-bottom: 18px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.pros-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.cons-list li::before {
    content: '✗';
    color: #e05252;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===================== PAYMENTS TABLE ===================== */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.payment-table th {
    background: var(--bg-card2);
    color: var(--text-muted);
    font-weight: 600;
    text-align: left;
    padding: 14px 16px;
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-align: left;
}

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

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

.payment-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.payment-icon {
    width: 34px;
    height: 22px;
    border-radius: 4px;
    background: var(--bg-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.badge-fast {
    display: inline-block;
    background: rgba(0, 182, 119, 0.15);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

/* ===================== SCREENSHOTS ===================== */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.screenshot-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
}

.screenshot-item:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.screenshot-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Screenshots slider for mobile */
.screenshots-slider {
    display: none;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

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

.screenshots-slider::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.screenshots-slider .screenshot-item {
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* ===================== VIDEO ===================== */
.video-wrap {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.video-inner {
    position: relative;
    padding-top: 56.25%;
}

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

/* ===================== WHEEL ===================== */
.wheel-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 40px 20px;
    text-align: center;
}

.wheel-container {
    position: relative;
    display: inline-block;
    margin-bottom: 28px;
}

.wheel-canvas {
    display: block;
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
}

.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 22px solid #fff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.wheel-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Open Sans', sans-serif;
}

.wheel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 182, 119, 0.4);
}

.wheel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wheel-result {
    margin-top: 24px;
    padding: 22px 28px;
    border-radius: 12px;
    background: rgba(0, 182, 119, 0.1);
    border: 1px solid rgba(0, 182, 119, 0.3);
    display: none;
}

.wheel-result.lose {
    background: rgba(224, 82, 82, 0.1);
    border-color: rgba(224, 82, 82, 0.3);
}

.wheel-result.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

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

.wheel-result.lose .wheel-result-title {
    color: #e05252;
}

.wheel-result p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ===================== CONTENT / REVIEW ===================== */
.review-block {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 36px;
}

.author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card2);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 28px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-card2);
    border: 2px solid var(--border);
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.author-info a {
    color: var(--primary);
    font-size: 0.8rem;
}

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

.review-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 10px;
}

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

.review-content ul, .review-content ol {
    padding-left: 20px;
    margin-bottom: 14px;
    color: var(--text);
}

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

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

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

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

.review-content table th {
    background: var(--bg-card2);
    color: var(--text-muted);
    font-weight: 600;
}

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

.review-content em {
    color: var(--text-muted);
}

.review-content blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 18px;
    color: var(--text-muted);
    font-style: italic;
    margin: 16px 0;
}

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

.review-content img {
    border-radius: 8px;
    margin: 12px 0;
}

.review-content pre {
    background: var(--bg-card2);
    padding: 14px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 14px;
}

.review-content code {
    font-family: monospace;
    font-size: 0.875rem;
    color: var(--primary);
}

/* ===================== FAQ ===================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    gap: 16px;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--bg-card2);
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer-inner {
    padding: 0 22px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.faq-answer-inner a {
    color: var(--primary);
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: #0E111A;
    border-top: 1px solid var(--border);
    padding: 48px 20px 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-brand .logo-link img {
    height: 38px;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.country-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

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

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

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

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

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

.footer-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 -20px;
}

.footer-logos-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-logos-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a5568;
    font-weight: 600;
}

.logos-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.logo-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    height: 32px;
    white-space: nowrap;
}

.logo-chip.trust {
    color: var(--primary);
    border-color: rgba(0, 182, 119, 0.25);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin: 0 -20px;
    padding: 18px 20px;
    max-width: none;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal {
    font-size: 0.75rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 700px;
}

.footer-legal a {
    color: #6b7280;
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-copy {
    font-size: 0.75rem;
    color: #4a5568;
    white-space: nowrap;
}

/* ===================== STICKY WIDGET ===================== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0a0d14, #0E111A);
    border-top: 1px solid rgba(0, 182, 119, 0.3);
    padding: 12px 20px;
    transform: translateY(100%);
    animation: slideUp 0.6s 1.5s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

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

.promo-code-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.promo-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.promo-code {
    background: var(--bg-card);
    border: 1.5px dashed var(--primary);
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition);
    user-select: all;
}

.promo-code:hover {
    background: rgba(0, 182, 119, 0.1);
}

.copy-hint {
    font-size: 0.72rem;
    color: var(--text-muted);
}

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

.widget-bonus strong {
    color: var(--primary);
}

.widget-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    font-size: 1.1rem;
    line-height: 1;
}

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

/* ===================== MISC ===================== */
.section-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 36px;
    margin-bottom: 0;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.rating-score {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.info-item {
    background: var(--bg-card2);
    border-radius: 10px;
    padding: 14px;
    border: 1px solid var(--border);
}

.info-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.info-value.green {
    color: var(--primary);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.qx7b2n {
    display: none;
    visibility: hidden;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.alignleft {
    float: left;
    margin: 0 16px 16px 0;
}

.alignright {
    float: right;
    margin: 0 0 16px 16px;
}

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

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

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

    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: flex;
    }
}

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

    .header-actions {
        gap: 6px;
    }

    .btn-login, .btn-signup {
        padding: 7px 12px;
        font-size: 0.78rem;
    }

    .online-count {
        display: none;
    }

    .sticky-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

    .review-block {
        padding: 20px;
    }

    .section-card {
        padding: 20px;
    }

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

.vcnhg {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.vcnhg table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #2f3547;
    border-radius: 16px;
    -webkit-overflow-scrolling: touch;
    background: #171b27;
}

.vcnhg tbody,
.vcnhg thead {
    display: table;
    width: 100%;
}

.vcnhg th,
.vcnhg td {
    padding: 14px 16px;
    border-bottom: 1px solid #2f3547;
    text-align: left;
    vertical-align: top;
}

.vcnhg th {
    background: #22283a;
    color: #fff;
    font-weight: 700;
}

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

@media (max-width: 768px) {

    .vcnhg {
        overflow: hidden;
    }

    .vcnhg table {
        width: 100%;
        min-width: 0;
    }

    .vcnhg thead,
    .vcnhg tbody {
        width: 700px;
        min-width: 700px;
    }

    .vcnhg th,
    .vcnhg td {
        min-width: 170px;
        padding: 12px 14px;
        font-size: 13px;
        white-space: nowrap;
    }

    .vcnhg th:first-child,
    .vcnhg td:first-child {
        position: sticky;
        left: 0;
        background: #22283a;
        z-index: 2;
    }

    .vcnhg table::-webkit-scrollbar {
        height: 8px;
    }

    .vcnhg table::-webkit-scrollbar-thumb {
        background: #f4b400;
        border-radius: 999px;
    }

    .vcnhg table::-webkit-scrollbar-track {
        background: #111827;
    }

}

@media (max-width: 480px) {

    .vcnhg {
        padding: 0;
    }

    .vcnhg thead,
    .vcnhg tbody {
        width: 620px;
        min-width: 620px;
    }

    .vcnhg th,
    .vcnhg td {
        min-width: 150px;
        padding: 10px 12px;
        font-size: 12px;
    }

}

.le-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    width: 100%;
    background: #0e111a;
    border-bottom: 1px solid #232b3e;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .38);
    overflow: visible;
}

body {
    padding-top: 72px;
}

.le-header__inner {
    width: 100%;
    max-width: 1200px;
    min-height: 72px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 18px;
}

.le-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.le-header__logo img {
    display: block;
    height: 46px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.le-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.le-header__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    color: #e8eaf0;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .22s ease;
    white-space: nowrap;
}

.le-header__link:hover {
    background: #161d30;
    color: #00b677;
}

.le-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}

.le-header__online {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #161d30;
    border: 1px solid #232b3e;
    color: #8b95ad;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.le-header__online span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00b677;
    box-shadow: 0 0 10px rgba(0, 182, 119, .7);
}

.le-header__online b {
    color: #e8eaf0;
}

.le-header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: .22s ease;
}

.le-header__btn--login {
    color: #e8eaf0;
    background: #101827;
    border: 1px solid #2a3450;
}

.le-header__btn--login:hover {
    color: #fff;
    border-color: #00b677;
}

.le-header__btn--signup {
    color: #07120d;
    background: #00b677;
    border: 1px solid #00b677;
    box-shadow: 0 0 18px rgba(0, 182, 119, .24);
}

.le-header__btn--signup:hover {
    background: #00d48b;
}

.le-header__burger {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: #161d30;
    border: 1px solid #232b3e;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
}

.le-header__burger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .22s ease;
}

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

.le-header__burger.is-open span:nth-child(2) {
    opacity: 0;
}

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

.le-mobile {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999998;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    background: #0e111a;
    border-bottom: 1px solid #232b3e;
    box-shadow: 0 20px 46px rgba(0, 0, 0, .55);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

.le-mobile.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.le-mobile__link {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 14px;
    background: #161d30;
    border: 1px solid #232b3e;
    color: #e8eaf0;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.le-mobile__link:hover {
    color: #00b677;
    border-color: #00b677;
}

.le-mobile__actions {
    display: grid;
    grid-template-columns:1fr;
    gap: 10px;
    margin-top: 8px;
}

.le-mobile__actions .le-header__btn {
    width: 100%;
}

@media (max-width: 1024px) {
    .le-header__nav,
    .le-header__online {
        display: none;
    }

    .le-header__burger {
        display: flex;
    }

    .le-header__inner {
        grid-template-columns:auto 1fr auto;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .le-header__inner {
        min-height: 60px;
        padding: 0 12px;
        gap: 8px;
    }

    .le-header__logo img {
        height: 36px;
        max-width: 116px;
    }

    .le-header__actions {
        gap: 7px;
    }

    .le-header__actions > .le-header__btn {
        min-height: 34px;
        padding: 0 10px;
        font-size: 12px;
        border-radius: 8px;
    }

    .le-header__burger {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .le-mobile {
        top: 60px;
        max-height: calc(100vh - 60px);
        padding: 12px;
    }
}

@media (max-width: 380px) {
    .le-header__actions > .le-header__btn {
        display: none;
    }

    .le-header__logo img {
        max-width: 130px;
    }
}