        * { 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: #d4d4c9;
            background: #0c0c0c;
            background-image: linear-gradient(to bottom, #121212 0%, #0a0a0a 100%);
            min-height: 100vh;
            padding-bottom: 2rem;
        }
        a { color: #c8a85d; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
        a:hover { color: #f4e87c; text-shadow: 0 0 8px rgba(244, 232, 124, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: rgba(18, 18, 18, 0.95);
            border-bottom: 2px solid #3a2c1a;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(90deg, #c8a85d, #f4e87c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover { transform: scale(1.02); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #d4d4c9;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #c8a85d;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #c8a85d;
            border-radius: 2px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #999;
            border-bottom: 1px solid #2a2a2a;
            margin-bottom: 2rem;
        }
        .breadcrumb a { color: #c8a85d; }
        .search-container {
            margin: 2rem auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            border: 1px solid #3a2c1a;
            border-radius: 30px;
            overflow: hidden;
            background: #1a1a1a;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.5rem;
            background: transparent;
            border: none;
            color: #f0f0f0;
            font-size: 1rem;
        }
        .search-input:focus { outline: none; }
        .search-button {
            background: #3a2c1a;
            color: #f4e87c;
            border: none;
            padding: 0 1.8rem;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-button:hover { background: #4a3c2a; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }
        article { padding-right: 1rem; }
        .sidebar {
            border-left: 1px solid #3a2c1a;
            padding-left: 2rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            color: #f4e87c;
            font-family: Georgia, 'Times New Roman', Times, serif;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #c8a85d;
            padding-bottom: 1rem;
            text-align: center;
            margin-top: 1rem;
        }
        h2 { font-size: 2.2rem; border-left: 5px solid #c8a85d; padding-left: 1rem; }
        h3 { font-size: 1.8rem; color: #d4c29e; }
        h4 { font-size: 1.4rem; color: #b8a887; }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            color: #e9e9d1;
            font-weight: 300;
            background: rgba(58, 44, 26, 0.2);
            padding: 1.5rem;
            border-radius: 5px;
            border-left: 4px solid #c8a85d;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(200,168,93,0.15), transparent);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        strong { color: #f4e87c; }
        em { color: #d4c29e; font-style: italic; }
        .featured-image {
            width: 100%;
            margin: 2.5rem auto;
            border: 2px solid #3a2c1a;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
        }
        .featured-image img { transition: transform 0.5s ease; }
        .featured-image:hover img { transform: scale(1.03); }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #999;
            padding: 0.8rem;
            background: #1a1a1a;
            font-size: 0.95rem;
        }
        ul, ol { margin-left: 2rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.5rem; }
        li::marker { color: #c8a85d; }
        blockquote {
            border-left: 4px solid #c8a85d;
            padding-left: 2rem;
            margin: 2rem 0;
            font-style: italic;
            color: #d4c29e;
            background: rgba(58, 44, 26, 0.1);
            padding: 1.5rem 2rem;
            border-radius: 0 8px 8px 0;
        }
        .user-ratings, .user-comments {
            background: #1a1a1a;
            border: 1px solid #3a2c1a;
            border-radius: 8px;
            padding: 2rem;
            margin: 3rem 0;
        }
        .rating-stars { color: #f4e87c; font-size: 1.5rem; margin-bottom: 1rem; }
        .rating-form, .comment-form { display: flex; flex-direction: column; gap: 1rem; }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 0.8rem;
            background: #0c0c0c;
            border: 1px solid #3a2c1a;
            border-radius: 4px;
            color: #f0f0f0;
        }
        .rating-form button, .comment-form button {
            background: #3a2c1a;
            color: #f4e87c;
            border: none;
            padding: 0.9rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover { background: #4a3c2a; }
        .site-footer {
            margin-top: 4rem;
            border-top: 2px solid #3a2c1a;
            padding-top: 2rem;
            text-align: center;
            color: #999;
        }
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .friend-links a {
            background: #1a1a1a;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: 1px solid #3a2c1a;
            font-size: 0.9rem;
        }
        .copyright { font-size: 0.9rem; margin-top: 1rem; }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #777;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #3a2c1a;
        }
        @media (max-width: 768px) {
            .main-content { grid-template-columns: 1fr; }
            .sidebar {
                border-left: none;
                border-top: 1px solid #3a2c1a;
                padding-left: 0;
                padding-top: 2rem;
                position: static;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .main-nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(18, 18, 18, 0.98);
                padding: 1rem;
                display: none;
                border-top: 1px solid #3a2c1a;
            }
            .main-nav.active ul { display: flex; }
            .hamburger { display: flex; }
            .header-container { flex-wrap: wrap; }
            .my-logo { font-size: 1.8rem; }
        }
