        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #333;
            background: #f8f5f0;
            background-image: linear-gradient(to bottom, #f8f5f0 0%, #e8e2d6 100%);
            max-width: 120rem;
            margin: 0 auto;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
        }
        img { max-width: 100%; height: auto; display: block; }
        .skip-link {
            position: absolute;
            top: -4rem;
            left: 0;
            background: #5c3d2e;
            color: white;
            padding: .8rem;
            z-index: 999;
            text-decoration: none;
            border-radius: 0 0 .5rem 0;
        }
        .skip-link:focus { top: 0; }
        .site-header {
            background: #2d1b0e;
            color: #f0d9b5;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(45, 27, 14, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            text-decoration: none;
            color: #e8c39e;
            text-shadow: 2px 2px 4px #000;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }
        .my-logo:hover {
            color: #fff;
            text-decoration: underline;
        }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            color: #f0d9b5;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover,
        .nav-desktop a:focus {
            background: #5c3d2e;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #e8c39e;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #3a2415;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem 2rem;
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #f0d9b5;
            padding: 0.8rem 0;
            border-bottom: 1px solid #5c3d2e;
            text-decoration: none;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .nav-mobile a:hover { color: #fff; background: #5c3d2e; }
        .breadcrumb {
            padding: 0.8rem 2rem;
            background: #e8dcc8;
            font-size: 0.9rem;
            border-bottom: 1px solid #d4c4a8;
        }
        .breadcrumb a { color: #5c3d2e; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr minmax(20rem, 25rem);
            gap: 3rem;
            padding: 2rem;
        }
        article { background: #fff; padding: 2.5rem; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
        aside {
            background: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 7rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #2d1b0e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #c69c6d;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #5c3d2e;
            margin: 2.5rem 0 1.2rem;
            padding-top: 1rem;
            border-top: 1px dashed #d4c4a8;
        }
        h3 {
            font-size: 1.6rem;
            color: #7a5c3c;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #8a6d4c;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        strong { color: #5c3d2e; font-weight: 700; }
        em { font-style: italic; color: #7a5c3c; }
        .lead {
            font-size: 1.3rem;
            color: #444;
            background: #f9f5ee;
            padding: 1.5rem;
            border-left: 5px solid #c69c6d;
            margin-bottom: 2.5rem;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f5e9d8 0%, #e8dcc8 100%);
            border: 1px solid #d4c4a8;
            padding: 1.8rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: inset 0 0 8px rgba(92, 61, 46, 0.1);
        }
        blockquote {
            border-left: 4px solid #c69c6d;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        a.content-link {
            color: #a67c52;
            text-decoration: underline dotted;
            font-weight: 600;
        }
        a.content-link:hover {
            color: #5c3d2e;
            text-decoration: underline solid;
            background: #f5e9d8;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            margin: 2.5rem auto;
            border: 8px solid #e8dcc8;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .article-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background: #f5e9d8;
            color: #5c3d2e;
            font-size: 0.95rem;
        }
        .sidebar-module {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .sidebar-module:last-child { border-bottom: none; }
        .sidebar-module h3 {
            font-size: 1.4rem;
            color: #2d1b0e;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #c69c6d;
        }
        .search-form { display: flex; margin-top: 1rem; }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 0.8rem;
            border: 2px solid #c69c6d;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background: #5c3d2e;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover { background: #2d1b0e; }
        .rating-form, .comment-form { margin-top: 1rem; }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star.active, .star:hover { color: #ffc107; }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #5c3d2e;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #d4c4a8;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #c69c6d;
        }
        .submit-btn {
            background: #2d1b0e;
            color: white;
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .submit-btn:hover {
            background: #5c3d2e;
            transform: translateY(-2px);
        }
        .site-footer {
            background: #2d1b0e;
            color: #f0d9b5;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #e8c39e;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        friend-link a:hover { color: #fff; text-decoration: underline; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #5c3d2e;
            font-size: 0.9rem;
            color: #b8a58b;
        }
        @media (max-width: 1024px) {
            .main-content { grid-template-columns: 1fr; }
            aside { position: static; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            .main-content, article, .site-header { padding: 1.5rem; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.9rem; }
            .lead { font-size: 1.1rem; }
            .submit-btn { width: 100%; }
        }
        @media print {
            .site-header, aside, .site-footer, .search-form, .rating-form, .comment-form, .hamburger { display: none !important; }
            body { background: white; color: black; }
            a { color: black; text-decoration: underline; }
        }
