        * {
            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: #e0d3c4;
            background-color: #0a0a0a;
            background-image: radial-gradient(circle at 15% 50%, #1a150f 0%, transparent 25%), radial-gradient(circle at 85% 30%, #0f1a1a 0%, transparent 25%);
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffeb9c;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background-color: rgba(15, 12, 8, 0.95);
            border-bottom: 2px solid #3a2e1f;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(90deg, #d4af37, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            animation: glow 1.5s ease-in-out infinite alternate;
        }
        @keyframes glow {
            from { text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
            to { text-shadow: 0 0 10px #ffeb9c, 2px 2px 4px rgba(0,0,0,0.5); }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(58, 46, 31, 0.5);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(26, 21, 15, 0.8);
            border-bottom: 1px solid #3a2e1f;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #8b7355;
        }
        .search-module {
            background: linear-gradient(to right, #1a150f, #2a241a);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            border: 1px solid #3a2e1f;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem;
            background-color: #0f0c08;
            border: 2px solid #5d4c30;
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: #e0d3c4;
            font-size: 1rem;
        }
        .search-form button {
            padding: 1rem 1.5rem;
            background: linear-gradient(to bottom, #d4af37, #b8860b);
            color: #1a150f;
            border: none;
            border-radius: 0 6px 6px 0;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to bottom, #ffeb9c, #d4af37);
        }
        .main-content {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(15, 12, 8, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid #3a2e1f;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #e8d8b6;
            margin-top: 1.5em;
            margin-bottom: 0.75em;
            line-height: 1.3;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
            padding-bottom: 0.3em;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffeb9c;
            border-bottom: 3px solid #d4af37;
            text-align: center;
            margin-top: 0;
            padding-bottom: 0.5em;
        }
        h2 {
            font-size: 2.1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.7rem;
        }
        h4 {
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            color: #f0e6d2;
            font-style: italic;
            margin-bottom: 2.5rem;
            text-align: center;
            padding: 0 1rem;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.15);
            border-left: 4px solid #d4af37;
            padding: 1.2rem;
            margin: 1.8rem 0;
            border-radius: 0 6px 6px 0;
        }
        strong {
            color: #ffeb9c;
            font-weight: 700;
        }
        blockquote {
            font-style: italic;
            color: #c9b79c;
            border-left: 3px solid #8b7355;
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            border: 3px solid #5d4c30;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
            max-width: 800px;
            margin: 0 auto;
        }
        .img-caption {
            font-size: 0.9rem;
            color: #a89a7e;
            margin-top: 0.75rem;
            font-style: italic;
        }
        .internal-links {
            background-color: rgba(26, 21, 15, 0.9);
            border: 1px solid #3a2e1f;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .internal-links h3 {
            margin-top: 0;
            border-bottom: none;
        }
        .internal-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.75rem;
            margin-top: 1rem;
        }
        .internal-links li a {
            display: block;
            padding: 0.6rem;
            background-color: rgba(58, 46, 31, 0.5);
            border-radius: 4px;
        }
        .internal-links li a:hover {
            background-color: rgba(88, 70, 47, 0.7);
        }
        .user-rating, .user-comments {
            background-color: rgba(15, 12, 8, 0.9);
            border: 1px solid #3a2e1f;
            border-radius: 10px;
            padding: 1.8rem;
            margin-top: 2.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #5d4c30;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffeb9c;
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            background-color: #0f0c08;
            border: 1px solid #5d4c30;
            border-radius: 6px;
            color: #e0d3c4;
            font-family: inherit;
            margin-bottom: 1rem;
            min-height: 150px;
            resize: vertical;
        }
        .form-submit {
            display: flex;
            gap: 1rem;
        }
        .form-submit input, .form-submit button {
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            border: none;
            font-weight: bold;
            cursor: pointer;
        }
        .form-submit input[type="text"],
        .form-submit input[type="email"] {
            flex-grow: 1;
            background-color: #0f0c08;
            border: 1px solid #5d4c30;
            color: #e0d3c4;
        }
        .form-submit button {
            background: linear-gradient(to bottom, #d4af37, #b8860b);
            color: #1a150f;
            transition: background 0.3s;
        }
        .form-submit button:hover {
            background: linear-gradient(to bottom, #ffeb9c, #d4af37);
        }
        .widget {
            background-color: rgba(15, 12, 8, 0.9);
            border: 1px solid #3a2e1f;
            border-radius: 10px;
            padding: 1.5rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            border-bottom: none;
        }
        .update-time {
            font-size: 0.9rem;
            color: #a89a7e;
            text-align: center;
            padding: 0.5rem;
            background-color: rgba(26, 21, 15, 0.8);
            border-radius: 6px;
        }
        .site-footer {
            background-color: #0a0705;
            border-top: 2px solid #3a2e1f;
            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;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            padding: 0.5rem;
            background-color: rgba(58, 46, 31, 0.3);
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: rgba(88, 70, 47, 0.5);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3a2e1f;
            color: #8b7355;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(15, 12, 8, 0.98);
                padding: 1rem;
                border-top: 1px solid #3a2e1f;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-content {
                padding: 1.5rem;
            }
            .internal-links ul {
                grid-template-columns: 1fr;
            }
            .form-submit {
                flex-direction: column;
            }
        }
