        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        body { background-color: #f8f9fa; color: #333; line-height: 1.7; overflow-x: hidden; }
        .site-header { background: linear-gradient(135deg, #1a237e 0%, #4a148c 100%); color: white; padding: 1rem 2rem; box-shadow: 0 4px 12px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; }
        .logo a { font-size: 2.2rem; font-weight: 800; color: #ffd600; text-decoration: none; letter-spacing: 1px; transition: transform 0.3s; display: flex; align-items: center; }
        .logo a:hover { transform: scale(1.05); }
        .logo i { margin-right: 10px; font-size: 2.5rem; }
        .desktop-nav { display: flex; gap: 1.8rem; }
        .desktop-nav a { color: #e3f2fd; text-decoration: none; font-weight: 600; padding: 0.5rem 1rem; border-radius: 4px; transition: all 0.3s; }
        .desktop-nav a:hover, .desktop-nav a.active { background: rgba(255, 214, 0, 0.2); color: #ffd600; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; }
        .mobile-nav { display: none; flex-direction: column; background: #1a237e; position: absolute; top: 100%; left: 0; width: 100%; padding: 1rem; box-shadow: 0 5px 10px rgba(0,0,0,0.2); }
        .mobile-nav.active { display: flex; }
        .mobile-nav a { color: #fff; padding: 0.8rem; text-decoration: none; border-bottom: 1px solid #3949ab; }
        .mobile-nav a:hover { background: #3949ab; }
        .breadcrumb { background: #e8eaf6; padding: 0.8rem 2rem; font-size: 0.9rem; max-width: 1400px; margin: 0 auto; }
        .breadcrumb a { color: #5c6bc0; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .container { max-width: 1400px; margin: 2rem auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
        @media (max-width: 992px) { .container { grid-template-columns: 1fr; } }
        main article { background: white; border-radius: 12px; padding: 2.5rem; box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
        h1 { color: #1a237e; font-size: 2.8rem; margin-bottom: 1.5rem; border-left: 6px solid #ffd600; padding-left: 1rem; }
        h2 { color: #4a148c; font-size: 2rem; margin: 2.5rem 0 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid #e1bee7; }
        h3 { color: #6a1b9a; font-size: 1.5rem; margin: 1.8rem 0 0.8rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .lead { font-size: 1.3rem; color: #555; font-weight: 500; background: #f3e5f5; padding: 1.2rem; border-radius: 8px; border-left: 4px solid #9c27b0; }
        .highlight { background: linear-gradient(120deg, #ffecb3 0%, #ffecb3 100%); padding: 0.2rem 0.5rem; border-radius: 3px; font-weight: 600; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .img-container { margin: 2.5rem 0; text-align: center; }
        .img-container img { max-width: 100%; height: auto; border-radius: 10px; box-shadow: 0 8px 16px rgba(0,0,0,0.15); transition: transform 0.5s; }
        .img-container img:hover { transform: scale(1.02); }
        .caption { font-style: italic; color: #666; margin-top: 0.5rem; font-size: 0.95rem; }
        blockquote { border-left: 5px solid #ff9800; background: #fff3e0; padding: 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; }
        blockquote p { font-size: 1.2rem; color: #e65100; font-weight: 600; }
        .stats-box { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2.5rem 0; }
        .stat-card { background: #e8f5e9; padding: 1.5rem; border-radius: 10px; text-align: center; border: 2px solid #81c784; transition: all 0.3s; }
        .stat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .stat-card h4 { color: #2e7d32; font-size: 1.8rem; margin-bottom: 0.5rem; }
        .interactive-section { background: #f5f5f5; border-radius: 10px; padding: 2rem; margin: 2.5rem 0; border: 1px dashed #9e9e9e; }
        .btn { display: inline-block; background: linear-gradient(to right, #ff9800, #ff5722); color: white; padding: 0.8rem 1.8rem; border-radius: 50px; text-decoration: none; font-weight: bold; border: none; cursor: pointer; transition: all 0.3s; }
        .btn:hover { background: linear-gradient(to right, #f57c00, #e64a19); transform: scale(1.05); box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4); }
        aside { background: white; border-radius: 12px; padding: 2rem; box-shadow: 0 6px 20px rgba(0,0,0,0.08); align-self: start; }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 { color: #1a237e; font-size: 1.4rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #ffd600; }
        .search-form { display: flex; }
        .search-form input { flex: 1; padding: 0.9rem; border: 2px solid #ccc; border-radius: 50px 0 0 50px; font-size: 1rem; }
        .search-form button { background: #4caf50; color: white; border: none; padding: 0 1.5rem; border-radius: 0 50px 50px 0; cursor: pointer; font-size: 1.2rem; }
        .search-form button:hover { background: #388e3c; }
        .rating-widget .stars { font-size: 1.8rem; color: #ffd700; margin-bottom: 1rem; }
        .rating-widget .stars i { cursor: pointer; transition: color 0.2s; }
        .rating-widget .stars i:hover { color: #ffab00; }
        .comment-form textarea, .comment-form input { width: 100%; padding: 0.8rem; margin-bottom: 1rem; border: 1px solid #bdbdbd; border-radius: 8px; font-size: 1rem; }
        .comment-form button { width: 100%; }
        .footer-links { max-width: 1400px; margin: 3rem auto 0; padding: 0 2rem; }
        .web-link { display: inline-block; background: #e3f2fd; margin: 0.5rem; padding: 0.8rem 1.5rem; border-radius: 30px; border: 1px solid #90caf9; }
        .web-link a { color: #1565c0; text-decoration: none; font-weight: 500; }
        .web-link a:hover { text-decoration: underline; color: #0d47a1; }
        footer { background: #1a237e; color: #e3f2fd; padding: 3rem 2rem 1.5rem; margin-top: 3rem; text-align: center; }
        .footer-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; text-align: left; }
        .footer-section h4 { color: #ffd600; margin-bottom: 1.2rem; font-size: 1.3rem; }
        .footer-section a { color: #bbdefb; display: block; margin-bottom: 0.6rem; text-decoration: none; }
        .footer-section a:hover { color: #ffd600; }
        .copyright { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #3949ab; font-size: 0.9rem; color: #90caf9; }
        @media (max-width: 768px) {
            .header-container { padding: 0.5rem 1rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .container { padding: 0 1rem; gap: 2rem; }
            main article, aside { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .breadcrumb { padding: 0.8rem 1rem; }
            .footer-links { padding: 0 1rem; }
        }
