        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0ff;
            line-height: 1.7;
            min-height: 100vh;
            padding-bottom: 80px;
        }
        a {
            color: #6ee7ff;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.6);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: rgba(10, 10, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #6ee7ff;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 2rem;
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #6ee7ff, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            animation: logoGlow 1s ease infinite alternate;
        }
        @keyframes logoGlow {
            from { text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
            to { text-shadow: 0 0 20px #6ee7ff, 0 2px 4px rgba(0,0,0,0.3); }
        }
        .main-nav {
            display: flex;
            gap: 1.5rem;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            background: rgba(110, 231, 255, 0.1);
        }
        .main-nav a:hover {
            background: rgba(110, 231, 255, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6ee7ff;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
            }
            .main-nav.active { display: flex; }
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #6ee7ff;
        }
        .main-content {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(20, 25, 50, 0.7);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(110, 231, 255, 0.2);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #ffcc00;
            text-align: center;
            border-bottom: 3px solid #6ee7ff;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #6ee7ff;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed rgba(110, 231, 255, 0.4);
        }
        h3 {
            font-size: 1.6rem;
            color: #ff9966;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #99ffcc;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .featured-image {
            width: 80%;
            margin: 2rem auto;
            border-radius: 15px;
            overflow: hidden;
            border: 3px solid #6ee7ff;
            box-shadow: 0 0 25px rgba(110, 231, 255, 0.4);
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: #aaa;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #444;
        }
        aside {
            background: rgba(20, 25, 50, 0.7);
            border-radius: 20px;
            padding: 1.5rem;
            align-self: start;
            border: 1px solid rgba(110, 231, 255, 0.2);
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: #ffcc00;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border-radius: 10px;
            border: 1px solid #444;
            background: rgba(10, 15, 30, 0.8);
            color: #fff;
            font-size: 1rem;
        }
        button {
            padding: 0.8rem;
            border-radius: 10px;
            border: none;
            background: linear-gradient(90deg, #6ee7ff, #3399ff);
            color: #000;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(51, 153, 255, 0.4);
        }
        .stars {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .stars .active {
            color: #ffcc00;
        }
        footer {
            max-width: 1400px;
            margin: 4rem auto 0;
            padding: 2rem;
            text-align: center;
            border-top: 2px solid #6ee7ff;
            background: rgba(10, 10, 30, 0.8);
            border-radius: 20px 20px 0 0;
        }
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .friend-link {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(110, 231, 255, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(110, 231, 255, 0.3);
        }
        .friend-link:hover {
            background: rgba(110, 231, 255, 0.3);
            transform: scale(1.05);
        }
        .copyright {
            margin-top: 2rem;
            color: #aaa;
            font-size: 0.9rem;
        }
