* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f0f12; color: #e8e8e8; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
        a { color: #c9a84c; text-decoration: none; }
        a:hover { color: #e6c869; text-decoration: underline; }
        .site-header { background: linear-gradient(135deg, #1a1a20 0%, #23232a 100%); border-bottom: 3px solid #c9a84c; box-shadow: 0 2px 20px rgba(0,0,0,0.5); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; flex-wrap: wrap; gap: 10px; }
        .my-logo { font-size: 1.6rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #fff; background: linear-gradient(45deg, #c9a84c, #e6c869); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
        .my-logo:hover { filter: brightness(1.2); text-decoration: none; }
        .nav-toggle { display: none; background: none; border: 2px solid #c9a84c; color: #c9a84c; font-size: 1.4rem; padding: 6px 14px; border-radius: 6px; cursor: pointer; }
        .nav-toggle.active { background: #c9a84c; color: #1a1a20; }
        .nav-menu { display: flex; gap: 0; list-style: none; flex-wrap: wrap; align-items: center; }
        .nav-menu li { position: relative; }
        .nav-menu a { display: block; padding: 10px 16px; color: #ddd; font-weight: 500; font-size: .95rem; transition: all .3s; border-radius: 4px; }
        .nav-menu a:hover { background: #2a2a35; color: #c9a84c; text-decoration: none; }
        .nav-menu .active-link { color: #c9a84c; border-bottom: 2px solid #c9a84c; }
        @media (max-width: 768px) {
            .nav-toggle { display: inline-block; }
            .nav-menu { display: none; width: 100%; flex-direction: column; align-items: flex-start; padding: 10px 0; background: #1a1a20; border-radius: 8px; }
            .nav-menu.open { display: flex; }
            .nav-menu a { width: 100%; padding: 12px 16px; border-bottom: 1px solid #333; }
        }
        .breadcrumb { background: #1a1a20; padding: 10px 0; border-bottom: 1px solid #333; font-size: .85rem; }
        .breadcrumb-list { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; list-style: none; }
        .breadcrumb-list li+li::before { content: '▶'; color: #666; margin: 0 6px; font-size: .7rem; }
        .breadcrumb-list a { color: #aaa; }
        .breadcrumb-list a:hover { color: #c9a84c; }
        .breadcrumb-list .crumb-current { color: #c9a84c; }
        .article-wrapper { display: grid; grid-template-columns: 1fr 320px; gap: 30px; padding: 30px 0; }
        @media (max-width: 992px) { .article-wrapper { grid-template-columns: 1fr; } }
        .article-main { background: #17171b; padding: 0; border-radius: 12px; overflow: hidden; }
        .article-content { padding: 28px 30px; }
        @media (max-width: 576px) { .article-content { padding: 18px 14px; } }
        .article-sidebar { background: #17171b; border-radius: 12px; padding: 20px; height: fit-content; position: sticky; top: 90px; }
        @media (max-width: 992px) { .article-sidebar { position: static; order: -1; } }
        h1 { font-size: 2.2rem; line-height: 1.2; margin: 0 0 20px; color: #f0e0b0; }
        h2 { font-size: 1.6rem; margin: 40px 0 14px; color: #c9a84c; border-bottom: 1px solid #333; padding-bottom: 8px; }
        h3 { font-size: 1.3rem; margin: 28px 0 10px; color: #d4bd78; }
        h4 { font-size: 1.1rem; margin: 20px 0 8px; color: #b8b08c; }
        p { margin-bottom: 18px; }
        .lead { font-size: 1.15rem; color: #bbb; font-weight: 300; }
        .highlight-box { background: #20202a; border-left: 4px solid #c9a84c; padding: 18px 20px; margin: 24px 0; border-radius: 0 8px 8px 0; }
        .stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin: 24px 0; }
        .stat-card { background: #20202a; padding: 16px; text-align: center; border-radius: 10px; border: 1px solid #333; }
        .stat-number { font-size: 2rem; font-weight: 800; color: #c9a84c; display: block; }
        .stat-label { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: #999; }
        .article-img { width: 100%; height: auto; border-radius: 10px; margin: 24px 0; border: 1px solid #333; }
        .img-caption { font-size: .85rem; color: #888; text-align: center; margin-top: -16px; margin-bottom: 24px; }
        blockquote { background: #20202a; border-left: 5px solid #c9a84c; padding: 16px 20px; margin: 20px 0; font-style: italic; border-radius: 0 8px 8px 0; color: #ccc; }
        blockquote cite { display: block; margin-top: 8px; font-style: normal; font-size: .85rem; color: #999; }
        table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .9rem; }
        th { background: #20202a; color: #c9a84c; padding: 12px; text-align: left; border-bottom: 2px solid #444; }
        td { padding: 12px; border-bottom: 1px solid #333; }
        .btn { display: inline-block; background: #c9a84c; color: #1a1a20; padding: 10px 24px; border-radius: 6px; font-weight: 700; transition: all .3s; border: none; cursor: pointer; }
        .btn:hover { background: #e6c869; transform: translateY(-2px); }
        .form-card { background: #20202a; padding: 24px; border-radius: 12px; margin: 30px 0; border: 1px solid #333; }
        .form-card h3 { margin-top: 0; }
        .form-group { margin-bottom: 16px; }
        .form-group label { display: block; margin-bottom: 6px; color: #aaa; font-size: .9rem; }
        .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 14px; background: #17171b; color: #e8e8e8; border: 1px solid #444; border-radius: 6px; font-size: 1rem; }
        .form-group input:focus, .form-group textarea:focus { border-color: #c9a84c; outline: none; }
        .rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
        .rating input { display: none; }
        .rating label { font-size: 1.6rem; color: #555; cursor: pointer; }
        .rating input:checked~label { color: #c9a84c; }
        .rating label:hover, .rating label:hover~label { color: #c9a84c; }
        .sidebar-widget { margin-bottom: 30px; }
        .sidebar-title { font-size: 1.1rem; color: #c9a84c; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid #333; }
        .side-links { list-style: none; }
        .side-links li { margin-bottom: 8px; }
        .side-links a { display: block; padding: 8px 12px; background: #20202a; border-radius: 6px; border-left: 3px solid transparent; }
        .side-links a:hover { border-left-color: #c9a84c; background: #20202a; text-decoration: none; }
        .search-box { display: flex; gap: 6px; margin-bottom: 10px; }
        .search-box input { flex: 1; }
        .site-footer { background: #0e0e12; border-top: 2px solid #333; margin-top: 30px; padding-top: 30px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; padding: 30px 0; }
        .footer-col h4 { color: #c9a84c; margin-bottom: 14px; font-size: 1.1rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 6px; }
        friend-link { display: block; background: #17171b; padding: 14px; border-radius: 8px; margin-top: 12px; }
        .copyright { background: #0a0a0c; padding: 16px 0; text-align: center; font-size: .8rem; color: #777; }
        @media (max-width: 768px) {
            h1 { font-size: 1.6rem; }
            h2 { font-size: 1.3rem; }
            .stat-grid { grid-template-columns: 1fr 1fr; }
        }
        .toc { background: #20202a; padding: 20px; border-radius: 10px; margin-bottom: 30px; border: 1px solid #333; }
        .toc-title { font-weight: 800; margin-bottom: 12px; color: #c9a84c; }
        .toc-list { list-style: none; }
        .toc-list li { margin-bottom: 6px; }
        .toc-list a { color: #aaa; }
        .toc-list a:hover { color: #c9a84c; }
        .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
        @media (max-width: 768px) { .pros-cons { grid-template-columns: 1fr; } }
        .pros, .cons { background: #20202a; padding: 16px; border-radius: 8px; }
        .pros h4 { color: #5cb85c; }
        .cons h4 { color: #d9534f; }
