        * { 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: #e0e0e0;
            background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #ffd43b; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 22, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #33335a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #ffd43b, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover { transform: scale(1.02); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(77, 171, 247, 0.15);
            color: #4dabf7;
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #2a2a4a;
            margin-bottom: 30px;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #ffd43b; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffd43b;
            cursor: pointer;
            padding: 5px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
            flex-grow: 1;
        }
        article { grid-column: 1; }
        aside { grid-column: 2; }
        article h1 {
            font-size: 2.8rem;
            color: #ffd43b;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.7);
            border-left: 5px solid #4dabf7;
            padding-left: 20px;
        }
        article h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #33335a;
        }
        article h3 {
            font-size: 1.6rem;
            color: #ffa94d;
            margin: 30px 0 15px;
        }
        article h4 {
            font-size: 1.3rem;
            color: #8ce99a;
            margin: 25px 0 10px;
        }
        article p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: #ffd43b;
            font-weight: 700;
        }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .highlight-box {
            background: rgba(26, 26, 46, 0.8);
            border-left: 4px solid #ff6b6b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dashed #4dabf7;
        }
        .feature-img {
            width: 100%;
            border-radius: 12px;
            border: 3px solid #44447a;
            margin: 30px auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .feature-img:hover { transform: scale(1.01); }
        aside {
            background: rgba(20, 20, 35, 0.8);
            border-radius: 12px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
            border: 1px solid #33335a;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            color: #ffa94d;
            margin-bottom: 18px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group { display: flex; flex-direction: column; }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #44447a;
            background: rgba(10,10,22,0.7);
            color: #e0e0e0;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2);
        }
        button, .btn {
            background: linear-gradient(90deg, #4dabf7, #339af0);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #339af0, #228be6);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(51, 154, 240, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #555;
            margin: 10px 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active { color: #ffd43b; }
        .site-footer {
            background: #0a0a16;
            border-top: 2px solid #33335a;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-links h4 {
            color: #ffd43b;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        friend-link {
            display: block;
            padding: 10px 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            margin-bottom: 10px;
            border-left: 3px solid #4dabf7;
        }
        friend-link a { color: #e0e0e0; }
        friend-link a:hover { color: #ffd43b; }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a2a4a;
            color: #aaa;
            font-size: 0.9rem;
        }
        .update-time {
            color: #8ce99a;
            font-weight: 600;
            margin-top: 10px;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
            aside { grid-column: 1; position: static; }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                flex-direction: column;
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: rgba(10,10,22,0.98);
                padding: 20px;
                transition: left 0.4s ease;
                z-index: 999;
                border-top: 1px solid #33335a;
            }
            .main-nav.active ul { left: 0; }
            .hamburger { display: block; }
            article h1 { font-size: 2.2rem; }
            article h2 { font-size: 1.8rem; }
            .my-logo { font-size: 1.8rem; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article > * { animation: fadeIn 0.6s ease forwards; }
