        * {
            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: #333;
            background-color: #f5f3ee;
            background-image: linear-gradient(to bottom, #f5f3ee 0%, #e8e2d5 100%);
            max-width: 120rem;
            margin: 0 auto;
        }
        a {
            color: #9a6b3c;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #7a4f24;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background-color: #1a1a1a;
            color: #d4af37;
            padding: 1rem 0;
            border-bottom: 3px solid #9a6b3c;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #d4af37;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .my-logo a:hover {
            color: #f5e8c8;
            text-decoration: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e8e2d5;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: #9a6b3c;
            color: #1a1a1a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #2d2d2d;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
            color: #aaa;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #9a6b3c;
        }
        .breadcrumb a {
            color: #e8e2d5;
        }
        .search-container {
            background: linear-gradient(135deg, #3a2c1c 0%, #1a1a1a 100%);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #9a6b3c;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
            background-color: #e8e2d5;
        }
        .search-form button {
            background-color: #9a6b3c;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #7a4f24;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        .article-body {
            background-color: #fff;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .sidebar {
            background-color: #fff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 3.2rem;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 0.5rem;
            font-family: 'Cinzel', serif;
        }
        h2 {
            font-size: 2.2rem;
            color: #3a2c1c;
            margin: 3rem 0 1.5rem;
            padding-left: 1rem;
            border-left: 5px solid #9a6b3c;
            font-family: 'Cinzel', serif;
        }
        h3 {
            font-size: 1.8rem;
            color: #5a4a32;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #7a6b5a;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            font-weight: 500;
            background-color: #f9f7f0;
            padding: 1.5rem;
            border-left: 4px solid #d4af37;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 2rem;
            border-radius: 10px;
            border: 1px dashed #d4af37;
            margin: 2.5rem 0;
        }
        .highlight strong {
            color: #9a6b3c;
        }
        .featured-image {
            margin: 3rem auto;
            text-align: center;
            max-width: 800px;
        }
        .featured-image img {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 5px solid #e8e2d5;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .content-link {
            font-weight: 600;
            border-bottom: 1px dotted #9a6b3c;
        }
        .content-link:hover {
            border-bottom: 2px solid #9a6b3c;
        }
        .interaction-forms {
            background-color: #f9f7f0;
            padding: 2.5rem;
            border-radius: 15px;
            margin-top: 4rem;
            border: 1px solid #e8e2d5;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #3a2c1c;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            background-color: #fff;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to bottom, #9a6b3c, #7a4f24);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to bottom, #7a4f24, #5a3a18);
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-top: 0.5rem;
        }
        .star-rating .star {
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffc107;
        }
        .site-footer {
            background-color: #1a1a1a;
            color: #aaa;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #d4af37;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #e8e2d5;
        }
        friend-link a:hover {
            color: #d4af37;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #777;
        }
        .last-updated {
            font-style: italic;
            color: #9a6b3c;
            font-weight: 600;
            margin-top: 2rem;
            padding: 1rem;
            background-color: #2d2d2d;
            border-radius: 5px;
            text-align: center;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            h1 {
                font-size: 2.7rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #2d2d2d;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #444;
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid #444;
            }
            .article-body {
                padding: 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="search"],
            .search-form button {
                width: 100%;
                border-radius: 5px;
                margin-bottom: 0.5rem;
            }
            .interaction-forms {
                padding: 1.5rem;
            }
        }
        .text-center { text-align: center; }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
        .emoji { font-size: 1.2em; }
