/* --- СТИЛЬ В ТОЧКУ КАК В ГАЙДЕ --- */
:root {
    --bg-primary: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --accent: #2563eb;
    --code-bg: #f4f4f5;
}

body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height: 1.6; color: var(--text-main); max-width: 800px; margin: 40px auto; padding: 0 20px; }

header { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.profile-pic { width: 80px; height: 80px; border-radius: 50%; }
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; margin-top: 30px; border-bottom: 1px solid #eee; padding-bottom: 5px; }

.code-block { background: var(--code-bg); padding: 15px; border-radius: 6px; font-family: monospace; }
.info-card { background: #f0fdf4; border-left: 4px solid #22c55e; padding: 15px; margin: 20px 0; }
