        * { 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: #f5f3ef;
            background-image: linear-gradient(to bottom, #f5f3ef 0%, #e8e6e1 100%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', Times, serif; color: #2c3e50; margin-bottom: 1rem; font-weight: 700; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); border-bottom: 3px solid #b8860b; padding-bottom: 0.5rem; margin-top: 1.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: #34495e; margin-top: 2.5rem; }
        h3 { font-size: 1.6rem; color: #46637f; margin-top: 2rem; }
        h4 { font-size: 1.3rem; color: #5d7a9c; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        strong { color: #8b0000; font-weight: 700; }
        em { font-style: italic; color: #555; }
        a { color: #8b0000; text-decoration: none; transition: color 0.3s ease, border-bottom 0.3s ease; border-bottom: 1px solid transparent; }
        a:hover { color: #d4af37; border-bottom: 1px solid #d4af37; }
        .lead { font-size: 1.25rem; color: #555; font-weight: 300; }
        .last-updated { font-size: 0.9rem; color: #777; font-style: italic; text-align: right; margin-bottom: 2rem; }
        .container { display: grid; grid-template-columns: 1fr; gap: 2rem; }
        @media (min-width: 992px) {
            .container { grid-template-columns: 250px 1fr; }
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
            color: #f5f3ef;
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            border-bottom: 5px solid #b8860b;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .header-content { flex-direction: row; }
        }
        .my-logo {
            font-family: 'Cinzel', Georgia, serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #d4af37;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            letter-spacing: 1px;
            border: none;
        }
        .my-logo:hover { color: #f5f3ef; text-shadow: 0 0 10px #d4af37; }
        .search-form {
            display: flex;
            width: 100%;
            max-width: 400px;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-button {
            background: #b8860b;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-button:hover { background: #d4af37; }
        .main-nav {
            background-color: #2c3e50;
            border-radius: 4px;
            margin-top: 1rem;
            width: 100%;
        }
        .nav-list {
            display: none;
            flex-direction: column;
            list-style: none;
        }
        @media (min-width: 768px) {
            .nav-list { display: flex; flex-direction: row; flex-wrap: wrap; }
        }
        .nav-list.active { display: flex; }
        .nav-list li { flex: 1; text-align: center; }
        .nav-list a {
            display: block;
            padding: 1rem 1.5rem;
            color: #ecf0f1;
            border-bottom: 3px solid transparent;
            font-weight: 600;
        }
        .nav-list a:hover { background-color: #34495e; border-bottom: 3px solid #b8860b; color: #d4af37; }
        .hamburger {
            display: block;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
            align-self: flex-start;
            margin: 0 auto 1rem;
        }
        @media (min-width: 768px) { .hamburger { display: none; } }
        .breadcrumb {
            background-color: #e8e6e1;
            padding: 0.8rem 1rem;
            border-radius: 4px;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #8b0000; }
        .sidebar {
            background-color: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget { margin-bottom: 2rem; }
        .widget-title {
            font-size: 1.3rem;
            color: #2c3e50;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #d4af37;
            margin-bottom: 1rem;
        }
        .main-content {
            background-color: #fff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.07);
        }
        .featured-image {
            width: 100%;
            border-radius: 8px;
            margin: 2rem auto;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 1px solid #ddd;
        }
        .highlight-box {
            background: linear-gradient(to right, #f8f4e9, #f0ead6);
            border-left: 5px solid #b8860b;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .interactive-section {
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 2rem;
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active { color: #ffcc00; }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }
        button[type="submit"] {
            background: linear-gradient(to bottom, #8b0000, #660000);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        button[type="submit"]:hover {
            background: linear-gradient(to bottom, #a00000, #770000);
            transform: translateY(-2px);
        }
        .site-footer {
            background: linear-gradient(135deg, #2c3e50, #1a1a1a);
            color: #ecf0f1;
            padding: 3rem 1rem;
            margin-top: 4rem;
            border-top: 5px solid #b8860b;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 768px) {
            .footer-content { grid-template-columns: repeat(3, 1fr); }
        }
        friend-link {
            display: block;
            margin-bottom: 0.5rem;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
