:root {
            --emerald: #a8802e; --emerald-dark: #101010; --gold: #a8802e; --gold-light: #fdd8a7;
            --white: #ffffff; --text: #201a10; --text-mid: #423520; --text-muted: #7a6a4a;
            --bg: #f7f1e3; --bg-alt: #fbf2dc; --border: #e3d3a0;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }
        header { background: var(--emerald-dark); padding: 16px 5%; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
        .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); flex-shrink: 0; }
        .logo-icon-img { height: 40px; width: auto; display: block; }
        .logo-text { font-size: 1rem; font-weight: 700; }
        .logo-sub { font-size: 0.75rem; opacity: 0.8; }
        .header-btn { background: var(--gold); color: white; padding: 10px 24px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; }
        .header-btn:hover { background: #6d5219; transform: translateY(-2px); }
        .breadcrumb { padding: 14px 5%; background: var(--white); border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--text-muted); }
        .breadcrumb a { color: var(--emerald); text-decoration: none; }
        .breadcrumb span { margin: 0 8px; }
        .article-hero { background: linear-gradient(135deg, var(--emerald-dark), #151515, var(--emerald)); padding: 60px 5% 50px; text-align: center; }
        .article-hero .tag { display: inline-block; background: rgba(253,216,167,0.2); border: 1px solid rgba(253,216,167,0.4); color: var(--gold-light); padding: 6px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; margin-bottom: 20px; }
        .article-hero h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--white); font-weight: 700; max-width: 720px; margin: 0 auto; }
        .article-wrap { max-width: 720px; margin: 0 auto; padding: 60px 5% 20px; }
        .article-wrap p { margin-bottom: 18px; font-size: 1.03rem; color: var(--text-mid); }
        .article-wrap h4 { font-size: 1.25rem; color: var(--emerald); margin: 28px 0 14px; }
        .article-wrap ul { margin: 0 0 18px 22px; }
        .article-wrap li { margin-bottom: 8px; color: var(--text-mid); }
        .divider { height: 1px; background: var(--border); margin: 30px 0; }
        .highlight { background: var(--bg-alt); border-left: 4px solid var(--emerald); padding: 16px 22px; border-radius: 0 10px 10px 0; margin: 20px 0; }
        .highlight p { margin-bottom: 0; }
        .conclusion { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 28px; margin: 30px 0; text-align: center; }
        .conclusion h4 { margin-top: 0; }
        .conclusion .btn-cta { display: inline-block; margin-top: 14px; background: linear-gradient(135deg, #8a6a1f, #a8802e); color: white; padding: 14px 32px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: all 0.3s; }
        .conclusion .btn-cta:hover { transform: translateY(-2px); }
        .related { max-width: 720px; margin: 20px auto 60px; padding: 0 5%; }
        .related h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--text-mid); }
        .related-list { display: flex; flex-direction: column; gap: 10px; }
        .related-list a { color: var(--emerald); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
        .related-list a:hover { text-decoration: underline; }
        footer { background: var(--emerald-dark); color: rgba(255,255,255,0.8); text-align: center; padding: 32px 5%; font-size: 0.9rem; }
        footer a { color: var(--gold-light); text-decoration: none; }
        .float-btns { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
        .float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: white; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.2); animation: float 3s ease-in-out infinite; }
        .float-btn:hover { transform: scale(1.12); }
        .float-btn.tg { background: #0088cc; }
        .float-btn.email { background: #d44638; animation-delay: 0.5s; }
        .float-btn.vk { background: #4c75a3; animation-delay: 1s; }
        @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
        @media (max-width: 480px) {
            .article-wrap, .related { padding-left: 5%; padding-right: 5%; }
            .float-btns { bottom: 20px; right: 16px; }
            .float-btn { width: 48px; height: 48px; font-size: 1.4rem; }
        }
