        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #6aaa64;
            --secondary: #c9b458;
            --dark: #121212;
            --light: #f8f9fa;
            --gray: #868e96;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --radius: 8px;
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--light);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: var(--primary); text-decoration: none; transition: var(--transition); }
        a:hover { color: #5a8c55; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
        p { margin-bottom: 1.5rem; }
        .site-header {
            background: white;
            padding: 1.5rem 0;
            border-bottom: 3px solid var(--primary);
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Courier New', monospace;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        .my-logo:hover { opacity: 0.9; }
        .nav-main { display: flex; align-items: center; }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .nav-links a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 0.8rem 1rem;
            border-radius: var(--radius);
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: var(--gray); }
        .breadcrumb a:hover { color: var(--primary); }
        .breadcrumb i { margin: 0 0.5rem; color: var(--gray); }
        .search-widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 2.5rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover { background: #5a8c55; }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .content-main { grid-template-columns: 1fr; }
        }
        .article-area {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-meta {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #eee;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--dark);
            margin: 1.5rem 0 0.8rem;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--gray);
            font-weight: 300;
            margin-bottom: 2rem;
        }
        .highlight {
            background: #fff9db;
            padding: 1.5rem;
            border-left: 4px solid var(--secondary);
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .feature-img {
            width: 100%;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        blockquote {
            font-style: italic;
            color: #555;
            border-left: 4px solid var(--primary);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        .comment-rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-label { margin-bottom: 0.5rem; font-weight: 600; }
        .form-input, .form-textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active { color: #ffc107; }
        .form-submit {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--radius);
            font-size: 1.1rem;
            cursor: pointer;
            align-self: flex-start;
            transition: var(--transition);
        }
        .form-submit:hover { background: #5a8c55; }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-radius: var(--radius) var(--radius) 0 0;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo { font-size: 2rem; margin-bottom: 1rem; }
        .footer-title {
            font-size: 1.3rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px dotted #444;
        }
        friend-link a { color: #ccc; }
        friend-link a:hover { color: white; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .nav-main { width: 100%; margin-top: 1rem; }
            .nav-links {
                flex-direction: column;
                width: 100%;
                display: none;
                gap: 0;
            }
            .nav-links.active { display: flex; }
            .nav-links li { width: 100%; border-bottom: 1px solid #eee; }
            .nav-links a { display: block; padding: 1rem; }
            .hamburger { display: block; align-self: flex-end; margin-top: -3rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            .article-area { padding: 1.5rem; }
        }
