        * { 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.8;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Cinzel', serif; color: #c8a165; 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; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); border-left: 5px solid #8b4513; padding-left: 1rem; margin-top: 3rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: #d4b483; margin-top: 2rem; }
        h4 { font-size: 1.3rem; color: #e5cda7; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; hyphens: auto; }
        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.7); }
        strong { color: #c8a165; font-weight: 700; }
        em { font-style: italic; color: #b0b0b0; }
        blockquote {
            border-left: 4px solid #8b4513;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            background: rgba(139, 69, 19, 0.1);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #8b4513;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav a:hover {
            background: rgba(212, 175, 55, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #d4af37;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(26, 26, 46, 0.8);
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #8b4513;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        .article-content {
            background: rgba(30, 30, 46, 0.7);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid #333;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image {
            width: 100%;
            border-radius: 8px;
            margin: 2rem 0;
            border: 3px solid #8b4513;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(30, 30, 46, 0.7);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #444;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            border-bottom: 2px solid #8b4513;
            padding-bottom: 0.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            background: rgba(20, 20, 30, 0.9);
            border: 1px solid #555;
            border-radius: 4px;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
        }
        button, .btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(to right, #8b4513, #a0522d);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #a0522d, #8b4513);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffd700;
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment {
            background: rgba(40, 40, 60, 0.5);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 4px solid #8b4513;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-card {
            background: rgba(40, 40, 60, 0.7);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .link-card:hover {
            transform: translateY(-5px);
            background: rgba(139, 69, 19, 0.2);
        }
        .site-footer {
            background: rgba(10, 10, 10, 0.95);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid #8b4513;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: rgba(139, 69, 19, 0.2);
            margin: 0.5rem 0;
            border-radius: 4px;
            text-align: center;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(139, 69, 19, 0.4);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
            .sidebar { order: -1; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                padding: 1rem;
                border-top: 2px solid #8b4513;
            }
            .main-nav.active ul { display: flex; }
            .header-inner { flex-wrap: wrap; }
            .article-content { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .related-links { grid-template-columns: 1fr; }
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #aaa;
            margin-bottom: 2rem;
            border-bottom: 1px dashed #555;
            padding-bottom: 0.5rem;
        }
        .highlight {
            background: rgba(212, 175, 55, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            border-left: 3px solid #d4af37;
        }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
