        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-image: radial-gradient(ellipse at 20% 50%, rgba(25, 45, 75, 0.4) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(60, 30, 20, 0.3) 0%, transparent 60%);
            background-attachment: fixed;
        }
        a {
            color: #f0c45a;
            text-decoration: none;
            transition: color 0.2s, text-shadow 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-shadow: 0 0 8px rgba(240, 196, 90, 0.25);
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.25;
            color: #f5f7fc;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
            background: linear-gradient(135deg, #f5c842, #e89b3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.4rem;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid rgba(240, 196, 90, 0.25);
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
            color: #f0d78a;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #d4c29a;
            font-weight: 500;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #0f141c;
            border-bottom: 1px solid rgba(240, 196, 90, 0.15);
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            background: rgba(15, 20, 28, 0.92);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.2rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f5c842, #e89b3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c45a;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            text-shadow: 0 0 20px rgba(240, 196, 90, 0.3);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0c45a;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(240, 196, 90, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem 1.8rem;
            flex-wrap: wrap;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            color: #c8d0dd;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #f0c45a;
            border-bottom-color: #f0c45a;
        }
        .nav-menu li a i {
            font-size: 0.8rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            color: #8a95a8;
            padding: 0.6rem 0 0.2rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "/";
            margin-right: 0.6rem;
            color: #555e6e;
        }
        .breadcrumb a {
            color: #a8b4c8;
        }
        .breadcrumb a:hover {
            color: #f0c45a;
        }
        .breadcrumb .current {
            color: #d4c29a;
        }
        .search-section {
            background: #151d27;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            margin: 1.6rem 0 2rem;
            border: 1px solid rgba(240, 196, 90, 0.1);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1 1 220px;
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            border: 1px solid #2a3545;
            background: #0f141c;
            color: #e8edf5;
            font-size: 0.95rem;
            transition: border 0.2s, box-shadow 0.2s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0c45a;
            box-shadow: 0 0 0 3px rgba(240, 196, 90, 0.15);
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f0c45a, #d4942e);
            color: #0b0e14;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 16px rgba(240, 196, 90, 0.3);
        }
        .content-card {
            background: #111821;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin-bottom: 1.8rem;
            border: 1px solid rgba(240, 196, 90, 0.06);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            transition: border-color 0.2s;
        }
        .content-card:hover {
            border-color: rgba(240, 196, 90, 0.15);
        }
        .cast-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.2rem 0;
        }
        .cast-item {
            background: #0f141c;
            border-radius: 12px;
            padding: 1rem 0.8rem 0.8rem;
            text-align: center;
            border: 1px solid #1b2532;
            transition: transform 0.15s, border-color 0.2s;
        }
        .cast-item:hover {
            transform: translateY(-3px);
            border-color: #f0c45a;
        }
        .cast-item i {
            font-size: 2.4rem;
            color: #f0c45a;
            margin-bottom: 0.4rem;
        }
        .cast-item .actor-name {
            font-weight: 600;
            color: #f5f7fc;
            display: block;
        }
        .cast-item .role-name {
            font-size: 0.85rem;
            color: #a8b4c8;
        }
        .rating-section {
            display: flex;
            align-items: center;
            gap: 1rem 2rem;
            flex-wrap: wrap;
            margin: 1.2rem 0;
        }
        .stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #3d4a5a;
            cursor: pointer;
        }
        .stars i {
            transition: color 0.15s, transform 0.1s;
        }
        .stars i.active,
        .stars i:hover,
        .stars i:hover~i {
            color: #f0c45a;
        }
        .stars i:hover {
            transform: scale(1.15);
        }
        .rating-form button {
            background: #f0c45a;
            border: none;
            padding: 0.5rem 1.6rem;
            border-radius: 30px;
            font-weight: 600;
            color: #0b0e14;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .rating-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            border: 1px solid #2a3545;
            background: #0f141c;
            color: #e8edf5;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            transition: border 0.2s;
            outline: none;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #f0c45a;
            box-shadow: 0 0 0 3px rgba(240, 196, 90, 0.1);
        }
        .comment-form .form-actions {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 0.6rem;
        }
        .comment-form .form-actions input[type="text"] {
            flex: 1 1 180px;
            padding: 0.6rem 1rem;
            border-radius: 30px;
            border: 1px solid #2a3545;
            background: #0f141c;
            color: #e8edf5;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form .form-actions input[type="text"]:focus {
            border-color: #f0c45a;
        }
        .comment-form .form-actions button {
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f0c45a, #d4942e);
            color: #0b0e14;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.2s;
        }
        .comment-form .form-actions button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 16px rgba(240, 196, 90, 0.2);
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
            border-top: 1px solid rgba(240, 196, 90, 0.1);
            margin-top: 1.2rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            color: #a8b4c8;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #f0c45a;
        }
        .site-footer {
            background: #0a0e14;
            border-top: 1px solid rgba(240, 196, 90, 0.08);
            padding: 1.6rem 0;
            margin-top: auto;
            text-align: center;
            font-size: 0.85rem;
            color: #6a7588;
        }
        .site-footer .copyright {
            margin-top: 0.4rem;
            letter-spacing: 0.02em;
        }
        .last-updated {
            display: inline-block;
            font-size: 0.8rem;
            color: #7a8598;
            background: rgba(240, 196, 90, 0.06);
            padding: 0.15rem 1rem;
            border-radius: 30px;
            margin-bottom: 0.6rem;
        }
        .featured-image {
            border-radius: 16px;
            overflow: hidden;
            margin: 1.2rem 0 1.8rem;
            background: #151d27;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            min-height: 200px;
            background: #1b2532;
        }
        .featured-image .img-caption {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
            color: #8a95a8;
            background: #0f141c;
            text-align: center;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.4rem;
                padding: 0.8rem 0 0.4rem;
                border-top: 1px solid rgba(240, 196, 90, 0.1);
                margin-top: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.5rem 0;
                width: 100%;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .content-card {
                padding: 1.2rem 1rem;
            }
            .cast-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
                gap: 0.8rem;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-section {
                padding: 1.2rem 1rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            .rating-section {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @media (max-width: 480px) {
            .cast-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
            .cast-item i {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3545;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3d4a5a;
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(240, 196, 90, 0.08);
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .highlight {
            color: #f0c45a;
            font-weight: 500;
        }
        .small {
            font-size: 0.85rem;
            color: #8a95a8;
        }
        hr {
            border: none;
            border-top: 1px solid rgba(240, 196, 90, 0.08);
            margin: 1.6rem 0;
        }
