        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #2e7d32;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #1b5e20;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Georgia', serif;
        }
        .my-logo i {
            color: #ffd54f;
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.02);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #fff;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1b5e20;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 0.8rem;
        }
        .mobile-nav a {
            color: white;
            font-weight: 600;
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: #e8f5e9;
            padding: 0.8rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #666;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: #1b5e20;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #c8e6c9;
            font-size: 1.3rem;
        }
        h1, h2, h3, h4 {
            color: #1b5e20;
            font-family: 'Georgia', serif;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 0;
            margin-bottom: 1rem;
            color: #2e7d32;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid #4caf50;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.6rem;
            color: #388e3c;
        }
        h4 {
            font-size: 1.3rem;
            color: #43a047;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: #555;
            font-weight: 500;
            padding: 1rem;
            background-color: #f1f8e9;
            border-radius: 8px;
            border-left: 4px solid #4caf50;
        }
        strong {
            color: #1b5e20;
            font-weight: 700;
        }
        em {
            color: #555;
        }
        blockquote {
            border-left: 4px solid #ffd54f;
            background-color: #fffde7;
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #5d4037;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .article-img {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .article-img img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
        }
        .img-caption {
            margin-top: 0.8rem;
            font-size: 0.95rem;
            color: #666;
            font-style: italic;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border: 1px solid #c8e6c9;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2e7d32;
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
        }
        button, .btn {
            background: linear-gradient(to right, #2e7d32, #1b5e20);
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #1b5e20, #2e7d32);
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(27, 94, 32, 0.3);
            text-decoration: none;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ffd54f;
            cursor: pointer;
            margin: 0.5rem 0;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .site-footer {
            background-color: #1b5e20;
            color: #e8f5e9;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px dashed rgba(255,255,255,0.2);
        }
        friend-link a {
            color: #c8e6c9;
        }
        friend-link a:hover {
            color: #ffd54f;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #a5d6a7;
        }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .update-time {
            font-size: 0.9rem;
            color: #777;
            background: #f5f5f5;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 0 15px; }
            .article-content { padding: 1.5rem; }
            .my-logo { font-size: 1.8rem; }
        }
