        * { 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: #e0d3c1;
            background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a { color: #d4af37; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #f7e7a9; text-shadow: 0 0 8px rgba(212, 175, 55, 0.6); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 2px solid #3a2c1a;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, #d4af37, #aa8a2e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background: rgba(212, 175, 55, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4af37;
        }
        .breadcrumb {
            padding: 15px 0;
            color: #aaa;
            font-size: 0.9rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a { color: #d4af37; }
        .hero {
            text-align: center;
            padding: 50px 20px;
            background: radial-gradient(circle at center, #2a1f0f 0%, #0d0d0d 70%);
            border-bottom: 1px solid #3a2c1a;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #f5e8d0;
            text-shadow: 2px 2px 5px #000;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 25px;
            color: #c9b79c;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(20, 18, 15, 0.8);
            border-radius: 10px;
            padding: 35px;
            border: 1px solid #44371f;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        article h2 {
            font-size: 2.2rem;
            color: #e9d7a4;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #5d4a2a;
        }
        article h3 { font-size: 1.8rem; color: #d9c690; margin: 30px 0 15px; }
        article h4 { font-size: 1.4rem; color: #c9b79c; margin: 25px 0 10px; }
        article p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: #f0e0b6;
            font-weight: 700;
        }
        .highlight-box {
            background: rgba(58, 44, 26, 0.4);
            border-left: 5px solid #d4af37;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-img {
            float: right;
            margin: 15px 0 20px 30px;
            max-width: 50%;
            border-radius: 8px;
            border: 2px solid #5d4a2a;
        }
        @media (max-width: 768px) {
            .inline-img { float: none; margin: 20px auto; max-width: 100%; }
        }
        .update-time {
            font-style: italic;
            color: #aaa;
            text-align: right;
            font-size: 0.9rem;
            margin-top: 40px;
            padding-top: 15px;
            border-top: 1px dashed #555;
        }
        aside {
            background: rgba(20, 18, 15, 0.8);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid #44371f;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget h3 {
            color: #e9d7a4;
            margin-bottom: 20px;
            font-size: 1.5rem;
            padding-bottom: 8px;
            border-bottom: 1px solid #5d4a2a;
        }
        .search-form input {
            width: 100%;
            padding: 12px;
            background: #1a1712;
            border: 1px solid #5d4a2a;
            border-radius: 6px;
            color: #e0d3c1;
        }
        .search-form button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            background: #3a2c1a;
            color: #d4af37;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #4d3a22;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            margin: 15px 0;
        }
        .rating-widget .stars i {
            cursor: pointer;
            color: #555;
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: #ffcc00;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 12px;
            background: #1a1712;
            border: 1px solid #5d4a2a;
            border-radius: 6px;
            color: #e0d3c1;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            background: #2a4d69;
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #444;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links i {
            color: #d4af37;
        }
        .site-footer {
            background: #0a0a0a;
            border-top: 2px solid #3a2c1a;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo .my-logo {
            font-size: 2.5rem;
        }
        .footer-links h4 {
            color: #e9d7a4;
            margin-bottom: 20px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            padding: 8px 15px;
            background: rgba(58, 44, 26, 0.5);
            border-radius: 6px;
            margin-bottom: 10px;
            border-left: 3px solid #d4af37;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @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: 20px;
                border-top: 1px solid #3a2c1a;
            }
            .main-nav.active ul { display: flex; }
            .hero h1 { font-size: 2.5rem; }
            article { padding: 25px 20px; }
            article h2 { font-size: 1.9rem; }
        }
