:root {
            --primary-dark: #0c0c1a;
            --secondary-dark: #1a1a2e;
            --accent-gold: #c9a227;
            --accent-red: #8b0000;
            --text-light: #f0f0f0;
            --text-grey: #b0b0b0;
            --border-grey: #333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            --transition: all 0.3s ease;
        }
        * {
            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(to bottom, var(--primary-dark), var(--secondary-dark));
            min-height: 100vh;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #e0b82e;
            text-shadow: 0 0 8px rgba(201, 162, 39, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(12, 12, 26, 0.95);
            border-bottom: 2px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px #000;
            padding: 5px 10px;
            border: 2px solid var(--accent-gold);
        }
        .my-logo:hover {
            background-color: rgba(201, 162, 39, 0.1);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: var(--accent-red);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--accent-gold);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-grey);
            border-bottom: 1px solid var(--border-grey);
        }
        .breadcrumb a {
            color: var(--text-grey);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .search-container {
            margin: 30px auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid var(--border-grey);
        }
        .search-input {
            flex-grow: 1;
            padding: 16px 24px;
            background-color: var(--secondary-dark);
            border: none;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-input::placeholder {
            color: #888;
        }
        .search-button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: #a00000;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-grey);
            font-size: 0.9rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-grey);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 5px #000;
        }
        h2 {
            font-size: 2rem;
            color: var(--text-light);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-red);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--accent-gold);
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-light);
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            color: var(--text-grey);
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-light);
            line-height: 1.8;
            background: rgba(139, 0, 0, 0.1);
            padding: 20px;
            border-left: 4px solid var(--accent-red);
            margin-bottom: 30px;
        }
        .highlight {
            background-color: rgba(201, 162, 39, 0.15);
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: bold;
            color: #e0b82e;
        }
        .featured-image {
            float: right;
            margin: 15px 0 25px 30px;
            max-width: 450px;
            border-radius: 8px;
            border: 3px solid var(--accent-gold);
            box-shadow: var(--shadow);
            shape-outside: margin-box;
        }
        @media (max-width: 768px) {
            .featured-image {
                float: none;
                margin: 20px auto;
                max-width: 100%;
            }
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #999;
            margin-top: 8px;
            font-size: 0.9rem;
        }
        .link-list {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 12px;
        }
        .link-list li {
            padding: 8px 0;
            border-bottom: 1px dotted var(--border-grey);
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .sidebar {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--accent-gold);
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-grey);
        }
        .comment-form, .rating-form {
            background-color: rgba(12, 12, 26, 0.6);
            border-radius: 8px;
            padding: 25px;
            margin: 40px 0;
            border: 1px solid var(--border-grey);
        }
        .form-title {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-light);
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            background-color: var(--secondary-dark);
            border: 1px solid var(--border-grey);
            border-radius: 4px;
            color: var(--text-light);
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 1.1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
        }
        .submit-btn:hover {
            background-color: #a00000;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #555;
            margin: 10px 0 20px;
        }
        .star-rating i {
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating i:hover, .star-rating i.active {
            color: var(--accent-gold);
            transform: scale(1.2);
        }
        .site-footer {
            background-color: #050510;
            border-top: 2px solid var(--accent-gold);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            display: inline-block;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 8px 0;
            border-bottom: 1px dotted #444;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: var(--text-grey);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 15px;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid var(--border-grey);
            }
            .main-nav a {
                display: block;
                padding: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 25px;
            }
            .sidebar {
                position: static;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .updated-time {
            color: var(--accent-gold);
            font-weight: bold;
        }
        .bold { font-weight: bold; color: var(--text-light); }
        .italic { font-style: italic; }
        .underline { text-decoration: underline; }
        .text-center { text-align: center; }
        .mb-30 { margin-bottom: 30px; }
        .mt-30 { margin-top: 30px; }
        .py-20 { padding-top: 20px; padding-bottom: 20px; }
