:root {
            --primary-dark: #0a0a12;
            --primary-accent: #8b0000;
            --secondary-accent: #c5a440;
            --text-light: #f0f0f0;
            --text-gray: #b8b8b8;
            --card-bg: #1a1a24;
            --border-color: #333344;
            --success-green: #2a8a5e;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, #000000, var(--primary-dark));
            border-bottom: 2px solid var(--primary-accent);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .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(45deg, var(--secondary-accent), #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-accent);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(26, 26, 36, 0.8);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb span {
            color: var(--secondary-accent);
            margin: 0 5px;
        }
        main {
            padding: 2rem 0;
            min-height: 150vh;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--secondary-accent);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--primary-accent);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #e6e6e6;
            margin: 2.5rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid var(--primary-accent);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--text-gray);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #c5a440cc;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-gray);
            font-weight: 300;
            margin-bottom: 2rem;
            padding: 1rem;
            background-color: rgba(139, 0, 0, 0.1);
            border-left: 4px solid var(--primary-accent);
        }
        .highlight {
            background-color: rgba(197, 164, 64, 0.1);
            padding: 1.5rem;
            border-radius: 5px;
            border-left: 4px solid var(--secondary-accent);
            margin: 2rem 0;
        }
        .figure-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 5px;
            border: 2px solid var(--border-color);
            margin: 2rem auto;
            display: block;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .figure-img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(197, 164, 64, 0.3);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #222233, #1a1a24);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-color);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary-accent);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            margin: 0;
            color: var(--text-light);
        }
        .stat-card p {
            font-size: 2rem;
            font-weight: bold;
            color: var(--success-green);
            margin: 0;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 1.8rem;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            margin-top: 0;
            color: var(--secondary-accent);
            font-size: 1.4rem;
            border-bottom: 2px solid var(--primary-accent);
            padding-bottom: 0.5rem;
        }
        .search-form input {
            width: 100%;
            padding: 12px;
            background-color: #0f0f18;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 12px;
            background-color: var(--primary-accent);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #a30000;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
        }
        .rating-widget .stars i {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: gold;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 12px;
            background-color: #0f0f18;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-light);
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form button {
            padding: 12px 25px;
            background-color: var(--secondary-accent);
            color: var(--primary-dark);
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
        }
        .update-time {
            font-size: 0.9rem;
            color: var(--text-gray);
            text-align: right;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--border-color);
        }
        .update-time i {
            margin-right: 8px;
            color: var(--success-green);
        }
        footer {
            background-color: #05050a;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid var(--primary-accent);
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary-accent);
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: var(--text-light);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 5px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--secondary-accent);
        }
        friend-link a {
            font-weight: bold;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-dark);
                padding: 1rem;
                border-top: 1px solid var(--border-color);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .content-grid {
                gap: 2rem;
            }
        }
