        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a12;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #6ea6ff;
            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.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid #222244;
        }
        header {
            background: linear-gradient(135deg, #121225 0%, #1a1a35 100%);
            padding: 20px 0;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.4rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffcc00, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.2);
        }
        .my-logo:hover {
            animation: logo-pulse 0.5s ease;
        }
        @keyframes logo-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background-color: rgba(110, 166, 255, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6ea6ff;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaaacc;
        }
        .breadcrumb a {
            color: #aaaacc;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        .hero {
            background: radial-gradient(circle at 20% 50%, #1a1a35, #0a0a12);
            padding: 80px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #e0e0ff, #6ea6ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #ccccff;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto 0;
            display: flex;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-box input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background-color: #1e1e3a;
            color: #fff;
            font-size: 1.1rem;
        }
        .search-box button {
            background: linear-gradient(90deg, #ff6b6b, #ffcc00);
            color: #0a0a12;
            border: none;
            padding: 0 35px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-box button:hover {
            transform: scale(1.05);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 50px;
            margin-top: 40px;
        }
        main article {
            background-color: rgba(18, 18, 37, 0.7);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            margin-bottom: 40px;
        }
        h1, h2, h3, h4 {
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            color: #ffffff;
            line-height: 1.3;
        }
        h1 { font-size: 3rem; }
        h2 {
            font-size: 2.3rem;
            color: #ffcc00;
            padding-bottom: 10px;
            border-bottom: 2px solid #333366;
        }
        h3 {
            font-size: 1.8rem;
            color: #6ea6ff;
        }
        h4 {
            font-size: 1.4rem;
            color: #cc99ff;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: #ccccff;
            background-color: rgba(30, 30, 58, 0.5);
            padding: 25px;
            border-left: 5px solid #ffcc00;
            border-radius: 0 10px 10px 0;
            margin-bottom: 2.5em;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a1a35, #222244);
            border: 1px solid #444477;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
        }
        .img-container {
            margin: 40px auto;
            text-align: center;
        }
        .img-container img {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-style: italic;
            color: #aaaacc;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 1.5em;
        }
        li {
            margin-bottom: 0.8em;
        }
        blockquote {
            border-left: 4px solid #ff6b6b;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #ccccff;
            background-color: rgba(255, 107, 107, 0.05);
            padding-top: 15px;
            padding-bottom: 15px;
            border-radius: 0 8px 8px 0;
        }
        .keyword {
            font-weight: bold;
            color: #ffcc00;
            background-color: rgba(255, 204, 0, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }
        .update-time {
            font-size: 0.9rem;
            color: #88ff88;
            background-color: rgba(136, 255, 136, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 30px;
        }
        aside {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-widget {
            background-color: rgba(18, 18, 37, 0.9);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #333366;
        }
        .sidebar-widget h3 {
            margin-top: 0;
            font-size: 1.5rem;
            color: #ffcc00;
            padding-bottom: 15px;
            border-bottom: 1px solid #333366;
        }
        .rating-widget input[type="radio"] {
            display: none;
        }
        .rating-widget label {
            font-size: 2rem;
            color: #444477;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget input:checked ~ label,
        .rating-widget label:hover,
        .rating-widget label:hover ~ label {
            color: #ffcc00;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background-color: #1e1e3a;
            border: 1px solid #444477;
            border-radius: 8px;
            color: #fff;
        }
        .comment-form button {
            background: linear-gradient(90deg, #6ea6ff, #cc99ff);
            color: #0a0a12;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: transform 0.3s;
        }
        .comment-form button:hover {
            transform: translateY(-3px);
        }
        .link-list {
            list-style: none;
            margin-left: 0;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .link-list li:before {
            content: '🔗';
            position: absolute;
            left: 0;
            top: 2px;
        }
        footer {
            background: linear-gradient(180deg, #121225 0%, #0a0a12 100%);
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffcc00;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: #6ea6ff;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background-color: rgba(30, 30, 58, 0.7);
            border-radius: 8px;
            margin-bottom: 10px;
            border-left: 4px solid #ff6b6b;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333366;
            color: #8888aa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            .hero h1 { font-size: 3rem; }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #1a1a35;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            main article { padding: 25px; }
            .search-box {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-box input,
            .search-box button {
                border-radius: 0;
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .hero { padding: 50px 0; }
            .lead { font-size: 1.2rem; }
        }
