        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a { color: #00a8ff; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #4cd137; text-shadow: 0 0 8px rgba(76, 209, 55, 0.7); }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Georgia', 'Times New Roman', serif; color: #f5f5f5; margin-bottom: 1rem; font-weight: 700; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); border-left: 5px solid #e67e22; padding-left: 1rem; margin-top: 2rem; }
        h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: #3498db; border-bottom: 2px solid #3498db; padding-bottom: 0.5rem; margin-top: 3rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: #9b59b6; margin-top: 2.5rem; }
        h4 { font-size: 1.4rem; color: #1abc9c; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .lead { font-size: 1.3rem; color: #bdc3c7; font-style: italic; }
        strong, b { color: #f1c40f; }
        em { color: #e74c3c; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-content { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 30px 0; }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .site-header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2c3e50;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: transparent;
            background: linear-gradient(to right, #3498db, #e74c3c, #f1c40f);
            -webkit-background-clip: text;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 2px;
        }
        .my-logo:hover { animation: logoGlow 1.5s ease-in-out infinite alternate; }
        @keyframes logoGlow {
            from { text-shadow: 0 0 10px #3498db, 0 0 20px #3498db; }
            to { text-shadow: 0 0 15px #e74c3c, 0 0 30px #e74c3c; }
        }
        .nav-desktop { display: flex; gap: 25px; }
        .nav-desktop a {
            color: #ecf0f1;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover { background: rgba(52, 152, 219, 0.2); }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #ecf0f1;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(25, 25, 35, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            border-top: 1px solid #34495e;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { color: #ecf0f1; padding: 12px 0; border-bottom: 1px solid #2c3e50; }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger-btn { display: block; }
        }
        .breadcrumb {
            padding: 15px 0;
            color: #95a5a6;
            font-size: 0.9rem;
            background: rgba(30, 30, 40, 0.7);
            border-radius: 8px;
            margin: 20px 0;
            padding-left: 20px;
        }
        .breadcrumb a { color: #bdc3c7; }
        .search-module {
            background: rgba(44, 62, 80, 0.6);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid #3498db;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: 2px solid #2980b9;
            border-radius: 8px 0 0 8px;
            background: #2c3e50;
            color: #ecf0f1;
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(to right, #2980b9, #2c3e50);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-btn:hover { background: linear-gradient(to right, #3498db, #34495e); }
        .article-content {
            background: rgba(25, 25, 35, 0.8);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #444;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 25px 0;
            border: 3px solid #e67e22;
            overflow: hidden;
        }
        .featured-image img { width: 100%; transition: transform 0.5s; }
        .featured-image:hover img { transform: scale(1.03); }
        .caption { text-align: center; font-style: italic; color: #95a5a6; margin-top: 10px; }
        .internal-link-list {
            background: rgba(52, 73, 94, 0.4);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #9b59b6;
        }
        .internal-link-list h3 { margin-top: 0; }
        .internal-link-list ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 10px; }
        .internal-link-list li { padding: 8px 0; border-bottom: 1px dashed #555; }
        .internal-link-list li:last-child { border-bottom: none; }
        .cast-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .cast-card {
            background: linear-gradient(145deg, #2c3e50, #1a252f);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            border: 1px solid #34495e;
        }
        .cast-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
        }
        .cast-img { height: 250px; width: 100%; object-fit: cover; border-bottom: 3px solid #e74c3c; }
        .cast-info { padding: 20px; }
        .cast-info h4 { margin-top: 0; }
        .role { color: #f1c40f; font-weight: bold; }
        .sidebar {
            background: rgba(30, 30, 40, 0.8);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid #555;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 35px; }
        .widget-title {
            color: #1abc9c;
            border-bottom: 2px solid #1abc9c;
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .rating-form, .comment-form {
            background: rgba(44, 62, 80, 0.6);
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
        }
        .rating-stars { font-size: 2rem; margin: 15px 0; cursor: pointer; }
        .rating-stars .star { color: #555; margin-right: 10px; transition: color 0.3s; }
        .rating-stars .star:hover, .rating-stars .star.active { color: #f1c40f; }
        .form-group { margin-bottom: 20px; }
        label { display: block; margin-bottom: 8px; color: #bdc3c7; }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #7f8c8d;
            border-radius: 6px;
            background: #2c3e50;
            color: #ecf0f1;
            font-size: 1rem;
        }
        .submit-btn {
            background: linear-gradient(to right, #27ae60, #219653);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background 0.3s;
        }
        .submit-btn:hover { background: linear-gradient(to right, #2ecc71, #27ae60); }
        .site-footer {
            background: rgba(10, 10, 20, 0.95);
            border-top: 2px solid #e67e22;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        friend-link {
            display: block;
            background: rgba(52, 152, 219, 0.1);
            padding: 12px 20px;
            margin-bottom: 10px;
            border-radius: 6px;
            border-left: 4px solid #3498db;
            transition: background 0.3s;
        }
        friend-link:hover { background: rgba(52, 152, 219, 0.25); }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2c3e50;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        .update-time {
            background: rgba(231, 76, 60, 0.2);
            color: #e74c3c;
            padding: 10px 20px;
            border-radius: 20px;
            display: inline-block;
            margin: 20px 0;
            font-weight: bold;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(155, 89, 182, 0.1), rgba(52, 152, 219, 0.1));
            border-left: 5px solid #9b59b6;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .tag { display: inline-block; background: #34495e; color: #bdc3c7; padding: 5px 15px; border-radius: 20px; margin: 5px; font-size: 0.9rem; }
        .tag:hover { background: #4a6a8a; }
        @media (max-width: 768px) {
            .header-inner, .main-content, .footer-content { padding: 0 15px; }
            .article-content, .sidebar { padding: 20px; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .cast-grid { grid-template-columns: 1fr; }
            .internal-link-list ul { grid-template-columns: 1fr; }
        }
