        * { 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: #333;
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
            color: #f0f0f0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #ff66cc; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #ff99ff; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; color: #ffff66; }
        .emoji { font-size: 1.2em; }
        .section-padding { padding: 4rem 0; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .site-header {
            background-color: rgba(10, 10, 30, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff66cc;
            box-shadow: 0 5px 20px rgba(255, 102, 204, 0.2);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2rem;
            background: linear-gradient(90deg, #ff66cc, #ffff66);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(255, 102, 204, 0.5);
        }
        .my-logo:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }
        .main-nav a:hover {
            background-color: rgba(255, 102, 204, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffff66;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            background-color: rgba(20, 20, 50, 0.7);
        }
        .breadcrumb a { color: #ffff66; }
        .breadcrumb span { color: #aaa; }
        .main-content {
            flex: 1;
            background-color: rgba(15, 15, 35, 0.9);
            border-radius: 10px;
            margin: 2rem auto;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        article h1 {
            font-size: 3.2rem;
            background: linear-gradient(90deg, #ff66cc, #66ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
            text-align: center;
            line-height: 1.2;
        }
        article h2 {
            font-size: 2.5rem;
            color: #ffff66;
            border-left: 5px solid #ff66cc;
            padding-left: 1rem;
            margin: 3rem 0 1.5rem 0;
        }
        article h3 {
            font-size: 1.8rem;
            color: #66ffff;
            margin: 2.5rem 0 1rem 0;
        }
        article h4 {
            font-size: 1.4rem;
            color: #ff99ff;
            margin: 2rem 0 1rem 0;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            border-left: 4px solid #ffff66;
            padding-left: 1.5rem;
            background-color: rgba(255, 255, 102, 0.05);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin-bottom: 3rem;
        }
        .featured-image {
            width: 80%;
            margin: 3rem auto;
            border: 5px solid #ff66cc;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
        }
        .link-list {
            background-color: rgba(30, 30, 60, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .link-list h3 { color: #ffff66; margin-top: 0; }
        .link-list ul { list-style-position: inside; }
        .link-list li { margin-bottom: 0.8rem; }
        .interactive-module {
            background: linear-gradient(145deg, #1a1a3a, #0f0f2a);
            border: 2px solid #66ffff;
            border-radius: 15px;
            padding: 2.5rem;
            margin: 3rem 0;
            box-shadow: 0 10px 20px rgba(102, 255, 255, 0.1);
        }
        .module-title {
            color: #66ffff;
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        .search-form, .comment-form, .rating-form {
            display: grid;
            gap: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #ffff66;
        }
        .form-control {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border-radius: 10px;
            border: 2px solid #444;
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #ff66cc;
        }
        .btn {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #ff66cc, #ffff66);
            color: #000;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            justify-self: start;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 102, 204, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffff66;
        }
        .site-footer {
            background-color: #0a0a1a;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid #ff66cc;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #ffff66;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 102, 0.1);
            padding: 1rem;
            margin-bottom: 0.8rem;
            border-radius: 8px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: rgba(255, 255, 102, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        .update-time {
            color: #ff9966;
            font-weight: bold;
        }
        @media (max-width: 992px) {
            .main-nav ul { gap: 1rem; }
            article h1 { font-size: 2.8rem; }
            article h2 { font-size: 2.2rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 30, 0.98);
                padding: 1rem;
                border-top: 1px solid #ff66cc;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                text-align: center;
            }
            .header-content { padding: 0.8rem 0; }
            .main-content { padding: 1.5rem; margin: 1rem; }
            .featured-image { width: 95%; }
            .interactive-module { padding: 1.8rem; }
            article h1 { font-size: 2.3rem; }
            article h2 { font-size: 1.9rem; }
            article h3 { font-size: 1.6rem; }
        }
        @media (max-width: 480px) {
            .my-logo { font-size: 1.7rem; }
            article h1 { font-size: 2rem; }
            article h2 { font-size: 1.7rem; }
            .btn { width: 100%; }
            .footer-content { grid-template-columns: 1fr; }
        }
