:root {
            --primary-dark: #0a0a12;
            --secondary-dark: #1a1a2e;
            --accent-gold: #c8a165;
            --accent-red: #8b0000;
            --accent-steel: #708090;
            --text-primary: #f0f0f0;
            --text-secondary: #b8b8b8;
            --border-color: #333348;
            --card-bg: rgba(26, 26, 46, 0.85);
            --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;
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.8;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(200, 161, 101, 0.03) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .site-header {
            background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
            border-bottom: 2px solid var(--accent-gold);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent-gold);
            text-decoration: none;
            background: linear-gradient(45deg, var(--accent-gold), #e6d3a7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            transition: transform var(--transition-speed);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .breadcrumb {
            margin: 1rem 2rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--accent-gold);
            text-decoration: none;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 0.5rem;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--accent-gold);
            margin: 3px 0;
            transition: var(--transition-speed);
            border-radius: 2px;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-menu a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 1px;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all var(--transition-speed);
            position: relative;
        }
        .nav-menu a:hover {
            color: var(--accent-gold);
            background-color: rgba(200, 161, 101, 0.1);
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width var(--transition-speed);
        }
        .nav-menu a:hover::after {
            width: 80%;
        }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 3rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: var(--accent-gold);
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 1rem;
            text-align: center;
            margin-top: 0;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent-red);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-steel);
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-secondary);
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        em {
            color: var(--accent-steel);
            font-style: italic;
        }
        .content-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--border-color);
            margin: 2rem auto;
            display: block;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
            transition: transform var(--transition-speed);
        }
        .content-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        aside {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        .search-box, .comment-form, .rating-form {
            background: rgba(10, 10, 18, 0.7);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--accent-gold);
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--secondary-dark);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: border-color var(--transition-speed);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent-gold);
        }
        button {
            background: linear-gradient(to bottom, var(--accent-gold), #9c7c4a);
            color: var(--primary-dark);
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all var(--transition-speed);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        button:hover {
            background: linear-gradient(to bottom, #e6d3a7, var(--accent-gold));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(200, 161, 101, 0.3);
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: #e6d3a7;
            text-decoration: underline;
        }
        .internal-link {
            border-bottom: 1px dashed var(--accent-gold);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--accent-gold);
        }
        footer {
            background: linear-gradient(to top, var(--secondary-dark), var(--primary-dark));
            border-top: 2px solid var(--accent-gold);
            margin-top: auto;
            padding: 3rem 2rem 1.5rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background: rgba(200, 161, 101, 0.1);
            border-left: 3px solid var(--accent-gold);
            transition: background-color var(--transition-speed);
        }
        friend-link:hover {
            background: rgba(200, 161, 101, 0.2);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .highlight {
            background: linear-gradient(90deg, transparent 0%, rgba(200, 161, 101, 0.1) 50%, transparent 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
        }
        .update-time {
            color: var(--accent-steel);
            font-style: italic;
            font-size: 0.95rem;
            text-align: right;
            margin-top: 2rem;
        }
        .block-quote {
            border-left: 4px solid var(--accent-red);
            padding-left: 2rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-secondary);
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: flex;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                background: var(--secondary-dark);
                border-radius: 8px;
                padding: 1rem;
            }
            .nav-menu.active {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            article {
                padding: 2rem;
            }
            .main-container {
                padding: 0 1rem;
            }
        }
        @media (max-width: 480px) {
            .site-header {
                padding: 1rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            article {
                padding: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article {
            animation: fadeIn 0.8s ease-out;
        }
