        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0c0c0c;
            color: #e0d8c0;
            line-height: 1.7;
            overflow-x: hidden;
            background-image: linear-gradient(to bottom, #1a1a1a 0%, #0c0c0c 20%);
        }
        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: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 10, 0.95);
            border-bottom: 2px solid #3a2e1f;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.8rem;
            font-weight: bold;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px #000, 0 0 20px rgba(212, 175, 55, 0.4);
        }
        .my-logo span {
            color: #a52a2a;
        }
        .my-logo:hover {
            transform: scale(1.02);
            transition: transform 0.3s ease;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-size: 1.1rem;
            font-weight: 500;
            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;
            background: none;
            border: none;
            color: #c8a85d;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a1a1a;
            padding: 1rem;
            border-top: 1px solid #3a2e1f;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px dashed #333;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #c8a85d;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(26, 26, 26, 0.8);
            padding: 2.5rem;
            border-radius: 8px;
            border-left: 5px solid #c8a85d;
            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 solid #3a2e1f;
            font-size: 0.95rem;
            color: #aaa;
        }
        .update-time {
            color: #c8a85d;
            font-weight: 600;
        }
        h1 {
            font-size: 3.2rem;
            color: #f0e6d2;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 1px 1px 3px #000;
            border-bottom: 2px solid #3a2e1f;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #d4af37;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        h3 {
            font-size: 1.7rem;
            color: #e0c878;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #c8b880;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #f0e6d2;
            font-weight: 300;
            background: rgba(58, 46, 31, 0.3);
            padding: 1.5rem;
            border-radius: 5px;
            border-left: 4px solid #d4af37;
            margin-bottom: 2.5rem;
        }
        strong {
            color: #f0e6d2;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #2a2319 0%, #1a1610 100%);
            border: 1px solid #c8a85d;
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 8px;
            box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
        }
        .article-image {
            width: 100%;
            margin: 2.5rem auto;
            border-radius: 8px;
            overflow: hidden;
            border: 3px solid #3a2e1f;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .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(58, 46, 31, 0.5);
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(26, 26, 26, 0.8);
            padding: 1.8rem;
            border-radius: 8px;
            border: 1px solid #333;
        }
        .widget-title {
            font-size: 1.5rem;
            color: #d4af37;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background: #1a1a1a;
            border: 1px solid #3a2e1f;
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: #e0d8c0;
            font-size: 1rem;
        }
        .search-btn {
            background: #3a2e1f;
            color: #c8a85d;
            border: 1px solid #3a2e1f;
            border-radius: 0 5px 5px 0;
            padding: 0.8rem 1.5rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: #4a3e2f;
        }
        .rating-widget input[type="radio"] {
            display: none;
        }
        .rating-widget label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
            margin-right: 5px;
        }
        .rating-widget label:hover,
        .rating-widget label:hover ~ label,
        .rating-widget input:checked ~ label {
            color: #ffd700;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background: #1a1a1a;
            border: 1px solid #3a2e1f;
            border-radius: 5px;
            color: #e0d8c0;
            font-size: 1rem;
        }
        .submit-btn {
            background: #c8a85d;
            color: #0c0c0c;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .submit-btn:hover {
            background: #f4e87c;
        }
        .site-footer {
            background-color: #080808;
            border-top: 2px solid #3a2e1f;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-links h4 {
            color: #d4af37;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: rgba(58, 46, 31, 0.3);
            margin: 0.5rem 0;
            border-radius: 4px;
            border-left: 3px solid #c8a85d;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(58, 46, 31, 0.6);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .header-container, .container {
                padding: 0 15px;
            }
        }
