:root {
            --primary: #2E7D32;
            --primary-dark: #1B5E20;
            --secondary: #FF9800;
            --accent: #F44336;
            --light: #f8f9fa;
            --dark: #212121;
            --gray: #757575;
            --gray-light: #e0e0e0;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --container-width: 1200px;
        }
        * {
            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: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #FFEB3B, #FF9800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 5px 0;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        nav ul {
            display: flex;
            gap: 25px;
        }
        nav a {
            padding: 8px 12px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 1rem;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: #FFEB3B;
        }
        .breadcrumb {
            background-color: rgba(0,0,0,0.1);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 10px;
            color: var(--gray-light);
        }
        .breadcrumb a:hover {
            color: #FFEB3B;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: var(--light);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
        }
        .article-header {
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 20px;
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .update-time {
            background-color: #E8F5E9;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 600;
        }
        .hero-image {
            width: 100%;
            border-radius: var(--radius);
            overflow: hidden;
            margin: 25px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .hero-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--gray-light);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-dark);
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--secondary);
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: #FFF9C4;
            padding: 20px;
            border-left: 5px solid var(--secondary);
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 25px 0;
        }
        .tip {
            background-color: #E3F2FD;
            padding: 15px;
            border-radius: var(--radius);
            margin: 20px 0;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .tip i {
            color: var(--primary);
            font-size: 1.5rem;
            margin-top: 3px;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .link-card {
            background: white;
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--gray-light);
        }
        .link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            border-color: var(--secondary);
        }
        .link-card h4 {
            margin-top: 0;
            color: var(--primary);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: var(--light);
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.4rem;
            color: var(--primary);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid var(--gray-light);
            border-right: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--primary);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: var(--gray-light);
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: #FFD700;
            transform: scale(1.2);
        }
        .rating-widget button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            margin-top: 10px;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            background-color: var(--primary-dark);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--gray-light);
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            min-height: 150px;
            margin: 15px 0;
        }
        .comment-form button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #D32F2F;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 15px;
            background: linear-gradient(to right, #FFEB3B, #FF9800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .footer-links h4 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul li {
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: var(--radius);
            margin: 10px 0;
            border-left: 4px solid var(--secondary);
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--gray-light);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-dark);
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            nav.active {
                transform: translateY(0);
            }
            nav ul {
                flex-direction: column;
                padding: 20px;
                gap: 0;
            }
            nav li {
                width: 100%;
            }
            nav a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .header-top {
                padding: 12px 0;
            }
            .meta {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article, .widget {
                padding: 20px;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
        }
