        * { 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: #e6e6e6;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Arial Black', Gadget, sans-serif; color: #ffcc00; margin-bottom: 1rem; line-height: 1.2; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); border-bottom: 4px solid #4a6fa5; padding-bottom: 0.5rem; margin-top: 1rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #4db8ff; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.4rem, 3vw, 2rem); color: #00cc99; margin-top: 2rem; }
        h4 { font-size: 1.3rem; color: #ff9966; margin-top: 1.5rem; }
        p { margin-bottom: 1.2rem; font-size: 1.05rem; }
        a { color: #4db8ff; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #ffcc00; text-shadow: 0 0 8px rgba(255, 204, 0, 0.5); }
        strong { color: #ffcc00; font-weight: 700; }
        em { color: #00cc99; font-style: italic; }
        blockquote { border-left: 5px solid #ff9966; padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: #b3b3cc; background: rgba(255, 153, 102, 0.05); padding: 1.5rem; }
        .last-updated { background: rgba(77, 184, 255, 0.1); padding: 0.8rem; border-radius: 5px; margin: 2rem 0; font-size: 0.95rem; text-align: center; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
        .main-content { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; margin: 2.5rem 0; }
        @media (max-width: 992px) { .main-content { grid-template-columns: 1fr; } }
        header { background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(10px); border-bottom: 2px solid #33334d; position: sticky; top: 0; z-index: 1000; padding: 1rem 0; }
        .header-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .my-logo { font-size: 2.2rem; font-weight: 900; color: #ffcc00; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 0 15px rgba(255, 204, 0, 0.7); }
        .my-logo:hover { color: #fff; }
        nav { display: flex; align-items: center; }
        .nav-links { display: flex; list-style: none; gap: 2rem; }
        .nav-links a { padding: 0.5rem 1rem; border-radius: 5px; }
        .nav-links a:hover { background: rgba(77, 184, 255, 0.2); }
        .hamburger { display: none; font-size: 1.8rem; color: #ffcc00; cursor: pointer; background: none; border: none; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                position: fixed; top: 80px; left: 0; width: 100%; background: rgba(10, 10, 15, 0.98); flex-direction: column; padding: 2rem; gap: 1.5rem; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all 0.4s ease; border-top: 1px solid #33334d;
            }
            .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
        }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; color: #aaa; }
        .breadcrumb a { color: #4db8ff; }
        .breadcrumb span { color: #ffcc00; }
        .search-box { background: rgba(26, 26, 46, 0.8); border-radius: 50px; padding: 0.5rem 1.5rem; margin: 1.5rem 0; display: flex; border: 2px solid #4a6fa5; }
        .search-box input { flex: 1; background: transparent; border: none; color: #fff; font-size: 1rem; padding: 0.5rem; outline: none; }
        .search-box button { background: #ffcc00; color: #0a0a0f; border: none; border-radius: 50px; padding: 0.7rem 1.8rem; font-weight: bold; cursor: pointer; transition: background 0.3s; }
        .search-box button:hover { background: #ffd633; }
        aside { background: rgba(30, 30, 50, 0.7); border-radius: 15px; padding: 2rem; border: 1px solid #4a6fa5; height: fit-content; }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 { font-size: 1.4rem; border-bottom: 2px solid #ff9966; padding-bottom: 0.5rem; }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px dashed #4a6fa5; }
        .link-list a { display: block; padding: 0.5rem; border-radius: 5px; }
        .link-list a:hover { background: rgba(77, 184, 255, 0.1); }
        article { background: rgba(20, 20, 35, 0.8); padding: 2.5rem; border-radius: 15px; border: 1px solid #33334d; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        .article-intro { font-size: 1.2rem; color: #b3b3cc; margin-bottom: 2rem; }
        .feature-img { width: 100%; border-radius: 10px; overflow: hidden; margin: 2.5rem 0; border: 3px solid #ffcc00; }
        .highlight-box { background: linear-gradient(90deg, rgba(255,204,0,0.1) 0%, rgba(77,184,255,0.1) 100%); padding: 1.5rem; border-radius: 10px; margin: 2rem 0; border-left: 5px solid #ffcc00; }
        .rating-section, .comments-section { background: rgba(30, 30, 50, 0.7); padding: 2rem; border-radius: 15px; margin-top: 3rem; border: 1px solid #4a6fa5; }
        .stars { font-size: 2rem; color: #ffcc00; margin: 1rem 0; cursor: pointer; }
        .stars span { margin-right: 0.5rem; transition: transform 0.2s; }
        .stars span:hover { transform: scale(1.2); }
        .rating-form, .comment-form { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; color: #4db8ff; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%; padding: 0.9rem; background: rgba(10, 10, 15, 0.8); border: 1px solid #4a6fa5; border-radius: 8px; color: #fff; font-size: 1rem; transition: border 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #ffcc00; }
        .submit-btn { background: linear-gradient(90deg, #ffcc00, #ff9966); color: #0a0a0f; border: none; padding: 1rem 2rem; border-radius: 50px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; align-self: flex-start; }
        .submit-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4); }
        footer { background: rgba(10, 10, 15, 0.98); border-top: 2px solid #33334d; margin-top: 4rem; padding: 3rem 0 1.5rem; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }
        .footer-section h3 { color: #ffcc00; font-size: 1.3rem; margin-bottom: 1.5rem; }
        .friend-links { display: flex; flex-direction: column; gap: 0.8rem; }
        friend-link { display: block; padding: 0.7rem; background: rgba(77, 184, 255, 0.05); border-radius: 5px; transition: background 0.3s; }
        friend-link:hover { background: rgba(77, 184, 255, 0.15); }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #33334d; color: #aaa; font-size: 0.9rem; }
