:root {
            --primary-dark: #0c0c14;
            --secondary-dark: #1a1a2e;
            --accent-gold: #c9a959;
            --accent-red: #8b0000;
            --text-light: #f0f0f0;
            --text-grey: #b8b8b8;
            --border-color: #2a2a3e;
            --transition-speed: 0.3s;
        }
        * {
            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: var(--text-light);
            background-color: var(--primary-dark);
            background-image: linear-gradient(rgba(12, 12, 20, 0.95), rgba(12, 12, 20, 0.95)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNMzAgMTVMMTAgNDBoNDB6IiBmaWxsPSIjYzlhOTU5IiBmaWxsLW9wYWNpdHk9Ii4wNSIvPjwvc3ZnPg==');
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 5px var(--accent-gold);
        }
        .site-header {
            padding: 2rem 0 1rem;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 3rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent-gold);
            text-align: center;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            position: relative;
            display: inline-block;
        }
        .my-logo:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 25%;
            width: 50%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }
        .my-logo a {
            color: inherit;
        }
        .my-logo a:hover {
            text-shadow: 0 0 10px var(--accent-gold);
        }
        .main-nav {
            width: 100%;
            position: relative;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
            gap: 1.5rem;
            padding: 1rem 0;
        }
        .nav-links a {
            padding: 0.5rem 1rem;
            border: 1px solid transparent;
            border-radius: 4px;
            font-weight: 600;
        }
        .nav-links a:hover {
            border-color: var(--accent-gold);
            background: rgba(201, 169, 89, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--accent-gold);
            cursor: pointer;
            position: absolute;
            right: 0;
            top: 0;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-grey);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-grey);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 900px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: var(--secondary-dark);
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 2px solid var(--accent-red);
            padding-bottom: 1rem;
        }
        article h2 {
            font-size: 2rem;
            color: var(--accent-gold);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        article h3 {
            font-size: 1.6rem;
            color: #e0c070;
            margin: 2rem 0 1rem;
        }
        article h4 {
            font-size: 1.3rem;
            color: #d0b060;
            margin: 1.8rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article strong {
            color: #fff;
            font-weight: 700;
        }
        article em {
            color: var(--text-grey);
            font-style: italic;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 2rem;
            color: var(--text-grey);
            font-size: 0.95rem;
        }
        .article-meta .update-time {
            color: var(--accent-gold);
            font-weight: bold;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            border: 2px solid var(--accent-gold);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .pull-quote {
            border-left: 4px solid var(--accent-red);
            padding-left: 1.5rem;
            margin: 2rem 0 2rem 1.5rem;
            font-style: italic;
            font-size: 1.2rem;
            color: #e0c070;
            quotes: "“" "”";
        }
        .pull-quote:before {
            content: open-quote;
            font-size: 2.5rem;
            color: var(--accent-red);
            vertical-align: bottom;
            line-height: 0;
            margin-right: 5px;
        }
        .sidebar-widget {
            background: var(--secondary-dark);
            border-radius: 10px;
            padding: 1.8rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: var(--text-light);
        }
        .search-form button {
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background var(--transition-speed);
        }
        .search-form button:hover {
            background: #e0c070;
        }
        .rating-form .stars {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            color: var(--border-color);
        }
        .rating-form .stars i {
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .rating-form .stars i:hover,
        .rating-form .stars i.active {
            color: var(--accent-gold);
        }
        .rating-form input,
        .rating-form textarea,
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
        }
        .rating-form button,
        .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background: var(--accent-red);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background var(--transition-speed);
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #a00000;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed var(--border-color);
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--border-color);
        }
        .comment {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 3px solid var(--accent-gold);
        }
        .comment-author {
            font-weight: bold;
            color: var(--accent-gold);
            display: block;
            margin-bottom: 0.5rem;
        }
        .comment-date {
            font-size: 0.85rem;
            color: var(--text-grey);
        }
        site-footer {
            padding: 3rem 0;
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-grey);
            font-size: 0.9rem;
        }
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
        }
        friend-link {
            padding: 0.5rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            transition: all var(--transition-speed);
        }
        friend-link:hover {
            border-color: var(--accent-gold);
            background: rgba(201, 169, 89, 0.1);
        }
        .copyright {
            margin-top: 2rem;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .site-header {
                padding-top: 1rem;
            }
            .my-logo {
                font-size: 2.2rem;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--secondary-dark);
                padding: 1rem;
                border-radius: 0 0 10px 10px;
                z-index: 1000;
                border: 1px solid var(--border-color);
                border-top: none;
            }
            .nav-links.active {
                display: flex;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
        }
