:root {
            --primary-green: #6aaa64;
            --primary-yellow: #c9b458;
            --primary-dark: #121213;
            --primary-gray: #818384;
            --primary-light: #d7dadc;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        body {
            background-color: var(--light-bg);
            color: #333;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #5a9954;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo span {
            color: var(--primary-green);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .main-nav {
            display: flex;
            gap: 1.8rem;
        }
        .main-nav a {
            color: var(--primary-light);
            font-weight: 500;
        }
        .main-nav a:hover {
            color: var(--primary-green);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--white);
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--primary-gray);
        }
        .breadcrumb a:hover {
            color: var(--primary-green);
        }
        .breadcrumb span {
            color: var(--primary-dark);
            margin: 0 5px;
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary-green), #5a9954);
            padding: 2.5rem 0;
            text-align: center;
            color: white;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background-color: var(--primary-dark);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: #000;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .article-content {
            background-color: var(--white);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-green);
            margin: 2.5rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-light);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-dark);
            margin: 2rem 0 1rem 0;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--primary-gray);
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--primary-dark);
            margin-bottom: 2rem;
        }
        b, strong {
            color: var(--primary-dark);
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
        }
        .widget {
            background-color: var(--white);
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--primary-green);
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        .link-list a {
            display: block;
            padding: 0.5rem 0;
        }
        .link-list a:hover {
            padding-left: 8px;
            text-decoration: none;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary-green);
            outline: none;
            box-shadow: 0 0 0 3px rgba(106, 170, 100, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-button:hover {
            background-color: #5a9954;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: var(--primary-gray);
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--primary-yellow);
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: var(--primary-light);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-widget h4 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: var(--primary-light);
        }
        friend-link a:hover {
            color: var(--primary-green);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: var(--primary-gray);
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-dark);
                padding: 1rem;
                box-shadow: var(--shadow);
                gap: 1rem;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .article-content {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: var(--border-radius);
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 0;
            }
        }
