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

:root {
    --bg: #0a0a0a;
    --accent: #ff5050;
    --text: #f0f0f0;
    --card: #111111;
    --border: #222222;
    --soft: #1a1a1a;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

.scanline {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(255, 80, 80, 0.022) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
    animation: scan 12s linear infinite;
}

@keyframes scan {
    0% { background-position: 0 0; }
    100% { background-position: 0 600px; }
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 31px;
    font-weight: 600;
    letter-spacing: -1.8px;
}

.logo-symbol {
    color: var(--accent);
    font-size: 36px;
}

.status-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #777;
    letter-spacing: 1.2px;
}

.status-dot {
    width: 9px;
    height: 9px;
    background: #22ff88;
    border-radius: 50%;
    box-shadow: 0 0 12px #22ff88;
    animation: pulse 2s ease-in-out infinite;
}

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

.container {
    max-width: 1280px;
    margin: 52px auto 80px;
    padding: 0 40px;
}

.ad-banner {
    margin-bottom: 52px;
    padding: 12px;
    background: #0f0f0f;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.ad-gif {
    width: 1060px;
    height: 128px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1.42fr;
    gap: 72px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 38px;
    transition: border-color 0.3s ease;
}

.card:hover {
    border-color: #333;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.card-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -2.4px;
    font-weight: 600;
}

.rating {
    text-align: right;
}

.score {
    font-size: 68px;
    line-height: 1;
    font-weight: 600;
    color: var(--accent);
}

.rating-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-top: 4px;
}

.tagline {
    font-size: 19.5px;
    color: #bbbbbb;
    margin-bottom: 26px;
}

.key-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.feature {
    background: var(--soft);
    color: var(--accent);
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 500;
}

.card-title {
    font-size: 18.5px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 24px;
    font-weight: 500;
}

.mirror-link {
    display: block;
    color: var(--accent);
    text-decoration: none;
    font-family: ui-monospace, monospace;
    font-size: 15.2px;
    margin-bottom: 13px;
    word-break: break-all;
    transition: color 0.25s ease;
}

.mirror-link:hover {
    color: #ff7a7a;
}

.mirror-note {
    margin-top: 26px;
    font-size: 14px;
    color: #666;
    line-height: 1.65;
}

.screenshot-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.screenshot-btn {
    padding: 16px 24px;
    background: var(--soft);
    border: 1px solid var(--border);
    color: #ccc;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15.2px;
    transition: all 0.3s ease;
}

.screenshot-btn:hover,
.screenshot-btn.active {
    background: var(--accent);
    color: #000000;
    border-color: var(--accent);
    transform: translateX(4px);
}

.image-viewer {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.screenshot-panel {
    display: none;
}

.screenshot-panel.active {
    display: block;
}

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

.caption {
    padding: 20px 28px;
    background: #0a0a0a;
    font-size: 14.8px;
    color: #777;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stat-item {
    background: var(--soft);
    padding: 20px 16px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-value {
    font-size: 23px;
    font-weight: 600;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 13.2px;
    color: #666;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-section {
    margin-top: 68px;
}

.main-content-card {
    padding: 48px;
}

.main-content-card h2 {
    font-size: 33px;
    line-height: 1.25;
    margin-bottom: 32px;
}

.main-content-card h3 {
    font-size: 24px;
    margin: 46px 0 20px;
    color: #ddd;
    font-weight: 500;
}

.main-content-card p {
    margin-bottom: 24px;
    color: #ccc;
    font-size: 16.5px;
}

.advantages {
    list-style: none;
    margin: 32px 0 40px;
}

.advantages li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16.2px;
}

.advantages li:last-child {
    border-bottom: none;
}

.advantages li:before {
    content: "→";
    color: var(--accent);
    font-weight: bold;
    flex-shrink: 0;
}

.guide-list {
    margin: 32px 0;
    padding-left: 22px;
}

.guide-list li {
    margin-bottom: 18px;
    position: relative;
    font-size: 16.2px;
}

.guide-list li:before {
    content: counter(list-item) ".";
    counter-increment: list-item;
    position: absolute;
    left: -22px;
    color: var(--accent);
    font-weight: 600;
}

.seo-text {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    font-size: 15px;
    color: #777;
    font-style: italic;
    line-height: 1.75;
}

footer {
    border-top: 1px solid var(--border);
    padding: 80px 40px 60px;
    text-align: center;
    color: #555;
    font-size: 14px;
}

.footer-content p {
    margin-bottom: 12px;
}

.disclaimer {
    font-style: italic;
    max-width: 820px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1150px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .ad-gif {
        width: 100%;
        max-width: 1060px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
        margin-top: 40px;
    }
    .card {
        padding: 32px 28px;
    }
    .card-header h1 {
        font-size: 38px;
    }
    .score {
        font-size: 56px;
    }
    .main-content-card {
        padding: 36px 28px;
    }
}

.faq {
    margin: 32px 0 40px;
}

.faq-item {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item strong {
    display: block;
    color: #ddd;
    font-size: 16.5px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.faq-item p {
    color: #bbb;
    font-size: 15.8px;
    line-height: 1.65;
}

.main-content-card h1 {
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 32px;
    font-weight: 600;
    color: #ffffff;
}

.main-content-card h2 {
    font-size: 27px;
    margin: 48px 0 22px;
    color: #f0f0f0;
    font-weight: 500;
}

.content-section {
    margin-top: 70px;
}

.content-section .main-content-card {
    padding: 52px;
}

@media (max-width: 768px) {
    .content-section .main-content-card {
        padding: 36px 26px;
    }
    
    .main-content-card h1 {
        font-size: 28px;
    }
    
    .main-content-card h2 {
        font-size: 24px;
    }
    
    .faq-item strong {
        font-size: 15.5px;
    }
}

/* Schema & SEO friendly improvements */
main h1,
main h2 {
    scroll-margin-top: 80px;
}

.mirror-link {
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.mirror-link:hover {
    text-decoration: underline;
    color: #ff7070;
}

/* Performance optimized subtle enhancements */
.card {
    transition: border-color 0.25s ease;
}

.screenshot-btn {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item {
    transition: transform 0.25s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

/* Make FAQ more readable */
.faq-item {
    position: relative;
}

.faq-item strong::before {
    content: "Q:";
    color: var(--accent);
    margin-right: 8px;
    font-weight: 600;
}