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

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
}

p {
    font-size: 1rem;
    margin-bottom: 12px;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.15s;
}

.btn:hover {
    opacity: 0.85;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
}

.btn-secondary {
    background: #0088cc;
    color: #fff;
}

/* === Sections === */
section {
    padding: 48px 0;
}

/* Hero */
.hero {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 48px;
}

.logo {
    margin-bottom: 24px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    object-fit: cover;
    background: #e0e0e0;
}

.subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 28px;
}

.price-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
}

/* About */
.about {
    background: #fafafa;
}

/* Results */
.screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.screenshot-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 40px 16px;
    text-align: center;
    color: #999;
}

.screenshot-placeholder span {
    display: block;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 6px;
    color: #777;
}

.screenshot-placeholder p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Features */
.features {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #1a1a1a;
}

/* CTA */
.cta {
    text-align: center;
    background: #fafafa;
}

/* Telegram */
.telegram {
    text-align: center;
}

/* Footer */
footer {
    padding: 32px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: #999;
}

.footer-links a:hover {
    color: #555;
}

.copyright {
    font-size: 0.8rem;
    color: #bbb;
    margin-bottom: 0;
}

/* Legal pages */
.legal {
    padding-top: 32px;
}

.legal h1 {
    margin-bottom: 8px;
}

.legal h2 {
    margin-top: 28px;
}

.legal ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal li {
    margin-bottom: 4px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #777;
}

.back-link:hover {
    color: #333;
}

/* === Mobile === */
@media (max-width: 480px) {
    h1 {
        font-size: 1.45rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .btn {
        display: block;
        width: 100%;
    }

    .screenshots {
        grid-template-columns: 1fr;
    }
}
