        * { 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: #e0e0e0;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2a 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Cinzel', 'Times New Roman', serif; color: #d4af37; margin-bottom: 1rem; font-weight: 700; letter-spacing: 0.05em; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; border-bottom: 3px solid #8b4513; padding-bottom: 1.5rem; margin-top: 1.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-top: 2.5rem; border-left: 5px solid #8b4513; padding-left: 1rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-top: 2rem; color: #b8860b; }
        h4 { font-size: 1.3rem; margin-top: 1.5rem; color: #daa520; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #ffd700; text-decoration: none; transition: color 0.3s ease, border-bottom 0.3s ease; border-bottom: 1px dotted transparent; }
        a:hover { color: #ffed4e; border-bottom: 1px dotted #ffed4e; }
        strong, b { color: #f5f5f5; font-weight: 700; }
        em { color: #ccc; font-style: italic; }
        .lead { font-size: 1.3rem; color: #d4af37; font-weight: 300; }
        .highlight { background: linear-gradient(90deg, transparent 0%, rgba(139, 69, 19, 0.2) 50%, transparent 100%); padding: 0.2rem 0.5rem; border-radius: 3px; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main.container { padding-top: 2rem; padding-bottom: 3rem; }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #8b4513;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: Cinzel, serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #d4af37;
            text-decoration: none;
            border: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: #8b4513; }
        .logo a:hover { color: #ffd700; border-bottom: none; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e0e0e0;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.05em;
            border-bottom: 2px solid transparent;
            padding-bottom: 5px;
        }
        .main-nav a:hover { color: #ffd700; border-bottom: 2px solid #d4af37; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(26, 26, 42, 0.98);
                border-top: 1px solid #8b4513;
                display: none;
                flex-direction: column;
                padding: 2rem;
                z-index: 999;
            }
            .main-nav.active { display: flex; }
            .main-nav ul { flex-direction: column; gap: 1.5rem; }
        }
        .breadcrumb {
            padding: 1rem 0;
            color: #aaa;
            font-size: 0.9rem;
            border-bottom: 1px solid #333;
            margin-bottom: 2rem;
        }
        .breadcrumb a { color: #ccc; }
        .breadcrumb a:hover { color: #ffd700; }
        .breadcrumb span { color: #d4af37; }
        .search-module {
            background: rgba(42, 42, 60, 0.7);
            border: 1px solid #555;
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            margin: 2rem 0;
            display: flex;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .search-module input {
            flex-grow: 1;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-module button {
            background: #8b4513;
            color: #ffd700;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-module button:hover { background: #a0522d; }
        .article-content { column-count: 1; }
        @media (min-width: 992px) {
            .article-content { column-count: 2; column-gap: 3rem; }
        }
        .article-content p { margin-bottom: 1.5rem; text-align: justify; hyphens: auto; }
        .article-content p:first-of-type::first-letter {
            float: left;
            font-family: Cinzel, serif;
            font-size: 4.5em;
            line-height: 0.8;
            color: #d4af37;
            margin-right: 0.1em;
            margin-bottom: 0.05em;
        }
        .article-image {
            margin: 2.5rem auto;
            border: 3px solid #8b4513;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            max-width: 800px;
            break-inside: avoid;
        }
        .article-image img { width: 100%; transition: transform 0.5s ease; }
        .article-image:hover img { transform: scale(1.03); }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            padding: 0.8rem;
            background: rgba(30, 30, 40, 0.8);
            font-size: 0.95rem;
        }
        .interactive-module {
            background: rgba(30, 30, 45, 0.8);
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border-left: 5px solid #d4af37;
            break-inside: avoid;
        }
        .module-title { color: #ffd700; margin-bottom: 1.5rem; }
        .rating-widget { text-align: center; }
        .stars { margin-bottom: 1rem; }
        .stars i {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            margin: 0 5px;
            transition: color 0.2s, transform 0.2s;
        }
        .stars i:hover,
        .stars i.active { color: #ffd700; transform: scale(1.1); }
        .rating-result { margin-top: 1rem; font-weight: bold; color: #d4af37; }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background: rgba(50, 50, 70, 0.8);
            border: 1px solid #666;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form button {
            background: linear-gradient(to right, #8b4513, #a0522d);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover { background: linear-gradient(to right, #a0522d, #b5651d); }
        .site-footer {
            background: #0a0a0f;
            border-top: 2px solid #8b4513;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 { color: #d4af37; margin-bottom: 1.5rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        friend-link {
            display: block;
            background: rgba(139, 69, 19, 0.2);
            padding: 1rem;
            border-radius: 5px;
            margin: 1rem 0;
            transition: background 0.3s;
        }
        friend-link:hover { background: rgba(139, 69, 19, 0.4); }
        friend-link a { display: block; font-weight: bold; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .last-updated {
            color: #aaa;
            font-size: 0.9rem;
            font-style: italic;
            text-align: right;
            margin-top: 1rem;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #8b4513, transparent);
            margin: 2.5rem 0;
        }
        .emoji { font-size: 1.2em; vertical-align: middle; margin: 0 3px; }
        .quote {
            border-left: 4px solid #d4af37;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #ccc;
            background: rgba(42, 42, 60, 0.5);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
