        * { 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, #0c1a2a 0%, #1a2b3c 100%);
            background-attachment: fixed;
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #74c0fc; transform: translateY(-1px); }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
        .site-header {
            background: rgba(12, 26, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2d4059;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 5%;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffd43b, #fcc419);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover { background: rgba(77, 171, 247, 0.1); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #ffd43b; }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #0c1a2a;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #2d4059;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { padding: 0.8rem; border-bottom: 1px solid #1e2f47; }
        .breadcrumb {
            padding: 1rem 5%;
            background: rgba(30, 47, 71, 0.6);
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a:not(:last-child)::after { content: '›'; margin: 0 10px; color: #74c0fc; }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .main-container { grid-template-columns: 1fr; }
        }
        article { background: rgba(22, 34, 49, 0.8); padding: 2.5rem; border-radius: 15px; border: 1px solid #3a506b; }
        h1 { color: #ffd43b; font-size: 3rem; margin-bottom: 1.5rem; text-align: center; border-bottom: 3px solid #fcc419; padding-bottom: 1rem; }
        h2 { color: #74c0fc; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px dashed #3a506b; }
        h3 { color: #a5d8ff; margin: 1.8rem 0 0.8rem; }
        h4 { color: #d0ebff; margin: 1.5rem 0 0.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        strong { color: #ffd43b; }
        em { color: #a5d8ff; }
        .highlight-box {
            background: linear-gradient(145deg, #1c2e42, #2d4059);
            border-left: 5px solid #fcc419;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .featured-img {
            width: 80%;
            margin: 2.5rem auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            border: 3px solid #3a506b;
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: #adb5bd;
            font-size: 0.9rem;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #3a506b;
        }
        aside { background: rgba(22, 34, 49, 0.8); padding: 1.5rem; border-radius: 15px; border: 1px solid #3a506b; align-self: start; position: sticky; top: 120px; }
        .widget { margin-bottom: 2rem; }
        .widget h3 { color: #ffd43b; font-size: 1.3rem; margin-bottom: 1rem; }
        .search-form { display: flex; }
        .search-form input { flex: 1; padding: 0.8rem; border: 1px solid #3a506b; background: #0c1a2a; color: #e0e0e0; border-radius: 5px 0 0 5px; }
        .search-form button { background: #2d4059; color: white; border: none; padding: 0 1.2rem; cursor: pointer; border-radius: 0 5px 5px 0; transition: background 0.3s; }
        .search-form button:hover { background: #3a506b; }
        .rating-form, .comment-form { display: flex; flex-direction: column; gap: 1rem; }
        .rating-form input, .comment-form textarea, .comment-form input { padding: 0.8rem; border: 1px solid #3a506b; background: #0c1a2a; color: #e0e0e0; border-radius: 5px; }
        .rating-stars { display: flex; justify-content: space-around; font-size: 1.5rem; color: #495057; cursor: pointer; }
        .rating-stars .active { color: #ffd43b; }
        .btn-submit { background: linear-gradient(90deg, #2d4059, #3a506b); color: white; border: none; padding: 0.8rem; border-radius: 5px; cursor: pointer; font-weight: bold; transition: transform 0.2s; }
        .btn-submit:hover { transform: scale(1.03); }
        footer {
            background: rgba(12, 26, 42, 0.95);
            border-top: 2px solid #2d4059;
            padding: 2rem 5%;
            margin-top: 4rem;
            text-align: center;
        }
        .footer-content { max-width: 1400px; margin: 0 auto; }
        friend-link { display: block; margin: 1rem 0; font-size: 1.1rem; }
        friend-link a { color: #a5d8ff; }
        .copyright { margin-top: 2rem; color: #adb5bd; font-size: 0.9rem; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            h1 { font-size: 2.2rem; }
            article { padding: 1.5rem; }
            .main-container { gap: 2rem; }
            .featured-img { width: 100%; }
        }
