        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; background: #f5f5f5; }
        .header { background: linear-gradient(135deg, #1a1a2e, #16213e); color: #fff; padding: 1rem 2rem; }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .my-logo a { font-size: 2rem; font-weight: 800; color: #ff7a45; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; }
        .my-logo a:hover { color: #ff9a6c; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a { color: #ddd; text-decoration: none; font-weight: 600; transition: color 0.3s; }
        .nav-desktop a:hover { color: #ff7a45; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; }
        .nav-mobile { display: none; flex-direction: column; background: #16213e; position: absolute; top: 70px; left: 0; width: 100%; z-index: 1000; }
        .nav-mobile a { padding: 1rem 2rem; border-bottom: 1px solid #2d3748; color: #ddd; text-decoration: none; }
        .nav-mobile a:hover { background: #1a1a2e; }
        .breadcrumb { background: #e9ecef; padding: 0.8rem 2rem; font-size: 0.9rem; }
        .breadcrumb a { color: #555; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .container { max-width: 1200px; margin: 2rem auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
        .main-content { background: #fff; padding: 2.5rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .sidebar { background: #fff; padding: 1.5rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        h1 { font-size: 2.8rem; color: #1a1a2e; margin-bottom: 1.5rem; border-left: 6px solid #ff7a45; padding-left: 1rem; }
        h2 { font-size: 2rem; color: #16213e; margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #eee; }
        h3 { font-size: 1.5rem; color: #333; margin-top: 1.8rem; margin-bottom: 0.8rem; }
        h4 { font-size: 1.2rem; color: #555; margin-top: 1.5rem; margin-bottom: 0.5rem; }
        p { margin-bottom: 1.2rem; text-align: justify; }
        strong { color: #ff7a45; }
        em { font-style: italic; }
        a.content-link { color: #007bff; text-decoration: none; border-bottom: 1px dashed #007bff; }
        a.content-link:hover { color: #0056b3; border-bottom-style: solid; }
        .highlight { background: #fff9e6; padding: 1.5rem; border-left: 4px solid #ffcc00; margin: 1.5rem 0; border-radius: 0 8px 8px 0; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .article-img { width: 100%; max-width: 800px; height: auto; border-radius: 10px; margin: 2rem auto; display: block; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
        .form-group { margin-bottom: 1.5rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
        input, textarea, select { width: 100%; padding: 0.8rem; border: 1px solid #ccc; border-radius: 5px; font-size: 1rem; }
        button { background: #ff7a45; color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 5px; cursor: pointer; font-weight: 600; transition: background 0.3s; }
        button:hover { background: #e5693a; }
        .widget { margin-bottom: 2rem; }
        .widget h3 { font-size: 1.3rem; color: #16213e; margin-bottom: 1rem; }
        .search-form { display: flex; }
        .search-form input { flex: 1; border-right: 0; border-radius: 5px 0 0 5px; }
        .search-form button { border-radius: 0 5px 5px 0; padding: 0.8rem 1rem; }
        .rating-stars { color: #ffcc00; font-size: 1.5rem; margin: 0.5rem 0; }
        .footer { background: #1a1a2e; color: #ddd; padding: 2rem; margin-top: 3rem; }
        .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
        .friend-links { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1rem 0; }
        friend-link { display: inline-block; background: #2d3748; padding: 0.5rem 1rem; border-radius: 5px; }
        friend-link a { color: #ff9a6c; text-decoration: none; }
        friend-link a:hover { text-decoration: underline; }
        .copyright { text-align: center; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #2d3748; font-size: 0.9rem; color: #aaa; }
        @media (max-width: 768px) {
            .container { grid-template-columns: 1fr; padding: 0 1rem; }
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .nav-mobile.active { display: flex; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
        }
