:root {
            --primary-dark: #1a472a;
            --primary: #2e693b;
            --primary-light: #4a9e5a;
            --secondary-dark: #b8860b;
            --secondary: #daa520;
            --secondary-light: #f0c75e;
            --accent: #8b4513;
            --text-dark: #222;
            --text: #333;
            --text-light: #666;
            --bg-light: #f8f5e9;
            --bg-card: #fffdf6;
            --border: #ddd;
            --shadow: rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            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(--text);
            background-color: var(--bg-light);
            background-image: linear-gradient(to bottom, #f8f5e9 0%, #e8e2cc 100%);
            min-height: 100vh;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        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, var(--primary-dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: fantasy, serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--secondary-light);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: white;
            text-shadow: 0 0 8px var(--secondary);
        }
        .main-nav {
            display: flex;
            gap: 1.5rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--secondary-light);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: var(--bg-card);
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 0.5rem;
            color: var(--text-light);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px var(--shadow);
        }
        .sidebar {
            background: var(--bg-card);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            color: var(--primary-dark);
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--primary);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary);
        }
        h4 {
            font-size: 1.3rem;
            color: var(--accent);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-dark);
            background: linear-gradient(to right, var(--bg-card), #e8f5e9);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .search-box, .comment-form, .rating-form {
            background: #f0f8ff;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px dashed var(--primary-light);
        }
        .form-group {
            margin-bottom: 1rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(46, 105, 59, 0.2);
        }
        button, .btn {
            background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to bottom, var(--primary-light) 0%, var(--primary) 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px var(--shadow);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 0.5rem 0;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .active {
            color: var(--secondary);
        }
        .stars:hover .star {
            color: var(--secondary-light);
        }
        .star:hover ~ .star {
            color: #ddd;
        }
        .featured-img {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border: 5px solid white;
        }
        .content-links {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            list-style: none;
        }
        .links-grid a {
            display: block;
            padding: 0.8rem;
            background: white;
            border-radius: 6px;
            border: 1px solid var(--border);
            font-weight: 600;
        }
        .links-grid a:hover {
            border-color: var(--primary);
            background: #f0fff0;
        }
        .site-footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #123524 100%);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--secondary-light);
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            border-bottom: 2px solid rgba(218, 165, 32, 0.3);
            padding-bottom: 0.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.6rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            border-radius: 4px;
            color: #ccc;
        }
        friend-link a {
            color: var(--secondary-light);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 1rem;
                background-color: var(--primary-dark);
                padding: 1rem;
                border-radius: 8px;
            }
            .main-nav.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
