        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0d0d0d;
            --secondary-dark: #1a1a1a;
            --accent-gold: #c8a165;
            --accent-red: #8b0000;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --border-color: #333;
        }
        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, border-bottom 0.3s ease;
            border-bottom: 1px solid transparent;
        }
        a:hover {
            color: #e0c28a;
            border-bottom: 1px solid var(--accent-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary-dark);
            border-bottom: 3px solid var(--accent-red);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--accent-gold);
            text-transform: uppercase;
            border-bottom: none;
            font-family: 'Times New Roman', serif;
        }
        .logo a:hover {
            color: #e0c28a;
            border-bottom: none;
            text-shadow: 0 0 10px rgba(200, 161, 101, 0.5);
        }
        .my-logo {
            color: var(--accent-gold) !important;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--secondary-dark);
            border-top: 1px solid var(--border-color);
            flex-direction: column;
            padding: 1rem 0;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            text-align: center;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .mobile-nav a {
            display: block;
            font-size: 1.2rem;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--secondary-dark);
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.8rem;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .search-section {
            background: linear-gradient(to right, #1a1a1a, #2a2a2a);
            padding: 2.5rem 0;
            margin-bottom: 3rem;
            border-radius: 8px;
            text-align: center;
        }
        .search-section h2 {
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
            font-size: 1.8rem;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            background-color: #fff;
            color: #333;
        }
        .search-form button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
        }
        .search-form button:hover {
            background-color: #a00;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--accent-red);
        }
        .article-header h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-gray);
            font-size: 0.95rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .update-time {
            background-color: var(--accent-red);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
        }
        .content {
            font-size: 1.15rem;
        }
        .content h2 {
            font-size: 2.4rem;
            color: var(--accent-gold);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .content h3 {
            font-size: 1.9rem;
            color: #e0c28a;
            margin: 2.5rem 0 1.2rem;
        }
        .content h4 {
            font-size: 1.5rem;
            color: var(--text-light);
            margin: 2rem 0 1rem;
            font-style: italic;
        }
        .content p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .content strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        .content em {
            color: var(--text-gray);
        }
        .highlight-box {
            background-color: var(--secondary-dark);
            border-left: 5px solid var(--accent-gold);
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .character-card {
            background-color: var(--secondary-dark);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: 1px solid var(--border-color);
        }
        .character-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .character-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .character-card-content {
            padding: 1.5rem;
        }
        .character-card h4 {
            color: var(--accent-gold);
            margin-top: 0;
        }
        .interactive-section {
            background-color: var(--secondary-dark);
            border-radius: 10px;
            padding: 2.5rem;
            margin: 4rem 0;
            border: 1px solid var(--border-color);
        }
        .rating-form, .comment-form {
            margin-top: 2rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            cursor: pointer;
        }
        .star {
            font-size: 2rem;
            color: #555;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            background-color: #2a2a2a;
            color: var(--text-light);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-weight: bold;
        }
        .submit-btn:hover {
            background-color: #a00;
        }
        footer {
            background-color: var(--secondary-dark);
            border-top: 3px solid var(--accent-red);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            padding: 0.5rem;
            background-color: #2a2a2a;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: #333;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .article-header h1 {
                font-size: 2.7rem;
            }
            .content h2 {
                font-size: 2.1rem;
            }
            .content h3 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 0 1rem;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content h2 {
                font-size: 1.9rem;
            }
            .content h3 {
                font-size: 1.5rem;
            }
            .character-grid {
                grid-template-columns: 1fr;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 8px;
            }
            .search-form input,
            .search-form button {
                width: 100%;
                border-radius: 0;
                padding: 1rem;
            }
        }
        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.9rem;
            }
            .content h2 {
                font-size: 1.7rem;
            }
            .breadcrumb ul {
                font-size: 0.9rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            header, footer, .search-section, .interactive-section, .breadcrumb {
                display: none;
            }
            body {
                color: black;
                background: white;
            }
            .content {
                font-size: 12pt;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
