        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        html { scroll-behavior: smooth; }
        body { background-color: #f5f7fa; color: #333; line-height: 1.7; overflow-x: hidden; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .emoji { font-size: 1.2em; }
        .site-header { background: linear-gradient(135deg, #2a2a72, #009ffd); color: white; padding: 1rem 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo a { color: white; text-decoration: none; font-size: 2rem; font-weight: 800; letter-spacing: 1px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); transition: transform 0.3s; }
        .logo a:hover { transform: scale(1.05); }
        .main-nav ul { display: flex; list-style: none; gap: 2rem; }
        .main-nav a { color: white; text-decoration: none; font-weight: 600; padding: 0.5rem 1rem; border-radius: 4px; transition: background 0.3s; }
        .main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,0.2); }
        .hamburger { display: none; font-size: 1.8rem; background: none; border: none; color: white; cursor: pointer; }
        .breadcrumb { background: #e9ecef; padding: 0.8rem 20px; font-size: 0.9rem; }
        .breadcrumb a { color: #2a2a72; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .search-section { background: #fff; padding: 2rem 0; border-bottom: 1px solid #eee; }
        .search-form { max-width: 600px; margin: 0 auto; display: flex; box-shadow: 0 5px 15px rgba(0,0,0,0.08); border-radius: 50px; overflow: hidden; }
        .search-input { flex: 1; padding: 1rem 1.5rem; border: none; font-size: 1rem; }
        .search-btn { background: #009ffd; color: white; border: none; padding: 0 2rem; cursor: pointer; font-size: 1rem; transition: background 0.3s; }
        .search-btn:hover { background: #0077cc; }
        .main-content { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 3rem 0; }
        .article-content { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.05); }
        .article-content h1 { color: #2a2a72; margin-bottom: 1.5rem; font-size: 2.8rem; line-height: 1.2; }
        .article-content h2 { color: #009ffd; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #f0f0f0; }
        .article-content h3 { color: #555; margin: 1.8rem 0 0.8rem; }
        .article-content p { margin-bottom: 1.5rem; text-align: justify; }
        .highlight-box { background: #f0f8ff; border-left: 5px solid #009ffd; padding: 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; }
        .image-container { text-align: center; margin: 2.5rem 0; }
        .article-img { max-width: 100%; height: auto; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); transition: transform 0.5s; }
        .article-img:hover { transform: scale(1.02); }
        .sidebar { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.05); height: fit-content; }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 { color: #2a2a72; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px dashed #ddd; }
        .rating-form, .comment-form { display: flex; flex-direction: column; gap: 1rem; }
        .stars { display: flex; justify-content: center; gap: 0.5rem; font-size: 1.8rem; color: #ffd700; margin: 0.5rem 0; }
        .stars i { cursor: pointer; transition: color 0.2s; }
        .stars i:hover { color: #ffed4e; }
        .form-input, .form-textarea { padding: 0.8rem; border: 1px solid #ccc; border-radius: 6px; font-size: 1rem; }
        .form-textarea { min-height: 120px; resize: vertical; }
        .form-btn { background: #2a2a72; color: white; border: none; padding: 1rem; border-radius: 6px; cursor: pointer; font-weight: 600; transition: background 0.3s; }
        .form-btn:hover { background: #009ffd; }
        .web-links-section { background: #fff; padding: 2.5rem 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin-top: 2rem; }
        .web-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
        .web-link { background: #f8f9fa; padding: 1.2rem; border-radius: 8px; border-left: 4px solid #009ffd; transition: all 0.3s; }
        .web-link:hover { background: #e9ecef; transform: translateY(-3px); }
        .web-link a { color: #2a2a72; text-decoration: none; font-weight: 600; display: block; }
        .web-link a:hover { text-decoration: underline; }
        .site-footer { background: #2a2a72; color: #ddd; padding: 3rem 0 1.5rem; }
        .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 { color: white; margin-bottom: 1.5rem; font-size: 1.3rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: #bbb; text-decoration: none; transition: color 0.3s; }
        .footer-links a:hover { color: #009ffd; }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #3a3a8a; color: #aaa; font-size: 0.9rem; }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
            .main-nav ul { gap: 1rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul { 
                display: none; 
                flex-direction: column; 
                position: absolute; 
                top: 100%; 
                left: 0; 
                width: 100%; 
                background: #2a2a72; 
                padding: 1rem; 
                box-shadow: 0 5px 10px rgba(0,0,0,0.2); 
            }
            .main-nav.active ul { display: flex; }
            .header-content { flex-wrap: wrap; }
            .article-content h1 { font-size: 2.2rem; }
            .article-content { padding: 1.5rem; }
            .web-links-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 576px) {
            .search-form { flex-direction: column; border-radius: 12px; }
            .search-input, .search-btn { width: 100%; border-radius: 0; }
            .web-links-grid { grid-template-columns: 1fr; }
            .footer-content { flex-direction: column; }
        }
