        * { 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, #f5f7fa 0%, #c3cfe2 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #2c3e50; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #e74c3c; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #1a1a2e;
            color: #fff;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .my-logo a { color: inherit; }
        .my-logo a:hover { opacity: 0.9; }
        nav { display: flex; align-items: center; }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: #ecf0f1;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.1);
            color: #00dbde;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ecf0f1;
        }
        .breadcrumb {
            background: #2c3e50;
            color: #bdc3c7;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #ecf0f1; }
        .breadcrumb a:hover { text-decoration: underline; }
        main { flex: 1; padding: 2rem 0; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        article {
            background: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #00dbde;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin: 2.5rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #fc00ff;
        }
        h3 {
            font-size: 1.6rem;
            color: #34495e;
            margin: 2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #7f8c8d;
            margin: 1.5rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #f8f9fa;
            border-left: 4px solid #3498db;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        strong { color: #2c3e50; }
        .image-wrapper {
            margin: 2rem auto;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .image-wrapper img {
            width: 100%;
            transition: transform 0.5s;
        }
        .image-wrapper img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #7f8c8d;
            padding: 0.8rem;
            background: #f8f9fa;
            font-size: 0.95rem;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: #edf2f7;
            border-radius: 10px;
        }
        .link-list a {
            display: block;
            padding: 0.8rem;
            background: #fff;
            border-radius: 6px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .link-list a:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
            background: #2c3e50;
            color: #fff;
        }
        aside {
            background: #fff;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #1a1a2e;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #ccc;
        }
        .search-box {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem;
            border: 2px solid #bdc3c7;
            border-right: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background: #2c3e50;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover { background: #1a1a2e; }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form label, .comment-form label {
            font-weight: 600;
            color: #2c3e50;
        }
        .rating-form input, .comment-form input,
        .comment-form textarea {
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        .rating-form input:focus, .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #00dbde;
            outline: none;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #f1c40f;
            margin: 0.5rem 0;
        }
        .stars i { cursor: pointer; }
        .btn {
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .update-time {
            font-size: 0.9rem;
            color: #7f8c8d;
            text-align: center;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 6px;
            margin-top: 2rem;
        }
        footer {
            background: #1a1a2e;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: #00dbde;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: #bdc3c7; }
        .footer-links a:hover { color: #00dbde; }
        friend-link {
            display: block;
            background: #2c3e50;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        friend-link a {
            color: #00dbde;
            font-weight: 700;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2c3e50;
            color: #95a5a6;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            .hamburger { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active { display: flex; }
            .nav-links li { text-align: center; margin: 0.5rem 0; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 1.8rem; }
            .content-wrapper { gap: 1.5rem; }
        }
