:root {
            --primary-brown: #d2691e;
            --secondary-gold: #ffd700;
            --light-dough: #fff8dc;
            --dark-chocolate: #4a2c2a;
            --accent-milk: #f5f5dc;
            --shadow: rgba(74, 44, 42, 0.15);
            --transition: all 0.3s ease;
            --border-radius: 10px;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: var(--light-dough);
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d2691e' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        a {
            color: var(--primary-brown);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 600;
        }
        a:hover {
            color: var(--dark-chocolate);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: white;
            box-shadow: 0 4px 12px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-brown);
            text-shadow: 2px 2px 0 var(--secondary-gold);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            color: var(--secondary-gold);
        }
        .main-nav {
            display: flex;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 700;
            padding: 8px 12px;
            border-radius: var(--border-radius);
            position: relative;
        }
        .main-nav a:hover {
            background-color: var(--light-dough);
            text-decoration: none;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background-color: var(--secondary-gold);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .main-nav a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary-brown);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: var(--accent-milk);
            font-size: 0.9rem;
            border-bottom: 1px dashed var(--primary-brown);
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: var(--dark-chocolate);
        }
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        main {
            background-color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: 0 6px 20px var(--shadow);
        }
        aside {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: 0 6px 20px var(--shadow);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        h1, h2, h3, h4 {
            color: var(--dark-chocolate);
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 5px solid var(--secondary-gold);
            padding-bottom: 15px;
            margin-top: 0;
        }
        h2 {
            font-size: 2.1rem;
            border-left: 6px solid var(--primary-brown);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.7rem;
            color: var(--primary-brown);
        }
        h4 {
            font-size: 1.4rem;
            color: #8b4513;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-chocolate);
            background-color: var(--light-dough);
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--secondary-gold);
            margin-bottom: 2em;
        }
        .highlight {
            background-color: #fffacd;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .last-updated {
            font-style: italic;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 2em;
            display: block;
            padding: 10px;
            background-color: #f9f9f9;
            border-radius: var(--border-radius);
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 25px auto;
            display: block;
            box-shadow: 0 8px 16px var(--shadow);
            border: 5px solid white;
            transition: var(--transition);
        }
        .article-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px var(--shadow);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -15px;
            margin-bottom: 30px;
        }
        .sidebar-module {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }
        .sidebar-module:last-child {
            border-bottom: none;
        }
        .sidebar-module h3 {
            font-size: 1.3rem;
            margin-top: 0;
            color: var(--primary-brown);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
            width: 100%;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-brown);
            box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.2);
        }
        button, .btn {
            background-color: var(--primary-brown);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: var(--border-radius);
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            display: inline-block;
            font-size: 1rem;
        }
        button:hover, .btn:hover {
            background-color: var(--dark-chocolate);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px var(--shadow);
            text-decoration: none;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--secondary-gold);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dotted #eee;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links a::before {
            content: '\f35a';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary-brown);
        }
        footer {
            background-color: var(--dark-chocolate);
            color: var(--accent-milk);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--secondary-gold);
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 12px 15px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(255, 215, 0, 0.2);
            transform: translateX(5px);
        }
        friend-link a {
            color: var(--accent-milk);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        friend-link a::before {
            content: '\f024';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--secondary-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 992px) {
            .content-layout {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                order: 3;
                margin-top: 20px;
                padding-top: 20px;
                border-top: 2px solid var(--light-dough);
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            main, aside {
                padding: 25px;
            }
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            .container {
                padding: 0 15px;
            }
        }
        @media print {
            .site-header, aside, footer, .breadcrumb, .hamburger, .star-rating, form {
                display: none !important;
            }
            body {
                background: white;
                color: black;
            }
            main {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
            .content-layout {
                grid-template-columns: 1fr;
                gap: 0;
                margin: 0;
            }
        }
