        * { 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: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
            color: #e0d3b8;
            min-height: 100vh;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Georgia', serif; color: #d4af37; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; border-bottom: 3px solid #8b4513; padding-bottom: 1rem; margin-top: 1rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); border-left: 5px solid #8b4513; padding-left: 1rem; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.4rem, 3vw, 2rem); color: #b8860b; margin-top: 2rem; }
        h4 { font-size: 1.3rem; color: #cd853f; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        a { color: #d4af37; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
        a:hover { color: #ffd700; text-shadow: 0 0 8px rgba(255, 215, 0, 0.5); }
        strong { color: #f5deb3; font-weight: 700; }
        em { color: #deb887; font-style: italic; }
        .lead { font-size: 1.3rem; color: #f0e6d2; margin-bottom: 2rem; }
        .highlight { background: linear-gradient(90deg, rgba(139,69,19,0.2) 0%, rgba(184,134,11,0.2) 100%); padding: 1rem; border-radius: 5px; border-left: 4px solid #d4af37; margin: 1.5rem 0; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 992px) {
            .container { grid-template-columns: 250px 1fr 300px; }
        }
        header { background: rgba(20, 20, 20, 0.95); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); border-bottom: 2px solid #8b4513; }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .my-logo { font-family: 'Georgia', serif; font-size: 2.2rem; font-weight: bold; background: linear-gradient(to right, #d4af37, #8b4513); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
        .my-logo:hover { transform: scale(1.02); }
        nav { display: flex; align-items: center; }
        .nav-links { display: flex; list-style: none; gap: 2rem; }
        .nav-links a { font-weight: 600; padding: 0.5rem 1rem; border-radius: 4px; }
        .nav-links a:hover { background: rgba(212, 175, 55, 0.1); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #d4af37; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links { flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(20, 20, 20, 0.98); padding: 1rem; display: none; }
            .nav-links.active { display: flex; }
        }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; color: #aaa; }
        .breadcrumb a { color: #d4af37; }
        .breadcrumb span { color: #deb887; }
        main { grid-column: 1 / -1; }
        @media (min-width: 992px) { main { grid-column: 2; } }
        article { background: rgba(30, 30, 30, 0.8); padding: 2rem; border-radius: 10px; border: 1px solid #444; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .article-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px dashed #8b4513; color: #aaa; font-size: 0.9rem; }
        .featured-img { width: 100%; border-radius: 10px; border: 3px solid #8b4513; margin: 2rem 0; transition: transform 0.5s ease; }
        .featured-img:hover { transform: scale(1.01); }
        .img-caption { text-align: center; font-style: italic; color: #b0a18e; margin-top: 0.5rem; font-size: 0.9rem; }
        aside { background: rgba(40, 40, 40, 0.9); padding: 1.5rem; border-radius: 10px; border: 1px solid #555; }
        @media (min-width: 992px) { aside:first-of-type { grid-column: 1; } aside:last-of-type { grid-column: 3; } }
        .widget { margin-bottom: 2rem; }
        .widget-title { font-size: 1.3rem; color: #d4af37; border-bottom: 2px solid #8b4513; padding-bottom: 0.5rem; margin-bottom: 1rem; }
        .search-form { display: flex; }
        .search-form input { flex: 1; padding: 0.8rem; border: 1px solid #8b4513; background: #222; color: #f0e6d2; border-radius: 5px 0 0 5px; }
        .search-form button { background: #8b4513; color: white; border: none; padding: 0.8rem 1.2rem; border-radius: 0 5px 5px 0; cursor: pointer; transition: background 0.3s; }
        .search-form button:hover { background: #a0522d; }
        .quick-links { list-style: none; }
        .quick-links li { margin-bottom: 0.8rem; padding-left: 1rem; position: relative; }
        .quick-links li:before { content: '➤'; color: #d4af37; position: absolute; left: 0; }
        .rating-widget, .comment-widget { background: rgba(50, 50, 50, 0.7); padding: 1.5rem; border-radius: 8px; margin-top: 2rem; }
        .rating-stars { display: flex; gap: 0.5rem; margin: 1rem 0; font-size: 1.8rem; color: #555; }
        .rating-stars .star { cursor: pointer; transition: color 0.2s, transform 0.2s; }
        .rating-stars .star:hover { transform: scale(1.2); }
        .rating-stars .star.active { color: #ffd700; }
        .form-group { margin-bottom: 1rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; color: #d4af37; }
        .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.8rem; background: #222; border: 1px solid #8b4513; color: #f0e6d2; border-radius: 5px; }
        .form-group textarea { min-height: 150px; resize: vertical; }
        .submit-btn { background: linear-gradient(to right, #8b4513, #d4af37); color: white; border: none; padding: 1rem 2rem; border-radius: 5px; cursor: pointer; font-weight: bold; transition: transform 0.3s, box-shadow 0.3s; }
        .submit-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }
        footer { background: #0c0c0c; padding: 3rem 0 1.5rem; margin-top: 3rem; border-top: 3px solid #8b4513; }
        .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
        .footer-logo { font-size: 2rem; margin-bottom: 1rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        friend-link { display: block; background: rgba(212, 175, 55, 0.1); padding: 0.8rem; margin-bottom: 0.8rem; border-radius: 5px; border-left: 4px solid #d4af37; transition: all 0.3s; }
        friend-link:hover { background: rgba(212, 175, 55, 0.2); transform: translateX(5px); }
        .copyright { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid #333; color: #888; font-size: 0.9rem; grid-column: 1 / -1; }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .emoji { font-size: 1.2em; }
