* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #222;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a { color: #00a8ff; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #ffdd59; transform: translateY(-2px); }
        .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(15, 15, 20, 0.95); backdrop-filter: blur(10px); border-bottom: 2px solid #00a8ff; position: sticky; top: 0; z-index: 1000; }
        .header-content { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
        .my-logo a { font-size: 2.4rem; font-weight: 900; background: linear-gradient(90deg, #00a8ff, #ffdd59); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 15px rgba(0, 168, 255, 0.5); }
        .my-logo a:hover { text-shadow: 0 0 25px rgba(255, 221, 89, 0.7); }
        nav ul { display: flex; list-style: none; }
        nav ul li { margin-left: 30px; }
        nav ul li a { font-weight: 600; padding: 8px 12px; border-radius: 5px; }
        nav ul li a:hover { background: rgba(0, 168, 255, 0.1); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #00a8ff; }
        .breadcrumb { padding: 15px 0; color: #aaa; font-size: 0.9rem; }
        .breadcrumb a { color: #00a8ff; }
        .breadcrumb span { color: #ffdd59; }
        main { display: grid; grid-template-columns: 1fr 300px; gap: 40px; margin: 30px auto; }
        article { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border-radius: 15px; padding: 40px; border: 1px solid #333; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        aside { background: rgba(255, 255, 255, 0.03); border-radius: 10px; padding: 25px; border: 1px solid #444; align-self: start; position: sticky; top: 120px; }
        h1 { font-size: 3.2rem; color: #ffdd59; margin-bottom: 20px; text-shadow: 0 0 10px rgba(255, 221, 89, 0.3); border-left: 5px solid #00a8ff; padding-left: 15px; }
        h2 { font-size: 2.4rem; color: #00a8ff; margin: 35px 0 15px; padding-bottom: 10px; border-bottom: 2px dashed #444; }
        h3 { font-size: 1.8rem; color: #ffdd59; margin: 25px 0 10px; }
        h4 { font-size: 1.4rem; color: #aaa; margin: 20px 0 8px; }
        p { margin-bottom: 22px; color: #ddd; text-align: justify; }
        .highlight { background: rgba(255, 221, 89, 0.1); border-left: 4px solid #ffdd59; padding: 15px; margin: 20px 0; border-radius: 0 8px 8px 0; }
        strong { color: #ffdd59; }
        em { color: #00a8ff; font-style: italic; }
        ul, ol { margin-left: 25px; margin-bottom: 22px; color: #ddd; }
        li { margin-bottom: 10px; }
        img { max-width: 100%; height: auto; border-radius: 10px; border: 2px solid #444; margin: 25px 0; transition: transform 0.3s ease, box-shadow 0.3s ease; }
        img:hover { transform: scale(1.02); box-shadow: 0 10px 20px rgba(0, 168, 255, 0.3); }
        .update-time { display: inline-block; background: #00a8ff; color: #000; padding: 8px 15px; border-radius: 20px; font-weight: bold; margin-bottom: 25px; }
        .search-box, .comment-box, .rating-box { background: rgba(0, 0, 0, 0.3); padding: 25px; border-radius: 10px; margin: 35px 0; border: 1px solid #444; }
        .search-box h3, .comment-box h3, .rating-box h3 { margin-top: 0; }
        input, textarea, select { width: 100%; padding: 12px; margin: 10px 0; background: rgba(255, 255, 255, 0.1); border: 1px solid #555; border-radius: 6px; color: #fff; font-size: 1rem; }
        button { background: linear-gradient(90deg, #00a8ff, #0097e6); color: white; border: none; padding: 12px 25px; border-radius: 6px; cursor: pointer; font-weight: bold; transition: all 0.3s ease; }
        button:hover { background: linear-gradient(90deg, #0097e6, #00a8ff); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 168, 255, 0.4); }
        friend-link { display: block; background: rgba(0, 168, 255, 0.05); border: 1px solid #00a8ff; border-radius: 8px; padding: 15px; margin: 15px 0; text-align: center; }
        friend-link a { font-weight: bold; font-size: 1.1rem; }
        footer { background: rgba(10, 10, 15, 0.95); border-top: 2px solid #00a8ff; padding: 40px 0; margin-top: 50px; }
        .footer-content { text-align: center; color: #aaa; }
        .copyright { margin-top: 25px; font-size: 0.9rem; color: #666; }
        @media (max-width: 1024px) {
            main { grid-template-columns: 1fr; }
            aside { position: static; }
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            nav ul { display: none; flex-direction: column; width: 100%; background: rgba(15, 15, 20, 0.98); position: absolute; top: 70px; left: 0; padding: 20px; border-top: 1px solid #333; }
            nav ul.active { display: flex; }
            nav ul li { margin: 10px 0; }
            .hamburger { display: block; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            article { padding: 25px; }
        }
