* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0b0e;
            color: #e8e6e3;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: #141418;
            border-bottom: 2px solid #f5c54233;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c542, #e63946);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            font-family: 'Impact', 'Arial Black', sans-serif;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 2px;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8e6e3;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
        }
        nav {
            display: flex;
            gap: 28px;
            align-items: center;
        }
        nav a {
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            color: #ccc;
            transition: color 0.2s;
        }
        nav a:hover {
            color: #f5c542;
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 0.85rem;
            color: #999;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: #bbb;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb span {
            color: #f5c542;
        }
        main {
            padding: 32px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            margin: 0 0 12px;
            background: linear-gradient(135deg, #f5c542, #e63946);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            border-left: 5px solid #e63946;
            padding-left: 18px;
            color: #f0edea;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 36px 0 12px;
            color: #f5c542;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #ddd;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 32px;
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 28px;
            padding: 12px 0;
            border-top: 1px solid #2a2a30;
            border-bottom: 1px solid #2a2a30;
        }
        .meta-info i {
            margin-right: 6px;
            color: #f5c542;
        }
        .banner-img {
            border-radius: 16px;
            margin: 24px 0 32px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            width: 100%;
            background: #1e1e24;
        }
        .cast-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
            margin: 32px 0;
        }
        .cast-card {
            background: #1a1a22;
            border-radius: 14px;
            padding: 20px 18px;
            border: 1px solid #2f2f3a;
            transition: transform 0.25s, box-shadow 0.3s, border-color 0.3s;
        }
        .cast-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(229, 57, 70, 0.18);
            border-color: #e6394680;
        }
        .cast-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .cast-card h3 i {
            color: #e63946;
            margin-right: 8px;
        }
        .cast-card p {
            font-size: 0.95rem;
            color: #c8c6c2;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 48px 0;
        }
        .interactive-card {
            background: #18181f;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #2a2a35;
        }
        .interactive-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .interactive-card input,
        .interactive-card textarea,
        .interactive-card select {
            width: 100%;
            padding: 12px 16px;
            margin: 8px 0 16px;
            background: #121216;
            border: 1px solid #333;
            border-radius: 10px;
            color: #e8e6e3;
            font-size: 0.95rem;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .interactive-card input:focus,
        .interactive-card textarea:focus,
        .interactive-card select:focus {
            border-color: #f5c542;
            outline: none;
        }
        .interactive-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .btn {
            background: #e63946;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #c5303c;
            transform: scale(1.02);
        }
        .btn-secondary {
            background: #2a2a35;
            color: #e8e6e3;
        }
        .btn-secondary:hover {
            background: #3a3a48;
        }
        friend-link {
            display: block;
            padding: 28px 0 18px;
            border-top: 1px solid #2a2a30;
            margin-top: 40px;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
            color: #bbb;
        }
        friend-link a:hover {
            color: #f5c542;
        }
        friend-link::before {
            content: "🔗 Friends & Links";
            display: block;
            font-weight: 600;
            color: #f5c542;
            font-size: 1rem;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        footer {
            background: #0f0f13;
            border-top: 1px solid #1f1f2a;
            padding: 32px 0 24px;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }
        footer .copyright {
            margin-top: 12px;
            letter-spacing: 0.3px;
        }
        footer .copyright i {
            color: #e63946;
        }
        @media (max-width: 900px) {
            .interactive-section {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .header-inner {
                padding: 12px 0;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 640px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding: 12px 0 8px;
                background: #141418;
                border-top: 1px solid #2a2a30;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 0;
                border-bottom: 1px solid #1f1f28;
                width: 100%;
            }
            h1 {
                font-size: 1.8rem;
            }
            .cast-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 16px;
            }
            .meta-info {
                flex-direction: column;
                gap: 6px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 8px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
            transform: scale(1.1);
        }
        .text-highlight {
            color: #f5c542;
            font-weight: 600;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, #e6394680, #f5c54280, transparent);
            margin: 40px 0;
            border: none;
        }
        .badge {
            display: inline-block;
            background: #e6394620;
            border: 1px solid #e6394660;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #f5c542;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #aaa;
            font-size: 0.85rem;
        }
        .last-updated i {
            color: #f5c542;
        }
        @media (max-width: 480px) {
            .btn {
                width: 100%;
                justify-content: center;
            }
            .interactive-card {
                padding: 20px 16px;
            }
        }
