:root {
            --primary-green: #4a7c59;
            --secondary-brown: #8b7355;
            --accent-gold: #d4af37;
            --light-cream: #f5f1e6;
            --dark-slate: #2c3e3d;
            --text-dark: #333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #f9f9f7;
            background-image: linear-gradient(to bottom, #f5f1e6 0%, #e8e4d9 100%);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark-slate);
            color: var(--light-cream);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            transition: var(--transition);
        }
        .my-logo:hover {
            color: #fff;
            transform: scale(1.03);
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: var(--light-cream);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-links a:hover, .nav-links a.active {
            background-color: rgba(212, 175, 55, 0.2);
            color: var(--accent-gold);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e8e4d9;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--primary-green);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #aaa;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px dashed var(--secondary-brown);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark-slate);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: var(--text-light);
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        .article-meta i {
            margin-right: 6px;
            color: var(--primary-green);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body h2 {
            font-size: 2rem;
            color: var(--primary-green);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #ddd;
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: var(--secondary-brown);
            margin: 2rem 0 1rem;
        }
        .article-body h4 {
            font-size: 1.3rem;
            color: var(--dark-slate);
            margin: 1.5rem 0 0.8rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box {
            background-color: #e9f4ef;
            border: 1px solid #b8d5c5;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .info-box h4 {
            color: var(--primary-green);
            margin-top: 0;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        img.featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .side-panel {
            background-color: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .side-panel h3 {
            color: var(--dark-slate);
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid var(--accent-gold);
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2.5rem;
        }
        .search-box input, .comment-form textarea, .comment-form input, .rating-form select {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        .search-box button, .comment-form button, .rating-form button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: var(--transition);
            width: 100%;
        }
        .search-box button:hover, .comment-form button:hover, .rating-form button:hover {
            background-color: #3a6549;
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            color: #ddd;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover, .stars i.active {
            color: var(--accent-gold);
        }
        .related-links {
            list-style: none;
            margin-top: 1.5rem;
        }
        .related-links li {
            margin-bottom: 0.9rem;
            padding-bottom: 0.9rem;
            border-bottom: 1px dotted #eee;
        }
        .related-links a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
            display: block;
        }
        .related-links a:hover {
            color: var(--accent-gold);
            padding-left: 8px;
        }
        .related-links a::before {
            content: "🔗";
            margin-right: 8px;
        }
        footer {
            background-color: var(--dark-slate);
            color: var(--light-cream);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #b8d5c5;
            text-decoration: none;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a5a5a;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--dark-slate);
                text-align: center;
                transition: 0.5s;
                padding: 2rem 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                margin: 1rem 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
            .article-body h3 {
                font-size: 1.5rem;
            }
        }
