        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: #0f0f1a;
            background-image: radial-gradient(circle at 20% 30%, rgba(60, 20, 120, 0.15) 0%, transparent 20%), radial-gradient(circle at 80% 80%, rgba(20, 80, 160, 0.1) 0%, transparent 20%);
            overflow-x: hidden;
        }
        a { color: #6ea8ff; text-decoration: none; transition: color 0.3s, border-color 0.3s; }
        a:hover { color: #9cc5ff; border-color: #9cc5ff; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .text-center { text-align: center; }
        .bold { font-weight: 700; color: #ffffff; }
        .highlight { background: linear-gradient(90deg, transparent 0%, rgba(110, 168, 255, 0.15) 50%, transparent 100%); padding: 2px 8px; border-left: 3px solid #6ea8ff; }
        .emoji { margin-right: 5px; }
        .last-update { font-size: 0.9em; color: #aaa; font-style: italic; margin-top: 20px; padding-top: 10px; border-top: 1px dashed #444; }
        .site-header { background: rgba(15, 15, 26, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #2a2a3e; position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo a { font-size: 1.8rem; font-weight: 900; background: linear-gradient(135deg, #6ea8ff, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.5px; }
        .logo span { font-size: 1rem; color: #aaa; font-weight: 400; }
        .main-nav ul { display: flex; list-style: none; gap: 25px; }
        .main-nav a { color: #ccc; font-weight: 500; padding: 5px 0; border-bottom: 2px solid transparent; }
        .main-nav a:hover, .main-nav a.active { color: #fff; border-bottom-color: #6ea8ff; }
        .hamburger { display: none; font-size: 1.5rem; background: none; border: none; color: #ccc; cursor: pointer; }
        .breadcrumb { padding: 15px 0; font-size: 0.9rem; color: #888; border-bottom: 1px solid #2a2a3e; }
        .breadcrumb a { color: #aaa; }
        .breadcrumb span { color: #6ea8ff; }
        main { padding: 40px 0; min-height: 80vh; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        article h1 { font-size: 2.8rem; margin-bottom: 1.5rem; background: linear-gradient(to right, #fff, #6ea8ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2; }
        article h2 { font-size: 2rem; margin: 2.5rem 0 1rem; color: #fff; padding-bottom: 10px; border-bottom: 2px solid #3a3a5e; }
        article h3 { font-size: 1.5rem; margin: 2rem 0 1rem; color: #d0d0ff; }
        article h4 { font-size: 1.2rem; margin: 1.5rem 0 0.8rem; color: #b0b0ff; }
        article p { margin-bottom: 1.5rem; color: #ccccdd; text-align: justify; }
        article ul, article ol { margin: 1rem 0 1.5rem 2rem; }
        article li { margin-bottom: 0.5rem; }
        .featured-img { width: 100%; border-radius: 10px; border: 2px solid #3a3a5e; margin: 2rem 0; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }
        .sidebar-widget { background: rgba(30, 30, 46, 0.7); border-radius: 10px; padding: 25px; margin-bottom: 30px; border: 1px solid #3a3a5e; }
        .sidebar-widget h3 { font-size: 1.3rem; margin-bottom: 15px; color: #fff; }
        .search-form { display: flex; }
        .search-form input { flex-grow: 1; padding: 12px 15px; background: #1a1a2e; border: 1px solid #444; border-radius: 5px 0 0 5px; color: #fff; }
        .search-form button { background: #3a5fff; color: white; border: none; padding: 0 20px; border-radius: 0 5px 5px 0; cursor: pointer; }
        .search-form button:hover { background: #5a7fff; }
        .rating-form .stars { margin: 10px 0; display: flex; gap: 5px; }
        .rating-form .stars i { color: #555; cursor: pointer; font-size: 1.5rem; transition: color 0.2s; }
        .rating-form .stars i:hover, .rating-form .stars i.active { color: #ffcc00; }
        .comment-form textarea { width: 100%; height: 120px; padding: 12px; background: #1a1a2e; border: 1px solid #444; border-radius: 5px; color: #fff; margin-bottom: 10px; resize: vertical; }
        .comment-form button { background: #6ea8ff; color: white; border: none; padding: 10px 25px; border-radius: 5px; cursor: pointer; width: 100%; }
        .comment-form button:hover { background: #8bc0ff; }
        .quick-links ul { list-style: none; margin-left: 0; }
        .quick-links li { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px dashed #444; }
        .quick-links a { display: flex; align-items: center; gap: 10px; }
        .site-footer { background: rgba(10, 10, 20, 0.95); border-top: 1px solid #2a2a3e; padding: 40px 0 20px; margin-top: 50px; }
        .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-logo { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; color: #6ea8ff; }
        .friend-links { display: flex; flex-wrap: wrap; gap: 15px; margin: 15px 0; }
        friend-link { display: inline-block; background: rgba(110, 168, 255, 0.1); padding: 8px 15px; border-radius: 5px; border: 1px solid #3a5fff; }
        .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #333; color: #777; font-size: 0.9rem; margin-top: 30px; width: 100%; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav { position: fixed; top: 70px; left: 0; width: 100%; background: rgba(15, 15, 26, 0.98); backdrop-filter: blur(10px); padding: 20px; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all 0.3s; border-bottom: 1px solid #2a2a3e; }
            .main-nav.active { transform: translateY(0); opacity: 1; visibility: visible; }
            .main-nav ul { flex-direction: column; gap: 15px; }
            article h1 { font-size: 2.2rem; }
            article h2 { font-size: 1.8rem; }
        }
