@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: #ffffff;
    --muted: #aaaaaa;
    --border: #222222;
}

* {
    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.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;
    border-bottom: 1px solid var(--border);
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(12px);
}

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

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 29px;
    font-weight: 600;
    letter-spacing: -1.2px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
}

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

.status {
    font-size: 14.5px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 500;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

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

.hero {
    padding: 110px 0 90px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.hero-left h1.glitch {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 128px;
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -7px;
    color: #fff;
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 3px;
    text-shadow: -3px 0 #ff5050;
    animation: glitch-1 2.5s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    left: -3px;
    text-shadow: 3px 0 #00f0ff;
    animation: glitch-2 3.2s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-4px, 3px); }
    40% { transform: translate(-3px, -4px); }
    60% { transform: translate(4px, 2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0% { transform: translate(0); }
    25% { transform: translate(4px, -3px); }
    50% { transform: translate(-2px, 4px); }
    75% { transform: translate(3px, -2px); }
    100% { transform: translate(0); }
}

.tagline {
    font-size: 23px;
    color: var(--accent);
    margin: 18px 0 65px;
    font-weight: 500;
}

.mirrors {
    margin-bottom: 55px;
}

.mirrors-title {
    font-size: 13px;
    letter-spacing: 2.5px;
    color: #555;
    margin-bottom: 14px;
    text-transform: uppercase;
}

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

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

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    padding: 17px 46px;
    font-size: 15.5px;
    text-decoration: none;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
}

.mockup {
    width: 100%;
    border: 14px solid #111;
    border-radius: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
    transition: transform 0.4s ease;
}

.mockup:hover {
    transform: scale(1.02);
}

.ad-banner {
    max-width: 1060px;
    margin: 50px auto;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.ad-gif {
    width: 100%;
    height: 128px;
    object-fit: cover;
    display: block;
}

.review-section {
    padding: 90px 0 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 13.5px;
    letter-spacing: 3.5px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 500;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    line-height: 1.15;
    margin-top: 14px;
}

.intro-text p {
    font-size: 17.2px;
    color: #ddd;
    margin-bottom: 22px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.key-info {
    background: #111111;
    border: 1px solid var(--border);
    padding: 36px 40px;
    margin: 70px 0;
}

.key-info h3 {
    color: var(--accent);
    font-size: 21px;
    margin-bottom: 24px;
}

.key-info ul {
    list-style: none;
}

.key-info li {
    padding: 11px 0;
    border-bottom: 1px solid #1f1f1f;
    font-size: 16px;
}

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

.key-info strong {
    color: var(--accent);
}

.screenshot-card {
    background: #111111;
    border: 1px solid var(--border);
    padding: 28px;
    margin-bottom: 55px;
    transition: all 0.35s ease;
}

.screenshot-card:hover {
    border-color: #333;
    transform: translateY(-8px);
}

.card-label {
    font-size: 12.8px;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 500;
}

.screenshot {
    width: 100%;
    border: 10px solid #1a1a1a;
    margin-bottom: 24px;
    border-radius: 4px;
}

.card-desc {
    font-size: 16px;
    color: #ccc;
    line-height: 1.75;
}

.rules-block {
    background: #111111;
    border: 1px solid var(--border);
    padding: 46px 50px;
    margin: 70px 0;
    font-size: 16.5px;
    line-height: 1.82;
}

.rules-block h3 {
    color: var(--accent);
    margin-bottom: 22px;
    font-size: 23px;
}

.stats-strip {
    display: flex;
    justify-content: space-between;
    background: #111111;
    border: 1px solid var(--border);
    padding: 38px 70px;
    margin: 90px 0;
    flex-wrap: wrap;
    gap: 50px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 170px;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 54px;
    line-height: 1;
    color: var(--accent);
}

.stat-text {
    font-size: 14.5px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 10px;
}

.verdict {
    max-width: 780px;
    margin: 0 auto 110px;
    text-align: center;
}

.verdict-box {
    border: 2px solid var(--accent);
    padding: 76px 60px;
    background: #0f0f0f;
}

.verdict-score {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 82px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 26px;
}

.verdict h3 {
    font-size: 29px;
    margin-bottom: 34px;
    letter-spacing: 1px;
}

.verdict p {
    font-size: 17.8px;
    line-height: 1.85;
    color: #ddd;
    margin-bottom: 44px;
}

.verdict-footer {
    font-size: 14.5px;
    color: #666;
    font-style: italic;
}

.additional-content {
    max-width: 880px;
    margin: 0 auto;
    font-size: 16.8px;
    line-height: 1.85;
}

.additional-content h2 {
    color: var(--accent);
    margin: 68px 0 24px;
    font-size: 23px;
}

.additional-content h3 {
    color: #ddd;
    margin: 42px 0 16px;
    font-size: 19px;
}

.additional-content p {
    margin-bottom: 20px;
}

.additional-content ol {
    padding-left: 26px;
    margin: 24px 0;
}

.additional-content li {
    margin-bottom: 14px;
}

.extra-section {
    padding: 80px 0 100px;
    background: #0c0c0c;
}

.extra-section .section-header {
    margin-bottom: 60px;
}

.extra-text p {
    font-size: 17px;
    color: #ccc;
    max-width: 860px;
    margin: 0 auto 24px;
}

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

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

.small {
    font-size: 13px;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-left h1.glitch {
        font-size: 96px;
    }
}

@media (max-width: 680px) {
    .container {
        padding: 0 24px;
    }
    .header-content {
        padding: 18px 24px;
    }
    .hero {
        padding: 80px 0 70px;
    }
    .hero-left h1.glitch {
        font-size: 78px;
    }
    .stats-strip {
        flex-direction: column;
        text-align: center;
        padding: 32px 30px;
        gap: 40px;
    }
    .verdict-box {
        padding: 50px 30px;
    }
}