        * {
            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, #0a0a0f 0%, #1a1a2e 100%);
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            padding-bottom: 10px;
            border-bottom: 3px solid #33334d;
        }
        h2 {
            font-size: 2rem;
            color: #4ecdc4;
            padding-left: 10px;
            border-left: 5px solid #ff6b6b;
        }
        h3 {
            font-size: 1.6rem;
            color: #ffd166;
        }
        h4 {
            font-size: 1.3rem;
            color: #9d9dff;
        }
        p {
            margin-bottom: 1.2em;
            text-align: justify;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #b0b0ff;
            font-weight: 300;
            margin-bottom: 2em;
        }
        strong {
            color: #ffd166;
            font-weight: 700;
        }
        em {
            color: #a5d8ff;
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid #ff6b6b;
            padding-left: 20px;
            margin: 2em 0;
            color: #c0c0ff;
            font-style: italic;
            background: rgba(255, 107, 107, 0.05);
            padding: 15px 20px;
            border-radius: 0 8px 8px 0;
        }
        header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #33334d;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .my-logo i {
            margin-right: 10px;
            font-size: 2.5rem;
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.02);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: #e0e0ff;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background: rgba(78, 205, 196, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #4ecdc4;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 15px 0;
            color: #8888cc;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #8888cc;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #33334d;
        }
        .info-box {
            background: linear-gradient(145deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            border-left: 5px solid #4ecdc4;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-size: 0.9rem;
            color: #aaaacc;
            margin-top: 10px;
            font-style: italic;
        }
        .update-time {
            text-align: right;
            font-size: 0.9rem;
            color: #8888cc;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px dashed #444466;
        }
        aside {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            border: 1px solid #33334d;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #ff6b6b;
            padding-bottom: 8px;
            border-bottom: 2px solid #444466;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            background: rgba(255, 255, 255, 0.1);
            color: #e0e0ff;
            font-size: 1rem;
        }
        .search-box button {
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            border: none;
            color: white;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(45deg, #ff5252, #ff7b7b);
        }
        .rating-widget, .comment-widget {
            background: rgba(40, 40, 60, 0.5);
            padding: 20px;
            border-radius: 10px;
        }
        .stars {
            display: flex;
            justify-content: center;
            margin: 15px 0;
        }
        .stars i {
            font-size: 1.8rem;
            color: #444466;
            margin: 0 3px;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i.active, .stars i:hover {
            color: #ffd166;
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
        }
        .rating-widget label, .comment-widget label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #b0b0ff;
        }
        .rating-widget input, .comment-widget input, .comment-widget textarea {
            padding: 12px 15px;
            margin-bottom: 15px;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: #e0e0ff;
            font-size: 1rem;
        }
        .comment-widget textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background: linear-gradient(45deg, #4ecdc4, #6fffe0);
            color: #0a0a0f;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-submit:hover {
            background: linear-gradient(45deg, #3dbcb3, #5eefd0);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #33334d;
        }
        .related-links a {
            display: block;
            padding: 8px 10px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.05);
        }
        .related-links a:hover {
            background: rgba(78, 205, 196, 0.2);
            text-decoration: none;
            padding-left: 15px;
        }
        footer {
            background: rgba(10, 10, 15, 0.98);
            border-top: 1px solid #33334d;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        friend-link {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        friend-link a {
            color: #ffd166;
            padding: 8px 15px;
            border: 1px solid #444466;
            border-radius: 8px;
            background: rgba(255, 209, 102, 0.05);
        }
        friend-link a:hover {
            background: rgba(255, 209, 102, 0.15);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            color: #8888cc;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #33334d;
            width: 100%;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                justify-content: space-between;
                margin-top: 15px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(26, 26, 46, 0.95);
                border-radius: 10px;
                padding: 20px;
                margin-top: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            .article-content, aside {
                padding: 20px;
            }
        }
