        * { 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: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
            max-width: 1400px;
            margin: 0 auto;
            box-shadow: 0 0 30px rgba(0,0,0,0.05);
        }
        a { color: #c90c61; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #9a084a; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 95%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: linear-gradient(90deg, #1a237e 0%, #283593 50%, #3949ab 100%); color: white; padding: 1.5rem 0; position: sticky; top: 0; z-index: 1000; }
        .header-container { display: flex; justify-content: space-between; align-items: center; }
        .logo a { font-size: 2.5rem; font-weight: 900; color: #ffcc00; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); letter-spacing: 1px; }
        .logo a:hover { color: #ffdd44; }
        .my-logo { font-family: 'Times New Roman', serif; font-style: italic; }
        nav { display: flex; align-items: center; }
        .nav-links { display: flex; list-style: none; gap: 2rem; }
        .nav-links a { color: #e3f2fd; font-weight: 600; padding: 0.5rem 1rem; border-radius: 4px; }
        .nav-links a:hover { background: rgba(255, 255, 255, 0.15); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #ffcc00; }
        .breadcrumb { background: #e8eaf6; padding: 0.8rem 2rem; font-size: 0.9rem; }
        .breadcrumb a { color: #5c6bc0; }
        .breadcrumb span { color: #3949ab; }
        .search-box { background: #3f51b5; padding: 1.5rem; text-align: center; margin: 1.5rem auto; border-radius: 10px; max-width: 800px; }
        .search-box h2 { color: white; margin-bottom: 1rem; }
        .search-form { display: flex; }
        .search-form input { flex: 1; padding: 0.8rem 1rem; border: none; border-radius: 5px 0 0 5px; font-size: 1rem; }
        .search-form button { background: #ff9800; color: white; border: none; padding: 0 1.5rem; border-radius: 0 5px 5px 0; cursor: pointer; font-size: 1.1rem; transition: background 0.3s; }
        .search-form button:hover { background: #f57c00; }
        main { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; padding: 2.5rem 0; }
        article { background: white; padding: 2.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
        .article-header { text-align: center; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 3px dashed #c5cae9; }
        h1 { color: #1a237e; font-size: 2.8rem; margin-bottom: 1rem; line-height: 1.2; }
        .meta { color: #666; font-size: 0.95rem; margin-bottom: 1rem; }
        .featured-img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 10px; margin: 2rem 0; border: 5px solid #e8eaf6; }
        h2 { color: #283593; font-size: 2rem; margin: 2.5rem 0 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid #c5cae9; }
        h3 { color: #3949ab; font-size: 1.6rem; margin: 2rem 0 1rem; }
        h4 { color: #5c6bc0; font-size: 1.3rem; margin: 1.5rem 0 0.8rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .highlight { background: #fff8e1; padding: 1.5rem; border-left: 5px solid #ffb300; margin: 1.5rem 0; border-radius: 0 8px 8px 0; }
        .quote { font-style: italic; color: #555; border-left: 4px solid #8bc34a; padding-left: 1.5rem; margin: 1.5rem 0; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
        .stat-box { background: #e3f2fd; padding: 1.5rem; border-radius: 10px; text-align: center; transition: transform 0.3s; }
        .stat-box:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .stat-number { font-size: 2.5rem; font-weight: 800; color: #1a237e; }
        .stat-label { font-size: 1rem; color: #666; }
        aside { background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); align-self: start; position: sticky; top: 120px; }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 { font-size: 1.4rem; color: #1a237e; margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 1px solid #eee; }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 0.8rem; padding-left: 1.2rem; position: relative; }
        .link-list li:before { content: '▶'; position: absolute; left: 0; color: #ff9800; font-size: 0.8rem; }
        .rating-widget, .comment-widget { background: #f9f9f9; padding: 1.5rem; border-radius: 10px; }
        .stars { color: #ffcc00; font-size: 1.5rem; margin: 0.5rem 0; }
        .rating-form, .comment-form { display: flex; flex-direction: column; gap: 1rem; }
        .rating-form select, .comment-form input, .comment-form textarea { padding: 0.8rem; border: 1px solid #ccc; border-radius: 5px; font-family: inherit; }
        .comment-form textarea { min-height: 120px; resize: vertical; }
        .form-submit { background: #4caf50; color: white; border: none; padding: 0.8rem; border-radius: 5px; cursor: pointer; font-weight: bold; transition: background 0.3s; }
        .form-submit:hover { background: #388e3c; }
        footer { background: #1a237e; color: #e3f2fd; padding: 3rem 0 1.5rem; margin-top: 3rem; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
        .footer-logo { font-size: 2rem; color: #ffcc00; margin-bottom: 1rem; }
        friend-link { display: block; background: #283593; padding: 1rem; margin: 0.8rem 0; border-radius: 5px; transition: background 0.3s; }
        friend-link:hover { background: #3949ab; }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #3949ab; font-size: 0.9rem; color: #9fa8da; }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
            aside { position: static; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links { 
                position: fixed; 
                top: 90px; left: 0; 
                background: #283593; 
                width: 100%; 
                flex-direction: column; 
                align-items: center; 
                padding: 2rem 0; 
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
            }
            .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
            h1 { font-size: 2.2rem; }
            .header-container, .search-form { flex-direction: column; gap: 1rem; }
            .search-form input, .search-form button { width: 100%; border-radius: 5px; }
        }
