        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        html { scroll-behavior: smooth; }
        body { background: linear-gradient(135deg, #fdf6e3 0%, #f5e6ca 100%); color: #333; line-height: 1.7; overflow-x: hidden; }
        h1, h2, h3, h4 { color: #c0392b; margin-bottom: 1rem; font-weight: 700; line-height: 1.3; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); text-align: center; margin-top: 1rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); border-left: 5px solid #e67e22; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: #d35400; margin-top: 2rem; }
        h4 { font-size: 1.3rem; color: #a35e1a; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #c0392b; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #e74c3c; text-decoration: underline; }
        strong { color: #c0392b; }
        em { color: #7d6608; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: linear-gradient(to right, #2c3e50, #4a235a); color: white; padding: 1.5rem 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; }
        .my-logo { font-size: 2.2rem; font-weight: 900; background: linear-gradient(45deg, #f39c12, #e74c3c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-decoration: none; }
        .my-logo:hover { text-decoration: none; }
        .desktop-nav { display: flex; gap: 2rem; }
        .desktop-nav a { color: #ecf0f1; font-weight: 600; }
        .desktop-nav a:hover { color: #f39c12; }
        .mobile-nav-toggle { display: none; font-size: 1.8rem; color: white; cursor: pointer; }
        .mobile-nav { display: none; flex-direction: column; background: #2c3e50; position: absolute; top: 100%; left: 0; width: 100%; padding: 1rem; }
        .mobile-nav.active { display: flex; }
        .mobile-nav a { color: white; padding: 0.8rem 0; border-bottom: 1px solid #34495e; }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-nav-toggle { display: block; }
        }
        .breadcrumb { background: #f8f9fa; padding: 1rem; margin: 1rem 0; border-radius: 5px; font-size: 0.9rem; }
        .breadcrumb a { color: #7d6608; }
        .hero { text-align: center; padding: 3rem 1rem; background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.9)), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat; color: white; border-radius: 10px; margin: 2rem 0; }
        .search-form { max-width: 600px; margin: 2rem auto; display: flex; }
        .search-input { flex: 1; padding: 1rem; border: none; border-radius: 50px 0 0 50px; font-size: 1rem; }
        .search-btn { background: #e67e22; color: white; border: none; padding: 1rem 2rem; border-radius: 0 50px 50px 0; cursor: pointer; font-weight: bold; transition: background 0.3s; }
        .search-btn:hover { background: #d35400; }
        .main-content { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; margin: 2.5rem 0; }
        @media (max-width: 992px) { .main-content { grid-template-columns: 1fr; } }
        article { background: white; padding: 2.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
        .article-meta { color: #7f8c8d; font-size: 0.95rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px dashed #f1c40f; }
        .featured-img { width: 100%; height: auto; border-radius: 10px; margin: 2rem 0; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .highlight-box { background: #fff9e6; border-left: 5px solid #f1c40f; padding: 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; }
        .tip { background: #e8f6f3; padding: 1rem; border-radius: 8px; margin: 1.5rem 0; border-left: 5px solid #1abc9c; }
        aside { background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); align-self: start; position: sticky; top: 120px; }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 { font-size: 1.3rem; color: #2c3e50; border-bottom: 2px solid #f1c40f; padding-bottom: 0.5rem; }
        .rating-form, .comment-form { background: #f8f9fa; padding: 1.5rem; border-radius: 10px; margin-top: 2rem; }
        .stars { display: flex; gap: 5px; margin: 10px 0; font-size: 1.8rem; color: #ddd; cursor: pointer; }
        .stars .active { color: #f1c40f; }
        .form-group { margin-bottom: 1.2rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
        input, textarea, select { width: 100%; padding: 0.9rem; border: 1px solid #bdc3c7; border-radius: 8px; font-size: 1rem; }
        .submit-btn { background: #27ae60; color: white; padding: 1rem 2rem; border: none; border-radius: 50px; cursor: pointer; font-weight: bold; transition: background 0.3s; width: 100%; }
        .submit-btn:hover { background: #219653; }
        footer { background: #2c3e50; color: #ecf0f1; 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-section h4 { color: #f1c40f; }
        friend-link { display: block; margin: 0.5rem 0; color: #bdc3c7; }
        friend-link a { color: #bdc3c7; }
        friend-link a:hover { color: #f1c40f; }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #34495e; color: #95a5a6; font-size: 0.9rem; }
        @media (max-width: 768px) {
            .header-content, .main-content, .footer-content { padding: 0 15px; }
            article, aside { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
        }
