:root {
            --primary-color: #9a0000;
            --secondary-color: #1a1a1a;
            --accent-color: #d4af37;
            --light-color: #f5f5f5;
            --dark-color: #0a0a0a;
            --text-color: #e0e0e0;
            --gray-color: #444;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-heading: 'Impact', 'Arial Black', sans-serif;
            --shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            line-height: 1.8;
            color: var(--text-color);
            background-color: var(--secondary-color);
            background-image: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0a 100%);
            overflow-x: hidden;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 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(10, 10, 10, 0.95);
            border-bottom: 3px solid var(--primary-color);
            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: var(--font-heading);
            font-size: 2.5rem;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        .my-logo:hover {
            color: #ff0000;
            transform: scale(1.02);
        }
        .my-logo span {
            color: var(--accent-color);
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        .main-nav {
            display: flex;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            margin-left: 25px;
        }
        .main-nav a {
            font-weight: bold;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 1.1rem;
        }
        .main-nav a:hover {
            background-color: rgba(154, 0, 0, 0.2);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--light-color);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            background-color: rgba(30, 30, 30, 0.8);
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--gray-color);
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--accent-color);
        }
        .breadcrumb span {
            color: #777;
            margin: 0 8px;
        }
        .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(25, 25, 25, 0.8);
            border-radius: 10px;
            padding: 40px;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--primary-color);
        }
        .sidebar {
            background-color: rgba(30, 30, 30, 0.8);
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--light-color);
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2.4rem;
            color: var(--accent-color);
            margin-top: 2.5rem;
            border-left: 4px solid var(--primary-color);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #f0f0f0;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #ccc;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #d4af37;
            font-weight: bold;
            text-align: center;
            margin: 30px auto;
            max-width: 900px;
            padding: 20px;
            border: 1px dashed var(--accent-color);
            border-radius: 8px;
            background-color: rgba(212, 175, 55, 0.05);
        }
        strong {
            color: var(--accent-color);
            font-weight: bold;
        }
        em {
            color: #ff9999;
            font-style: italic;
        }
        .update-time {
            display: block;
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 30px;
            border-bottom: 1px solid #333;
            padding-bottom: 15px;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 30px 0;
            border: 3px solid var(--primary-color);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .search-box, .comment-form, .rating-form {
            background-color: rgba(40, 40, 40, 0.9);
            border-radius: 8px;
            padding: 25px;
            margin: 40px 0;
            border: 1px solid var(--gray-color);
        }
        .form-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-title i {
            color: var(--primary-color);
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #ccc;
        }
        input, select, textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(60, 60, 60, 0.8);
            border: 1px solid #555;
            border-radius: 5px;
            color: var(--light-color);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
        }
        button, .btn {
            background: linear-gradient(to bottom, var(--primary-color), #7a0000);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to bottom, #c00000, #9a0000);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(154, 0, 0, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: gold;
            text-shadow: 0 0 10px gold;
        }
        .sidebar-section {
            margin-bottom: 35px;
        }
        .sidebar-title {
            font-size: 1.4rem;
            color: var(--accent-color);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
            margin-bottom: 20px;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #444;
        }
        .link-list a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .link-list i {
            color: var(--primary-color);
            width: 20px;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 15px;
        }
        .character-icon {
            background-color: rgba(60, 60, 60, 0.8);
            border-radius: 5px;
            padding: 10px;
            text-align: center;
            font-size: 0.8rem;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .character-icon:hover {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }
        .site-footer {
            background-color: var(--dark-color);
            border-top: 3px solid var(--primary-color);
            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;
        }
        friend-link {
            display: block;
            background-color: rgba(40, 40, 40, 0.8);
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 15px;
            border-left: 4px solid transparent;
            transition: var(--transition);
        }
        friend-link:hover {
            border-left-color: var(--accent-color);
            background-color: rgba(60, 60, 60, 0.8);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .my-logo {
                font-size: 2rem;
                margin-bottom: 15px;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .nav-container {
                width: 100%;
                display: none;
            }
            .nav-container.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                width: 100%;
            }
            .main-nav li {
                margin: 0;
                width: 100%;
                border-bottom: 1px solid #333;
            }
            .main-nav a {
                display: block;
                padding: 15px;
                width: 100%;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .article-content {
                padding: 25px;
            }
            .character-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar {
            animation: fadeIn 0.8s ease-out;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(154, 0, 0, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(154, 0, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(154, 0, 0, 0); }
        }
        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 20px; }
        .mt-30 { margin-top: 30px; }
        .py-20 { padding-top: 20px; padding-bottom: 20px; }
        .highlight { background-color: rgba(212, 175, 55, 0.1); padding: 3px 6px; border-radius: 3px; }
        .quote {
            border-left: 4px solid var(--primary-color);
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #ccc;
        }
        .tip {
            background-color: rgba(0, 100, 200, 0.1);
            border-left: 4px solid #0064c8;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
