:root {
            --primary-dark: #2c5530;
            --primary-medium: #4a7c59;
            --primary-light: #8fbc8f;
            --accent-warm: #d4a76a;
            --accent-cool: #7a9cc6;
            --text-dark: #222;
            --text-medium: #444;
            --text-light: #666;
            --bg-light: #f8f5f0;
            --bg-card: #fff;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
            font-size: 16px;
        }
        * {
            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-medium);
            background-color: var(--bg-light);
            max-width: 100vw;
            overflow-x: hidden;
        }
        .site-header {
            background-color: var(--primary-dark);
            color: white;
            padding: 1rem 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo a {
            font-family: 'Georgia', serif;
            font-size: 2rem;
            font-weight: bold;
            color: var(--accent-warm);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .my-logo a:hover {
            color: white;
            transition: var(--transition);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
        }
        .main-nav a:hover,
        .main-nav a:focus {
            border-bottom-color: var(--accent-warm);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 5%;
            background-color: #e9e5dd;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-medium);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 5%;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 3rem;
        }
        article {
            background-color: var(--bg-card);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        aside {
            background-color: var(--bg-card);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            font-family: 'Georgia', serif;
            color: var(--primary-dark);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--accent-warm);
            padding-bottom: 0.5rem;
            margin-top: 0;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-medium);
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
            color: var(--text-dark);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--text-dark);
            font-weight: 500;
            margin-bottom: 2rem;
        }
        strong {
            color: var(--primary-dark);
            font-weight: 700;
        }
        em {
            color: var(--accent-cool);
            font-style: italic;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
        }
        blockquote {
            border-left: 4px solid var(--accent-warm);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-light);
        }
        .article-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.01);
        }
        .caption {
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        .feature-box {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            border-left: 5px solid var(--accent-cool);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .button {
            display: inline-block;
            background-color: var(--primary-medium);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        .button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .search-widget, .comment-widget, .rating-widget {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background-color: #f9f9f9;
            border-radius: var(--border-radius);
            border: 1px solid #e0e0e0;
        }
        .widget-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: inherit;
            transition: border 0.3s;
        }
        input:focus, textarea:focus {
            outline: none;
            border-color: var(--primary-medium);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 3rem 5% 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--accent-warm);
            margin-top: 0;
            font-size: 1.3rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: white;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
        }
        .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: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--primary-dark);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem 5%;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-wrap: nowrap;
            }
            .my-logo a {
                font-size: 1.6rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container, .site-header, .breadcrumb {
                padding-left: 3%;
                padding-right: 3%;
            }
            h1 {
                font-size: 1.9rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article {
            animation: fadeIn 0.8s ease-out;
        }
