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

:root {
    --bg: #0a0a0a;
    --surface: #111111;
    --text: #e0e0e0;
    --accent: #ff5050;
    --muted: #666666;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
}

.scanline {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(255,80,80,0.025) 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 800px; }
}

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

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

.logo {
    font-size: 29px;
    font-weight: 700;
    letter-spacing: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.logo-symbol {
    color: var(--accent);
    font-size: 34px;
    line-height: 1;
}

nav a {
    color: #aaaaaa;
    text-decoration: none;
    margin-left: 42px;
    font-size: 15.5px;
    letter-spacing: 1px;
    transition: color 0.25s ease;
}

nav a:hover {
    color: var(--accent);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.hero-left {
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.hero-text .tagline {
    font-size: 23px;
    color: #999999;
    margin-bottom: 48px;
    max-width: 520px;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: #000000;
    font-weight: 700;
    font-size: 17px;
    padding: 18px 42px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.status {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 38px;
}

.status-dot {
    width: 11px;
    height: 11px;
    background: #00ff9d;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ff9d;
    animation: pulse 2s infinite;
}

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

.hero-right {
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,80,80,0.07), transparent 70%);
}

.screenshot {
    max-width: 90%;
    border: 1px solid #222222;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    transition: transform 0.4s ease;
}

.hero-right:hover .screenshot {
    transform: scale(1.03);
}

.review-section,
.features-section {
    padding: 160px 40px 120px;
    background: var(--surface);
}

.section-header {
    max-width: 1240px;
    margin: 0 auto 90px;
    text-align: center;
}

.section-header .label {
    color: var(--accent);
    font-size: 13.5px;
    letter-spacing: 6px;
    font-weight: 700;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -1px;
}

.review-content {
    max-width: 1240px;
    margin: 0 auto;
}

.review-content p {
    margin-bottom: 32px;
    font-size: 18px;
}

.review-content h3 {
    color: var(--accent);
    font-size: 27px;
    margin: 60px 0 22px;
    letter-spacing: -0.5px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 42px;
    margin: 70px 0;
}

.review-card {
    background: var(--bg);
    border: 1px solid #1f1f1f;
    padding: 26px;
    transition: all 0.35s ease;
}

.review-card:hover {
    border-color: var(--accent);
    transform: translateY(-12px);
}

.review-card img {
    width: 100%;
    margin-bottom: 24px;
    border: 1px solid #222;
}

.card-label {
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 14px;
    font-weight: 700;
}

.ad-banner {
    max-width: 1060px;
    margin: 100px auto;
    border: 1px solid #222222;
    overflow: hidden;
}

.mirrors-section {
    padding: 140px 40px;
    background: var(--bg);
    text-align: center;
}

.mirrors-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.subtitle {
    color: var(--muted);
    font-size: 19px;
    max-width: 680px;
    margin: 0 auto 70px;
}

.mirrors-container {
    max-width: 860px;
    margin: 0 auto 70px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mirror-link {
    display: block;
    background: #111111;
    padding: 26px 34px;
    color: #cccccc;
    text-decoration: none;
    font-size: 17.5px;
    border: 1px solid #222222;
    transition: all 0.3s ease;
    word-break: break-all;
}

.mirror-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: #1a1a1a;
}

.warning {
    max-width: 640px;
    margin: 0 auto;
    font-size: 14.5px;
    color: #555555;
    line-height: 1.6;
}

.features-grid {
    max-width: 1240px;
    margin: 0 auto 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
}

.feature-item {
    background: var(--bg);
    padding: 28px 32px;
    border: 1px solid #1f1f1f;
    font-size: 17.5px;
    transition: border 0.3s ease;
}

.feature-item:hover {
    border-color: var(--accent);
}

.verdict-box {
    max-width: 1240px;
    margin: 0 auto;
}

.verdict {
    background: var(--bg);
    border: 2px solid var(--accent);
    padding: 70px 90px;
    text-align: center;
}

.verdict h3 {
    font-size: 98px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 24px;
}

.verdict .red {
    color: var(--accent);
}

.verdict p {
    font-size: 20px;
    color: #aaaaaa;
    max-width: 760px;
    margin: 0 auto;
}

.final-section {
    padding: 160px 40px 140px;
    background: var(--surface);
}

.final-content {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.conclusion-text h2 {
    font-size: 46px;
    color: var(--accent);
    margin-bottom: 32px;
}

.conclusion-text p {
    font-size: 19px;
    margin-bottom: 28px;
}

.final-image img {
    width: 100%;
    box-shadow: 40px 40px 0 rgba(255,80,80,0.08);
    border: 1px solid #222;
}

footer {
    border-top: 1px solid #1f1f1f;
    padding: 90px 40px 60px;
    text-align: center;
    font-size: 14.5px;
    color: #555555;
}

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

.red {
    color: var(--accent);
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-left {
        padding: 120px 40px 90px;
    }
    .hero-right {
        height: 560px;
    }
    .hero-text h1 {
        font-size: 58px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 18px 20px;
    }
    nav a {
        margin-left: 20px;
        font-size: 14px;
    }
    .review-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.intro-section,
.guide-section,
.seo-section {
    padding: 120px 40px;
    background: #111111;
}

.content-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
}

.content-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #ffffff;
    letter-spacing: -1px;
}

.content-wrapper h3 {
    font-size: 26px;
    color: #ff5050;
    margin: 52px 0 22px;
    font-weight: 700;
}

.content-wrapper p {
    margin-bottom: 28px;
}

.content-wrapper strong {
    color: #ff5050;
}

.guide-section .content-wrapper h3 {
    margin-top: 48px;
}

.seo-section .content-wrapper h3 {
    color: #ff5050;
}

.final-section {
    padding: 140px 40px 160px;
    background: #0a0a0a;
}

.final-content {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.conclusion-text {
    padding-right: 40px;
}

.conclusion-text h2 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #ff5050;
}

.verdict-score {
    font-size: 96px;
    line-height: 1;
    font-weight: 700;
    margin: 20px 0 30px;
}

.verdict-score .red {
    color: #ff5050;
}

.final-image img {
    width: 100%;
    border: 1px solid #222222;
    box-shadow: 40px 40px 0 rgba(255, 80, 80, 0.09);
}

@media (max-width: 1100px) {
    .final-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .conclusion-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .intro-section,
    .guide-section,
    .seo-section {
        padding: 90px 20px;
    }
    .content-wrapper h2 {
        font-size: 34px;
    }
}