* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0c0c14;
            --secondary-dark: #1a1a2e;
            --accent-gold: #c8a165;
            --accent-red: #8b0000;
            --text-light: #e0e0e0;
            --text-gray: #aaaaaa;
            --border-color: #2a2a3e;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 5px var(--accent-gold);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, rgba(12, 12, 20, 0.95), rgba(26, 26, 46, 0.9));
            border-bottom: 2px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #c8a165, #8b0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .search-box {
            display: flex;
            background: var(--secondary-dark);
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }
        .search-box input {
            background: transparent;
            border: none;
            padding: 10px 20px;
            color: var(--text-light);
            width: 250px;
            outline: none;
        }
        .search-box button {
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #d4b483;
        }
        .desktop-nav {
            display: flex;
            gap: 25px;
            padding: 15px 0;
            border-top: 1px solid var(--border-color);
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--secondary-dark);
            padding: 80px 30px 30px;
            transition: right 0.4s ease;
            z-index: 999;
            box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav a {
            display: block;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.1rem;
        }
        .close-menu {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 998;
        }
        .overlay.active {
            display: block;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-gray);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        main {
            padding: 40px 0;
            min-height: 100vh;
        }
        article {
            background: var(--secondary-dark);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid var(--border-color);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: var(--accent-gold);
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 20px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #fff;
            padding-left: 15px;
            border-left: 5px solid var(--accent-red);
        }
        h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: var(--accent-gold);
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 10px;
            color: #ddd;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            background: rgba(200, 161, 101, 0.05);
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
            margin-bottom: 35px;
        }
        .highlight {
            background: rgba(139, 0, 0, 0.1);
            padding: 20px;
            border-radius: 8px;
            border: 1px dashed var(--accent-red);
            margin: 25px 0;
        }
        .highlight strong {
            color: var(--accent-gold);
            font-size: 1.1em;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .plot-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            transition: transform 0.5s;
        }
        .plot-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .character-card {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            border: 1px solid transparent;
            transition: all 0.3s;
        }
        .character-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(200, 161, 101, 0.1);
        }
        .character-icon {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
        }
        .quote {
            font-size: 1.2rem;
            font-style: italic;
            padding: 25px;
            margin: 30px 0;
            background: rgba(26, 26, 46, 0.7);
            border-radius: 8px;
            border-left: 5px solid var(--accent-gold);
            color: #f0f0f0;
        }
        .quote::before, .quote::after {
            content: '"';
            color: var(--accent-gold);
            font-size: 1.5rem;
        }
        .user-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background: rgba(255,255,255,0.03);
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        .comment-section, .rating-section {
            flex: 1;
            min-width: 300px;
        }
        .rating-section h3, .comment-section h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active, .star:hover {
            color: gold;
        }
        #rating-form button, #comment-form button {
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 15px;
            transition: background 0.3s;
        }
        #rating-form button:hover, #comment-form button:hover {
            background: #d4b483;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            background: rgba(255,255,255,0.08);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
            resize: vertical;
        }
        textarea:focus, input:focus {
            outline: none;
            border-color: var(--accent-gold);
        }
        .update-time {
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }
        footer {
            background: var(--secondary-dark);
            border-top: 2px solid var(--accent-gold);
            padding: 40px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-links h4 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            background: rgba(200, 161, 101, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin: 10px 0;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(200, 161, 101, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--secondary-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #d4b483;
        }
