        * { 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%, #e4edf5 100%);
            min-height: 100vh;
        }
        a { color: #2c5aa0; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #e6b325; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header { background: linear-gradient(to right, #1a2a57, #2c5aa0); color: white; box-shadow: 0 4px 12px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-top { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
        .my-logo { font-size: 2.2rem; font-weight: 800; letter-spacing: 1px; color: #e6b325; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .my-logo a { color: inherit; }
        .search-form { display: flex; flex: 0 1 400px; margin: 0 30px; }
        .search-form input { flex: 1; padding: 12px 18px; border: none; border-radius: 30px 0 0 30px; font-size: 1rem; outline: none; }
        .search-form button { background: #e6b325; color: #1a2a57; border: none; border-radius: 0 30px 30px 0; padding: 0 25px; cursor: pointer; font-weight: bold; transition: background 0.3s; }
        .search-form button:hover { background: #ffcc44; }
        .mobile-toggle { display: none; font-size: 1.8rem; cursor: pointer; }
        nav { background: rgba(255,255,255,0.05); backdrop-filter: blur(5px); }
        .nav-container { display: flex; justify-content: center; }
        .nav-menu { display: flex; list-style: none; }
        .nav-menu li { position: relative; }
        .nav-menu a { display: block; padding: 18px 22px; color: white; font-weight: 600; font-size: 1.05rem; }
        .nav-menu a:hover { background: rgba(230, 179, 37, 0.2); text-decoration: none; }
        .breadcrumb { padding: 15px 0; font-size: 0.9rem; color: #aaa; background: #f0f5ff; }
        .breadcrumb a { color: #2c5aa0; }
        main { padding: 40px 0; display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
        article { background: white; border-radius: 15px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .article-header { margin-bottom: 40px; border-bottom: 3px solid #e6b325; padding-bottom: 25px; }
        h1 { font-size: 2.8rem; color: #1a2a57; line-height: 1.2; margin-bottom: 15px; }
        .meta { display: flex; justify-content: space-between; color: #666; font-size: 0.95rem; margin-bottom: 20px; }
        .lead { font-size: 1.3rem; color: #2c5aa0; font-weight: 500; margin-bottom: 30px; line-height: 1.6; }
        h2 { font-size: 2rem; color: #1a2a57; margin: 40px 0 20px; padding-bottom: 10px; border-bottom: 2px dashed #e6b325; }
        h3 { font-size: 1.6rem; color: #2c5aa0; margin: 30px 0 15px; }
        h4 { font-size: 1.3rem; color: #444; margin: 25px 0 12px; }
        p, li { margin-bottom: 1.2em; font-size: 1.05rem; color: #444; text-align: justify; }
        ul, ol { padding-left: 30px; margin-bottom: 1.5em; }
        blockquote { border-left: 5px solid #e6b325; padding-left: 25px; margin: 30px 0; font-style: italic; color: #555; background: #f9f9f9; padding: 20px; border-radius: 0 10px 10px 0; }
        .highlight { background: linear-gradient(120deg, #fff9c4 0%, #fff9c4 100%); padding: 20px; border-radius: 10px; border: 1px solid #ffeb3b; margin: 25px 0; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .feature-img { width: 100%; border-radius: 12px; margin: 30px auto; border: 5px solid #e6b325; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
        .link-box { display: inline-block; background: #f0f7ff; border-left: 4px solid #2c5aa0; padding: 15px 20px; margin: 15px 0; border-radius: 0 8px 8px 0; }
        aside { background: white; border-radius: 15px; padding: 30px; box-shadow: 0 8px 20px rgba(0,0,0,0.05); align-self: start; position: sticky; top: 140px; }
        .widget { margin-bottom: 35px; }
        .widget-title { font-size: 1.4rem; color: #1a2a57; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e6b325; }
        .rating-widget form, .comment-widget form { display: flex; flex-direction: column; gap: 15px; }
        .rating-widget input, .comment-widget textarea, .comment-widget input { width: 100%; padding: 12px 15px; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; }
        .comment-widget textarea { min-height: 120px; resize: vertical; }
        .star-rating { display: flex; justify-content: center; gap: 10px; font-size: 1.8rem; color: #ddd; margin: 10px 0; }
        .star-rating i { cursor: pointer; transition: color 0.2s; }
        .star-rating i:hover, .star-rating i.active { color: #e6b325; }
        .btn { background: linear-gradient(to right, #2c5aa0, #1a2a57); color: white; border: none; padding: 14px 25px; border-radius: 8px; font-weight: bold; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 7px 15px rgba(44, 90, 160, 0.3); text-decoration: none; }
        .quick-links ul { list-style: none; padding-left: 0; }
        .quick-links li { margin-bottom: 12px; }
        .quick-links a { display: block; padding: 12px 15px; background: #f8f9fa; border-radius: 8px; border-left: 4px solid #e6b325; }
        .quick-links a:hover { background: #eef5ff; border-left-color: #2c5aa0; }
        footer { background: linear-gradient(to right, #1a2a57, #0d1b3e); color: #ccc; padding: 50px 0 20px; margin-top: 50px; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-logo { font-size: 2rem; font-weight: 800; color: #e6b325; margin-bottom: 20px; }
        .footer-links h4 { color: #e6b325; margin-bottom: 20px; font-size: 1.2rem; }
        .footer-links ul { list-style: none; padding-left: 0; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #aaa; }
        .footer-links a:hover { color: #e6b325; }
        friend-link { display: block; background: rgba(255,255,255,0.05); padding: 15px; border-radius: 8px; margin-bottom: 10px; text-align: center; }
        friend-link a { color: #e6b325; font-weight: bold; }
        .copyright { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); color: #888; font-size: 0.9rem; }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
            aside { position: static; }
        }
        @media (max-width: 768px) {
            .header-top { flex-wrap: wrap; }
            .search-form { order: 3; flex: 1 1 100%; margin: 20px 0 0; }
            .mobile-toggle { display: block; }
            .nav-menu { display: none; flex-direction: column; width: 100%; background: #1a2a57; }
            .nav-menu.active { display: flex; }
            .nav-menu li { width: 100%; text-align: center; }
            h1 { font-size: 2.2rem; }
            article { padding: 25px; }
        }
