        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #e5e5e5;
            background-color: #0a0a0a;
            background-image: radial-gradient(circle at 15% 50%, rgba(120, 119, 71, 0.05) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(139, 64, 0, 0.05) 0%, transparent 20%);
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-family: 'Times New Roman', serif;
            font-weight: 700;
            color: #d4af37;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-align: center;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
        }
        h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            border-bottom: 2px solid #333;
            padding-bottom: 0.5rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: clamp(1.4rem, 2.5vw, 1.8rem);
            color: #b8860b;
            margin-top: 2.5rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #daa520;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
        }
        strong {
            color: #f0e68c;
            font-weight: 700;
        }
        em {
            color: #deb887;
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid #d4af37;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #ccc;
            background: rgba(212, 175, 55, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 10, 0.95);
            border-bottom: 1px solid #333;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #d4af37;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #ffd700;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: #d4af37;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #d4af37;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(20, 20, 20, 0.8);
            border-bottom: 1px solid #333;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            color: #999;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: #666;
        }
        .breadcrumb a {
            color: #d4af37;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        main {
            background: rgba(30, 30, 30, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid #444;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        aside {
            background: rgba(30, 30, 30, 0.7);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #444;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget-title {
            font-size: 1.2rem;
            color: #d4af37;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background: rgba(50, 50, 50, 0.8);
            border: 1px solid #555;
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: #fff;
            font-size: 1rem;
        }
        .search-btn {
            background: #d4af37;
            color: #000;
            border: none;
            border-radius: 0 6px 6px 0;
            padding: 0 1.2rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: #ffd700;
        }
        .rating-form {
            background: rgba(40, 40, 40, 0.8);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffd700;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ccc;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.8rem;
            background: rgba(60, 60, 60, 0.8);
            border: 1px solid #555;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #d4af37;
        }
        .submit-btn {
            background: linear-gradient(to right, #d4af37, #b8860b);
            color: #000;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #ffd700, #daa520);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #999;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #444;
            font-size: 0.9rem;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            border: 2px solid #555;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .char-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .char-card {
            background: rgba(40, 40, 40, 0.8);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #555;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .char-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
            border-color: #d4af37;
        }
        .char-name {
            font-size: 1.3rem;
            color: #d4af37;
            margin-bottom: 0.5rem;
        }
        .actor-name {
            color: #b8860b;
            font-style: italic;
            margin-bottom: 1rem;
        }
        footer {
            background-color: rgba(15, 15, 15, 0.95);
            border-top: 1px solid #333;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            color: #666;
            padding-top: 2rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(20, 20, 20, 0.98);
                backdrop-filter: blur(10px);
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
                z-index: 999;
                border-bottom: 1px solid #333;
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid #333;
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            main {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .char-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 15px;
            }
        }
        .highlight {
            background: rgba(212, 175, 55, 0.15);
            padding: 1.5rem;
            border-left: 4px solid #d4af37;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .quote-icon {
            color: #d4af37;
            margin-right: 0.5rem;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
