        * { 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.8;
            color: #f0e6d2;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #ffcc00; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ffeb3b; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
        button, input, textarea { font-family: inherit; }
        .container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background-color: rgba(10, 15, 30, 0.95); border-bottom: 2px solid #ffcc00; padding: 1rem 0; position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-size: 2.2rem; font-weight: 900; background: linear-gradient(to right, #ffcc00, #ff6b00); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: 1px; }
        .my-logo:hover { transform: scale(1.05); }
        nav { display: flex; align-items: center; }
        .nav-links { display: flex; list-style: none; gap: 2rem; }
        .nav-links a { font-weight: 600; padding: 0.5rem 0; position: relative; }
        .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #ffcc00; transition: width 0.3s; }
        .nav-links a:hover::after { width: 100%; }
        .hamburger { display: none; font-size: 1.8rem; background: none; border: none; color: #ffcc00; cursor: pointer; }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; color: #aaa; }
        .breadcrumb a { color: #ccc; }
        .breadcrumb span { color: #ffcc00; }
        .hero { text-align: center; padding: 4rem 1rem; background: radial-gradient(circle at center, rgba(255,204,0,0.1) 0%, transparent 70%); }
        h1 { font-size: 3.5rem; margin-bottom: 1rem; background: linear-gradient(45deg, #ffcc00, #ff6b00); -webkit-background-clip: text; background-clip: text; color: transparent; }
        .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 2rem; color: #ddd; }
        .search-box { max-width: 600px; margin: 2rem auto; position: relative; }
        .search-box input { width: 100%; padding: 1rem 1rem 1rem 3rem; border-radius: 50px; border: 2px solid #444; background: rgba(255,255,255,0.05); color: #fff; font-size: 1rem; }
        .search-box button { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: #ffcc00; font-size: 1.2rem; cursor: pointer; }
        .main-grid { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; margin: 2rem 0; }
        .article-content { background: rgba(30, 35, 60, 0.7); padding: 2.5rem; border-radius: 15px; border-left: 5px solid #ffcc00; }
        .sidebar { background: rgba(20, 25, 50, 0.8); padding: 1.5rem; border-radius: 10px; }
        @media (max-width: 992px) { .main-grid { grid-template-columns: 1fr; } }
        h2 { font-size: 2.5rem; color: #ffcc00; margin: 2.5rem 0 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid rgba(255,204,0,0.3); }
        h3 { font-size: 2rem; color: #ffb347; margin: 2rem 0 1rem; }
        h4 { font-size: 1.5rem; color: #ffcc80; margin: 1.5rem 0 1rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .lead { font-size: 1.3rem; font-weight: 300; color: #ffccaa; }
        .quote-block { border-left: 4px solid #ff6b00; padding-left: 2rem; margin: 2rem 0; font-style: italic; color: #ffd8a6; background: rgba(255,107,0,0.05); padding: 1.5rem; border-radius: 0 10px 10px 0; }
        .highlight { background: rgba(255,204,0,0.15); padding: 0.2rem 0.5rem; border-radius: 3px; font-weight: 600; }
        .stats { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(0,0,0,0.3); padding: 0.5rem 1rem; border-radius: 20px; margin: 0.5rem; }
        .rating-widget, .comment-form { background: rgba(40,45,70,0.8); padding: 1.5rem; border-radius: 10px; margin: 2rem 0; }
        .stars { display: flex; gap: 0.5rem; margin: 1rem 0; }
        .star { font-size: 2rem; color: #444; cursor: pointer; transition: color 0.2s; }
        .star.active, .star:hover { color: #ffcc00; }
        .form-group { margin-bottom: 1rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
        .form-group input, .form-group textarea { width: 100%; padding: 0.8rem; border-radius: 5px; border: 1px solid #555; background: rgba(255,255,255,0.07); color: #fff; }
        .btn { display: inline-block; padding: 0.8rem 2rem; background: linear-gradient(45deg, #ff6b00, #ffcc00); color: #1a1a2e; border: none; border-radius: 50px; font-weight: bold; cursor: pointer; transition: all 0.3s; }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255,204,0,0.4); }
        .update-time { text-align: right; font-size: 0.9rem; color: #aaa; margin-top: 2rem; padding-top: 1rem; border-top: 1px dashed #555; }
        footer { margin-top: auto; background-color: rgba(10, 15, 30, 0.98); padding: 3rem 0 1.5rem; border-top: 2px solid #ffcc00; }
        .footer-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
        friend-link { display: block; padding: 0.5rem 0; border-bottom: 1px solid #333; }
        friend-link a::before { content: "🔗 "; }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #333; color: #888; font-size: 0.9rem; }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(10,15,30,0.98); padding: 1rem; border-top: 1px solid #444; }
            .nav-links.active { display: flex; }
            .hamburger { display: block; }
            .article-content, .sidebar { padding: 1.5rem; }
            .header-content { flex-wrap: wrap; }
        }
