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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #181a20;
    color: #e0e0e0;
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.signal-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #23252e;
    z-index: 1000;
}

.signal-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #2777ff, #5fa3ff);
    transition: width 0.35s ease;
}

header {
    padding: 80px 0 50px;
    text-align: center;
    border-bottom: 1px solid #23252e;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -3px;
    color: #ffffff;
}

.accent {
    color: #2777ff;
}

.subtitle {
    font-size: 1.15rem;
    color: #888;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.section {
    padding: 110px 0;
    border-bottom: 1px solid #23252e;
}

.section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 2.35rem;
    line-height: 1.2;
    margin-bottom: 26px;
    color: #ffffff;
    font-weight: 600;
}

.lead {
    font-size: 1.28rem;
    max-width: 740px;
    color: #c0c0c0;
    margin-bottom: 32px;
}

.image-section {
    display: flex;
    align-items: center;
    gap: 90px;
}

.reverse {
    flex-direction: row-reverse;
}

.image-wrapper {
    flex: 1;
    border: 1px solid #2a2d38;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.65);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(39, 119, 255, 0.15);
}

.screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.image-wrapper:hover .screenshot {
    transform: scale(1.04);
}

.text-block {
    flex: 1;
}

.features {
    margin-top: 34px;
    list-style: none;
}

.features li {
    padding: 14px 0 14px 32px;
    border-top: 1px solid #2a2d38;
    position: relative;
    font-size: 1.05rem;
}

.features li:before {
    content: "→";
    color: #2777ff;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.mirrors {
    margin-top: 45px;
    background: #23252e;
    padding: 36px;
    border-radius: 12px;
    border: 1px solid #2a2d38;
}

.mirrors h3 {
    margin-bottom: 20px;
    color: #2777ff;
    font-size: 1.35rem;
}

.mirrors ul {
    list-style: none;
}

.mirrors li {
    margin-bottom: 16px;
}

.mirrors a {
    color: #8eb8ff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.mirrors a:hover {
    color: #ffffff;
}

.warning {
    margin-top: 24px;
    font-size: 0.96rem;
    color: #ff6b6b;
    font-style: italic;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
    margin-top: 45px;
}

.stat {
    background: #23252e;
    padding: 18px 22px;
    border-radius: 8px;
    border: 1px solid #2a2d38;
    font-size: 1.07rem;
}

.online {
    color: #2777ff;
}

.verdict-box {
    background: #23252e;
    padding: 68px 55px;
    border-radius: 14px;
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
    border: 1px solid #2a2d38;
}

.rating {
    font-size: 5.2rem;
    font-weight: 700;
    color: #2777ff;
    line-height: 1;
    margin: 24px 0 32px;
}

.disclaimer {
    margin-top: 34px;
    font-size: 0.96rem;
    color: #8a8a8a;
    line-height: 1.75;
}

footer {
    padding: 60px 0 40px;
    text-align: center;
    color: #666;
    font-size: 0.93rem;
}

footer p {
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
    .image-section,
    .reverse {
        flex-direction: column;
        gap: 55px;
        text-align: center;
    }
    
    h2 {
        font-size: 2.1rem;
    }
    
    .section {
        padding: 90px 0;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 18px;
    }
    
    header {
        padding: 65px 0 40px;
    }
    
    .logo {
        font-size: 2.45rem;
    }
    
    .mirrors {
        padding: 26px;
    }
    
    .verdict-box {
        padding: 50px 30px;
    }
    
    .rating {
        font-size: 4.4rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
    margin-top: 45px;
}

.stat {
    background: #23252e;
    padding: 18px 22px;
    border-radius: 8px;
    border: 1px solid #2a2d38;
    font-size: 1.07rem;
    transition: border-color 0.25s ease;
}

.stat:hover {
    border-color: #2777ff;
}

.online {
    color: #2777ff;
    font-weight: 600;
}

.mirrors p {
    margin-bottom: 20px;
    color: #c0c0c0;
    font-size: 1.05rem;
}

h2 strong {
    color: #2777ff;
}

.lead strong {
    color: #8eb8ff;
}

.warning {
    margin-top: 24px;
    font-size: 0.96rem;
    color: #ff6b6b;
    font-style: italic;
    line-height: 1.5;
}

.verdict-box h2 {
    margin-bottom: 20px;
}

.disclaimer {
    margin-top: 34px;
    font-size: 0.96rem;
    color: #8a8a8a;
    line-height: 1.75;
    font-style: italic;
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 14px;
    }
    
    .stat {
        padding: 16px 18px;
        font-size: 1rem;
    }
    
    .mirrors ul li {
        font-size: 1.02rem;
    }
}