* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f1a;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff9900;
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
            padding: 20px 0;
            border-bottom: 3px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
            background: none;
            border: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background-color: rgba(255, 204, 0, 0.15);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaaacc;
            border-bottom: 1px solid #333355;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #aaaacc;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .search-container {
            margin: 30px auto;
            max-width: 700px;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        }
        .search-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            background-color: #222244;
            color: #e0e0ff;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background: linear-gradient(to right, #ffcc00, #ff9900);
            color: #1a1a2e;
            border: none;
            padding: 0 30px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #ff9900, #ff6600);
        }
        main {
            padding: 40px 0;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: #ffcc00;
            text-align: center;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
        }
        h2 {
            font-size: 2.4rem;
            margin: 45px 0 20px;
            color: #ccbbff;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.9rem;
            margin: 35px 0 15px;
            color: #aaccff;
        }
        h4 {
            font-size: 1.5rem;
            margin: 25px 0 10px;
            color: #88ddff;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .content-highlight {
            background: linear-gradient(90deg, rgba(255,204,0,0.1) 0%, rgba(255,204,0,0.05) 100%);
            border-left: 4px solid #ffcc00;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .content-highlight p {
            margin-bottom: 0;
            font-size: 1.2rem;
            color: #ffffcc;
        }
        .image-container {
            margin: 40px auto;
            text-align: center;
            max-width: 900px;
        }
        .image-container img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
            border: 2px solid #ffcc00;
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #aaaacc;
            font-size: 1rem;
        }
        .update-time {
            text-align: center;
            font-size: 1rem;
            color: #88ddff;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px dashed #444466;
        }
        .link-list {
            background-color: #1a1a2e;
            padding: 25px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .link-list h3 {
            color: #ffcc00;
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
        }
        .link-list li {
            padding: 12px;
            background-color: #222244;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }
        .link-list li:hover {
            background-color: #2a2a55;
        }
        .link-list li a {
            display: block;
            font-size: 1.1rem;
        }
        .link-list li a::before {
            content: "🎬";
            margin-right: 10px;
        }
        .interaction-section {
            background-color: #1a1a2e;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        .interaction-section h2 {
            text-align: center;
            border: none;
            color: #ffcc00;
        }
        .rating-form, .comment-form {
            margin-top: 30px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2.5rem;
            color: #444466;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #ccbbff;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            background-color: #222244;
            border: 1px solid #444466;
            border-radius: 10px;
            color: #e0e0ff;
            font-size: 1.1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #ffcc00;
        }
        .form-group textarea {
            min-height: 180px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #ffcc00, #ff9900);
            color: #1a1a2e;
            border: none;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 10px;
            cursor: pointer;
            display: block;
            margin: 30px auto 0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #ff9900, #ff6600);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 204, 0, 0.5);
        }
        footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #0a0a14 100%);
            padding: 50px 0 20px;
            border-top: 3px solid #ffcc00;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .footer-section p, .footer-section a {
            color: #aaaacc;
            margin-bottom: 12px;
            display: block;
        }
        friend-link {
            display: block;
            background-color: #222244;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
            font-weight: bold;
            font-size: 1.2rem;
            border: 1px solid #444466;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background-color: #2a2a55;
            border-color: #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333355;
            color: #8888aa;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            nav ul { gap: 15px; }
        }
        @media (max-width: 768px) {
            .header-content { flex-direction: column; text-align: center; gap: 20px; }
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
                gap: 10px;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li a {
                display: block;
                padding: 15px;
                background-color: #222244;
                border-radius: 8px;
            }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .interaction-section { padding: 25px; }
            .link-list ul { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .my-logo { font-size: 2.2rem; }
            .search-form input { padding: 15px; }
            .submit-btn { width: 100%; }
        }
