:root {
            --primary-red: #9a0000;
            --secondary-red: #c1121f;
            --dark-bg: #0a0a0a;
            --medium-bg: #1a1a1a;
            --light-bg: #2a2a2a;
            --text-light: #f0f0f0;
            --text-dim: #b0b0b0;
            --accent-gold: #d4af37;
            --accent-silver: #c0c0c0;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: var(--secondary-red);
            text-shadow: 0 0 8px rgba(194, 18, 31, 0.7);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, rgba(10,10,10,0.95), rgba(26,26,26,0.9));
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-red);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.8rem;
            background: linear-gradient(45deg, var(--accent-gold), var(--secondary-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo a {
            background: none;
        }
        .my-logo span {
            color: var(--text-light);
            font-size: 1.8rem;
        }
        #hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 1.1rem;
        }
        nav ul li a:hover {
            background-color: rgba(154, 0, 0, 0.2);
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.9rem;
            color: var(--text-dim);
            border-top: 1px solid var(--light-bg);
        }
        .breadcrumb a { color: var(--accent-silver); }
        .breadcrumb a:hover { color: var(--accent-gold); }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-area {
            background-color: var(--medium-bg);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-left: 5px solid var(--primary-red);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: var(--accent-gold);
            text-shadow: 2px 2px 0 var(--primary-red);
            border-bottom: 3px solid var(--secondary-red);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--secondary-red);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--light-bg);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-silver);
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-dim);
            margin: 25px 0 10px;
            font-style: italic;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(154, 0, 0, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .character-img {
            float: right;
            margin: 15px 0 25px 35px;
            max-width: 350px;
            border: 3px solid var(--primary-red);
            border-radius: 8px;
            box-shadow: -8px 8px 15px rgba(0,0,0,0.7);
            shape-outside: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
        }
        .character-img img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-dim);
            font-size: 0.9rem;
            padding: 8px;
            background-color: rgba(0,0,0,0.5);
        }
        .related-links {
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: 10px;
            margin: 35px 0;
        }
        .related-links h3 { margin-top: 0; color: var(--accent-gold); }
        .related-links ul { padding-left: 20px; }
        .related-links li { margin-bottom: 10px; }
        .sidebar {
            background-color: var(--medium-bg);
            border-radius: 12px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 140px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--light-bg);
        }
        .search-form input[type="text"] {
            width: 100%;
            padding: 12px 15px;
            background-color: var(--dark-bg);
            border: 1px solid var(--primary-red);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 12px;
            padding: 12px;
            background: linear-gradient(to right, var(--primary-red), var(--secondary-red));
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .search-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(154, 0, 0, 0.4);
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: var(--text-dim);
            margin-bottom: 10px;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-gold);
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: var(--dark-bg);
            border: 1px solid var(--light-bg);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            resize: vertical;
        }
        .form-group textarea { min-height: 120px; }
        .submit-btn {
            padding: 14px;
            background-color: var(--primary-red);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover { background-color: var(--secondary-red); }
        .update-time {
            font-size: 0.9rem;
            color: var(--text-dim);
            text-align: center;
            padding: 10px;
            background-color: rgba(26,26,26,0.8);
            border-radius: 6px;
            margin-top: 20px;
        }
        footer {
            background-color: var(--dark-bg);
            border-top: 3px solid var(--primary-red);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 8px 12px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: rgba(154, 0, 0, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--light-bg);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            main { grid-template-columns: 1fr; }
            .sidebar { position: static; }
            .character-img { max-width: 300px; }
        }
        @media (max-width: 768px) {
            .header-top { flex-wrap: wrap; }
            #hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--medium-bg);
                margin-top: 20px;
                padding: 20px;
                border-radius: 8px;
            }
            nav ul.active { display: flex; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
            .content-area { padding: 25px; }
            .character-img {
                float: none;
                margin: 20px auto;
                max-width: 100%;
                shape-outside: none;
            }
        }
