* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        :root {
            --primary: #6aaa64;
            --secondary: #c9b458;
            --dark: #121212;
            --light: #f8f9fa;
            --gray: #868e96;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            color: var(--secondary);
            text-decoration: none;
        }
        .my-logo i {
            color: var(--secondary);
        }
        .search-form {
            display: flex;
            max-width: 400px;
            flex-grow: 1;
            margin: 0 2rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.75rem 1rem;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--secondary);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--dark);
            cursor: pointer;
        }
        nav {
            background-color: var(--dark);
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
        }
        .nav-list li {
            position: relative;
        }
        .nav-list a {
            color: white;
            display: block;
            padding: 1rem 1.5rem;
            font-weight: 500;
        }
        .nav-list a:hover {
            background-color: rgba(255,255,255,0.1);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 0.8rem 0;
            background-color: #f1f3f5;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb span {
            color: var(--dark);
        }
        main {
            flex-grow: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid var(--primary);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--gray);
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #eee;
        }
        h3 {
            font-size: 1.7rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--dark);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--dark);
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-left: 5px solid var(--primary);
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fff9db;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid var(--secondary);
            margin: 2rem 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 2rem auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .interactive-box {
            background: linear-gradient(135deg, #6aaa64, #c9b458);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            margin: 3rem 0;
        }
        .interactive-box h3 {
            color: white;
            margin-top: 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            cursor: pointer;
        }
        .rating-stars .star {
            color: #ddd;
            transition: var(--transition);
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: gold;
        }
        input, textarea, select {
            padding: 0.9rem;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
        }
        button[type="submit"] {
            background-color: var(--dark);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        button[type="submit"]:hover {
            background-color: var(--primary);
        }
        aside {
            position: sticky;
            top: 140px;
            height: fit-content;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--dark);
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #eee;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dotted #eee;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links a:hover {
            color: var(--primary);
        }
        .today-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            text-align: center;
        }
        .stat {
            padding: 1rem;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        .stat .number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #bbb;
        }
        friend-link a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            h1 {
                font-size: 2.7rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                margin: 1rem 0 0;
                max-width: 100%;
            }
            .mobile-toggle {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                display: none;
            }
            .nav-list.active {
                display: flex;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            article {
                padding: 1.5rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
