:root {
            --primary-color: #8B0000;
            --secondary-color: #D4AF37;
            --dark-bg: #1a1a1a;
            --light-text: #f5f5f5;
            --medium-gray: #333;
            --accent-red: #C41E3A;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--light-text);
            background-color: var(--dark-bg);
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
            text-decoration: underline;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2a0a0a 100%);
            border-bottom: 3px solid var(--primary-color);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        .my-logo span {
            color: var(--accent-red);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #2a2a2a;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid var(--medium-gray);
        }
        .breadcrumb a {
            color: #ddd;
        }
        .main-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-link {
            color: var(--light-text);
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .search-box {
            display: flex;
            border-radius: 4px;
            overflow: hidden;
        }
        .search-input {
            padding: 0.6rem 1rem;
            border: none;
            background-color: #333;
            color: white;
            min-width: 200px;
        }
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: var(--accent-red);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            background: none;
            border: none;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--light-text);
            transition: var(--transition);
        }
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background-color: rgba(42, 42, 42, 0.8);
            border-radius: 8px;
            padding: 3rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--primary-color);
        }
        h1 {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
        }
        .last-updated {
            color: #aaa;
            font-style: italic;
            margin-top: 1rem;
            display: block;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--secondary-color);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--medium-gray);
        }
        h3 {
            font-size: 1.8rem;
            color: #f0c674;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #d7b8ff;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(139, 0, 0, 0.1);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        .content-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
            border: 2px solid var(--medium-gray);
            transition: var(--transition);
        }
        .content-img:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
        }
        .img-caption {
            text-align: center;
            color: #aaa;
            font-style: italic;
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }
        .link-list {
            background-color: rgba(51, 51, 51, 0.5);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style-type: none;
            columns: 2;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .link-list li::before {
            content: '⚔️';
            position: absolute;
            left: 0;
        }
        aside {
            background-color: rgba(42, 42, 42, 0.8);
            border-radius: 8px;
            padding: 2rem;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-section {
            margin-bottom: 2.5rem;
        }
        .sidebar-title {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--medium-gray);
        }
        .comment-section {
            margin-top: 3rem;
            background-color: rgba(42, 42, 42, 0.8);
            border-radius: 8px;
            padding: 2.5rem;
        }
        .comment-form, .rating-form {
            background-color: rgba(51, 51, 51, 0.7);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ddd;
            font-weight: 500;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            background-color: #333;
            border: 1px solid #555;
            border-radius: 4px;
            color: white;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary-color);
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: var(--accent-red);
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: #555;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: var(--secondary-color);
        }
        footer {
            background-color: #1a1a1a;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-color);
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-links h3 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background-color: rgba(139, 0, 0, 0.1);
            border: 1px solid var(--medium-gray);
            border-radius: 4px;
            margin-bottom: 1rem;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(139, 0, 0, 0.2);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            color: #888;
            padding-top: 2rem;
            border-top: 1px solid var(--medium-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 1.5rem;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1.5rem;
            }
            .hamburger {
                display: flex;
            }
            .main-nav {
                width: 100%;
                flex-direction: column;
                display: none;
            }
            .main-nav.active {
                display: flex;
            }
            .nav-list {
                flex-direction: column;
                width: 100%;
                text-align: center;
                gap: 0;
            }
            .nav-list li {
                width: 100%;
                border-bottom: 1px solid #444;
            }
            .nav-link {
                display: block;
                padding: 1rem;
            }
            .search-box {
                width: 100%;
            }
            .search-input {
                min-width: auto;
                flex-grow: 1;
            }
            article {
                padding: 2rem 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .link-list ul {
                columns: 1;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside, .comment-section {
            animation: fadeIn 0.8s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .important {
            color: var(--secondary-color);
            font-weight: bold;
            background-color: rgba(212, 175, 55, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
        }
        .quote {
            font-style: italic;
            border-left: 3px solid var(--secondary-color);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            color: #d7b8ff;
        }
