        * {
            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: #e5e5e5;
            background-color: #0a0a0a;
            background-image: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0a 20%);
            max-width: 1600px;
            margin: 0 auto;
            padding: 0;
            overflow-x: hidden;
        }
        a {
            color: #c19a53;
            text-decoration: none;
            transition: color 0.3s ease, border-bottom 0.3s ease;
        }
        a:hover {
            color: #f0d289;
            border-bottom: 1px dotted #f0d289;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 10, 0.95);
            border-bottom: 2px solid #3a2c15;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.4rem;
            font-weight: bold;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        .my-logo a {
            color: inherit;
            border-bottom: none;
        }
        .my-logo a:hover {
            color: #f0d289;
            border-bottom: none;
            text-shadow: 0 0 15px rgba(240, 210, 137, 0.8);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #c19a53;
            cursor: pointer;
            padding: 5px;
        }
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-menu a {
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-menu a:hover {
            border-bottom: 2px solid #c19a53;
        }
        .breadcrumb {
            padding: 1rem 20px;
            background-color: #151515;
            border-bottom: 1px solid #333;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #666;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #c19a53;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(26, 26, 26, 0.8);
            border-radius: 10px;
            padding: 2.5rem;
            border: 1px solid #333;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1, h2, h3, h4 {
            color: #d4af37;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 3rem;
            border-bottom: 3px solid #3a2c15;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #c19a53;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #e5c76b;
        }
        h4 {
            font-size: 1.4rem;
            color: #f0d289;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #e5c76b;
            font-weight: 700;
        }
        .lead {
            font-size: 1.3rem;
            color: #ccc;
            font-weight: 300;
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            background: rgba(58, 44, 21, 0.2);
            border-left: 4px solid #c19a53;
            border-radius: 0 5px 5px 0;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        figure {
            margin: 2.5rem auto;
            text-align: center;
            border: 1px solid #444;
            padding: 10px;
            background: #151515;
            border-radius: 5px;
            max-width: 800px;
        }
        figcaption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background: rgba(26, 26, 26, 0.8);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #d4af37;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #3a2c15;
        }
        .search-form {
            display: flex;
        }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 0.8rem;
            background: #222;
            border: 1px solid #444;
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: #eee;
        }
        .search-form button {
            background: #c19a53;
            color: #000;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #e5c76b;
        }
        .rating-form, .comment-form {
            background: #151515;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
            justify-content: center;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffc107;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            background: #222;
            border: 1px solid #444;
            border-radius: 5px;
            color: #eee;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #c19a53, #a67c00);
            color: #000;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #e5c76b, #c19a53);
            box-shadow: 0 0 10px rgba(193, 154, 83, 0.5);
        }
        .internal-links {
            background: rgba(58, 44, 21, 0.3);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .internal-links h3 {
            margin-top: 0;
        }
        .internal-links ul {
            list-style: none;
            margin-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .internal-links li {
            background: rgba(10, 10, 10, 0.5);
            padding: 0.8rem;
            border-radius: 5px;
            border-left: 3px solid #c19a53;
        }
        .site-footer {
            background-color: #0a0a0a;
            border-top: 2px solid #3a2c15;
            padding: 3rem 20px;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #d4af37;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .update-time {
            color: #aaa;
            font-style: italic;
            font-size: 0.9rem;
            margin-top: 2rem;
            text-align: right;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                background: rgba(26, 26, 26, 0.98);
                padding: 1rem;
                border-radius: 8px;
                border: 1px solid #444;
            }
            .nav-menu.active {
                display: flex;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .main-content {
                padding: 1.5rem 15px;
                gap: 2rem;
            }
            .sidebar {
                position: static;
            }
        }
        .highlight {
            background: rgba(193, 154, 83, 0.15);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #c19a53;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
