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

:root {
    --bg: #0f1419;
    --bg-card: #1a1f26;
    --border: #2d3540;
    --text: #e6edf3;
    --text-muted: #8b949e;
    --accent: #58a6ff;
    --accent-hover: #79b8ff;
    --green: #3fb950;
    --red: #f85149;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

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

.site-header {
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

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

.hero {
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--border);
}

.hero h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.hero-lead {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 24px;
}

.hero-rating {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.rating-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
}

.rating-label {
    font-size: 14px;
    color: var(--text-muted);
}

.content-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

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

.content-section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
}

.content-section p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.info-card {
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.info-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-value {
    font-weight: 600;
    font-size: 15px;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.pros, .cons {
    padding: 20px;
    border-radius: 8px;
}

.pros {
    background: rgba(63, 185, 80, 0.08);
    border: 1px solid rgba(63, 185, 80, 0.2);
}

.cons {
    background: rgba(248, 81, 73, 0.06);
    border: 1px solid rgba(248, 81, 73, 0.2);
}

.pros h3, .cons h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pros h3 { color: var(--green); }
.cons h3 { color: var(--red); }

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: var(--text-muted);
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
}

.cons li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--red);
}

.cta-block {
    margin-top: 24px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
}

.cta-btn:hover {
    background: var(--accent-hover);
}

.faq-list {
    margin-top: 20px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 16px 20px;
    font-weight: 500;
    cursor: pointer;
}

.faq-item summary:hover {
    color: var(--accent);
}

.faq-item p {
    padding: 0 20px 16px;
    margin: 0;
    font-size: 15px;
}

.disclaimer {
    background: var(--bg-card);
}

.disclaimer p {
    font-size: 14px;
    color: var(--text-muted);
}

.site-footer {
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.site-footer p {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .nav {
        display: none;
    }

    .hero h1 {
        font-size: 22px;
    }

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

    .pros-cons {
        grid-template-columns: 1fr;
    }
}
