        * { 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.6; color: #333; background: #f9f9f9; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .site-header { background: linear-gradient(135deg, #0056a9 0%, #003d7a 100%); color: white; padding: 1rem 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .header-container { display: flex; justify-content: space-between; align-items: center; padding: 0 15px; }
        .my-logo { font-size: 1.8rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: #ffcc00; text-decoration: none; transition: transform 0.3s; }
        .my-logo:hover { transform: scale(1.05); }
        .nav-desktop { display: flex; gap: 1.5rem; }
        .nav-desktop a { color: white; text-decoration: none; font-weight: 600; padding: 0.5rem 0.8rem; border-radius: 4px; transition: background 0.3s; }
        .nav-desktop a:hover { background: rgba(255,255,255,0.2); }
        .hamburger { display: none; font-size: 1.5rem; cursor: pointer; }
        .nav-mobile { display: none; flex-direction: column; background: #003d7a; position: absolute; top: 100%; left: 0; width: 100%; padding: 1rem; }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { color: white; padding: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.1); text-decoration: none; }
        .breadcrumb { padding: 1rem 15px; font-size: 0.9rem; color: #666; }
        .breadcrumb a { color: #0056a9; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .search-box { margin: 1.5rem auto; max-width: 600px; padding: 0 15px; }
        .search-form { display: flex; }
        .search-form input { flex: 1; padding: 0.8rem; border: 2px solid #0056a9; border-radius: 4px 0 0 4px; font-size: 1rem; }
        .search-form button { background: #0056a9; color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 0 4px 4px 0; cursor: pointer; transition: background 0.3s; }
        .search-form button:hover { background: #003d7a; }
        .main-content { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; margin: 2rem 0; }
        @media (max-width: 768px) { .main-content { grid-template-columns: 1fr; } }
        article { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        h1 { color: #0056a9; font-size: 2.5rem; margin-bottom: 1rem; border-left: 5px solid #ffcc00; padding-left: 1rem; }
        h2 { color: #003d7a; font-size: 1.8rem; margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #eee; }
        h3 { color: #0056a9; font-size: 1.4rem; margin: 1.5rem 0 0.8rem; }
        h4 { color: #666; font-size: 1.1rem; margin: 1rem 0 0.5rem; }
        p { margin-bottom: 1.2rem; text-align: justify; }
        strong { color: #0056a9; }
        .highlight { background: #fff8e1; padding: 1rem; border-left: 4px solid #ffcc00; margin: 1.5rem 0; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .image-container { margin: 2rem 0; text-align: center; }
        .image-container img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); transition: transform 0.3s; }
        .image-container img:hover { transform: scale(1.02); }
        .last-updated { font-style: italic; color: #888; margin-top: 2rem; padding-top: 1rem; border-top: 1px dashed #ddd; }
        .sidebar { background: white; padding: 1.5rem; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .sidebar h3 { margin-top: 0; }
        .comment-form, .rating-form { margin-bottom: 2rem; }
        .form-group { margin-bottom: 1rem; }
        .form-group label { display: block; margin-bottom: 0.3rem; font-weight: 600; }
        .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.7rem; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; }
        .form-group textarea { min-height: 100px; resize: vertical; }
        .stars { display: flex; gap: 0.3rem; margin: 0.5rem 0; }
        .star { font-size: 1.5rem; color: #ddd; cursor: pointer; transition: color 0.2s; }
        .star:hover, .star.active { color: #ffcc00; }
        .submit-btn { background: #0056a9; color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 4px; cursor: pointer; font-weight: bold; transition: background 0.3s; width: 100%; }
        .submit-btn:hover { background: #003d7a; }
        .site-footer { background: #003d7a; color: white; padding: 2rem 15px; margin-top: 3rem; border-radius: 8px 8px 0 0; }
        .friend-links { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0; }
        friend-link { display: inline-block; background: rgba(255,255,255,0.1); padding: 0.5rem 1rem; border-radius: 4px; }
        friend-link a { color: #ffcc00; text-decoration: none; }
        friend-link a:hover { text-decoration: underline; }
        .copyright { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.2); text-align: center; font-size: 0.9rem; color: #ccc; }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
        }
