        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        html { scroll-behavior: smooth; }
        body { background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%); color: #e0e0e0; line-height: 1.7; overflow-x: hidden; }
        a { color: #00b4ff; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ffcc00; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; border-radius: 8px; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        section { margin-bottom: 3rem; }
        header { background: rgba(10, 10, 20, 0.95); backdrop-filter: blur(10px); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #00b4ff; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-size: 2.2rem; font-weight: 900; background: linear-gradient(to right, #00b4ff, #ffcc00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 2px 10px rgba(0, 180, 255, 0.3); }
        .my-logo:hover { transform: scale(1.05); }
        nav { display: flex; align-items: center; }
        .nav-links { display: flex; list-style: none; }
        .nav-links li { margin-left: 2rem; }
        .nav-links a { font-weight: 600; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #00b4ff; }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; color: #aaa; }
        .breadcrumb a:not(:last-child)::after { content: '›'; margin: 0 10px; }
        main { padding: 2rem 0; }
        h1 { font-size: 3.2rem; margin-bottom: 1.5rem; background: linear-gradient(90deg, #ffcc00, #00b4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2; }
        h2 { font-size: 2.4rem; margin: 2.5rem 0 1rem; color: #ffcc00; border-left: 5px solid #00b4ff; padding-left: 15px; }
        h3 { font-size: 1.8rem; margin: 2rem 0 1rem; color: #00b4ff; }
        h4 { font-size: 1.4rem; margin: 1.5rem 0 0.8rem; color: #aaa; }
        p { margin-bottom: 1.2rem; font-size: 1.1rem; text-align: justify; }
        .highlight { background: rgba(0, 180, 255, 0.1); border-left: 4px solid #ffcc00; padding: 1.2rem; margin: 1.5rem 0; border-radius: 0 8px 8px 0; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .feature-img { width: 100%; max-height: 500px; object-fit: cover; margin: 2rem 0; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7); border: 2px solid #00b4ff; }
        .content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
        .card { background: rgba(30, 30, 46, 0.8); padding: 1.5rem; border-radius: 12px; border: 1px solid #333; transition: transform 0.3s, box-shadow 0.3s; }
        .card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 180, 255, 0.2); }
        .tag { display: inline-block; background: #ffcc00; color: #000; padding: 0.3rem 0.8rem; border-radius: 20px; font-weight: bold; margin-right: 0.5rem; margin-bottom: 0.5rem; font-size: 0.9rem; }
        .search-box, .comment-form, .rating-form { background: rgba(20, 20, 40, 0.9); padding: 2rem; border-radius: 12px; margin: 2rem 0; border: 1px solid #444; }
        form { display: flex; flex-wrap: wrap; gap: 1rem; }
        input, textarea, select { flex: 1; min-width: 250px; padding: 0.8rem 1rem; background: #111; border: 1px solid #444; border-radius: 6px; color: #fff; font-size: 1rem; }
        button, .btn { background: linear-gradient(90deg, #00b4ff, #0066ff); color: white; border: none; padding: 0.8rem 2rem; border-radius: 6px; cursor: pointer; font-weight: bold; font-size: 1rem; transition: all 0.3s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
        button:hover, .btn:hover { background: linear-gradient(90deg, #ffcc00, #ff9900); transform: scale(1.05); }
        .stars { display: flex; gap: 5px; margin: 1rem 0; }
        .star { font-size: 1.8rem; color: #444; cursor: pointer; transition: color 0.2s; }
        .star:hover, .star.active { color: #ffcc00; }
        .update-time { text-align: right; font-style: italic; color: #888; margin-top: 2rem; padding-top: 1rem; border-top: 1px dashed #444; }
        footer { background: #0a0a14; padding: 3rem 0 1.5rem; margin-top: 3rem; border-top: 2px solid #ffcc00; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
        friend-link { display: block; background: rgba(255, 204, 0, 0.1); padding: 1rem; border-radius: 8px; margin-bottom: 0.5rem; border: 1px solid rgba(255, 204, 0, 0.3); }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #333; color: #888; font-size: 0.9rem; }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .header-content { flex-wrap: wrap; }
            .nav-links { display: none; flex-direction: column; width: 100%; background: rgba(10, 10, 20, 0.98); position: absolute; top: 100%; left: 0; padding: 1rem; border-top: 1px solid #333; }
            .nav-links.active { display: flex; }
            .nav-links li { margin: 0.8rem 0; }
            .hamburger { display: block; }
            .breadcrumb { font-size: 0.8rem; }
        }
