        * { 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.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', Times, serif; color: #1a365d; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; margin-top: 1.5rem; border-bottom: 4px solid #d4af37; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; padding-left: 0.5rem; border-left: 5px solid #e63946; }
        h3 { font-size: 1.8rem; margin-top: 2rem; color: #2a5c8a; }
        h4 { font-size: 1.4rem; margin-top: 1.5rem; color: #4a5568; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        article p { font-size: 1.1rem; }
        strong { color: #1a365d; font-weight: 700; }
        em { font-style: italic; color: #555; }
        a { color: #2b6cb0; text-decoration: none; transition: color 0.3s ease, background-color 0.3s ease; }
        a:hover { color: #1a202c; text-decoration: underline; }
        .intro { font-size: 1.3rem; color: #4a5568; background-color: #edf2f7; padding: 1.5rem; border-radius: 8px; margin: 2rem 0; border-left: 5px solid #d4af37; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .main-grid { grid-template-columns: 1fr; }
        }
        .site-header {
            background: linear-gradient(135deg, #0c2340 0%, #1a365d 100%);
            color: white;
            padding: 1rem 0;
            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;
        }
        .my-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #d4af37;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .my-logo i { margin-right: 10px; font-size: 2rem; }
        .my-logo:hover { color: #f7e7a9; text-decoration: none; }
        .nav-desktop { display: flex; }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-desktop a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover { background-color: #2d3748; color: #fff; text-decoration: none; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #2d3748;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: block; }
        .nav-mobile ul { list-style: none; }
        .nav-mobile li { margin-bottom: 15px; }
        .nav-mobile a { color: #e2e8f0; display: block; padding: 10px; border-bottom: 1px solid #4a5568; }
        .nav-mobile a:hover { background-color: #4a5568; }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .my-logo { font-size: 1.8rem; }
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #edf2f7;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a { color: #4a5568; }
        .breadcrumb a:hover { color: #1a365d; }
        .breadcrumb span { color: #718096; }
        .sidebar {
            background-color: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 { margin-top: 0; color: #1a365d; font-size: 1.5rem; }
        .widget { margin-bottom: 30px; }
        .search-form { display: flex; }
        .search-input { flex-grow: 1; padding: 12px; border: 2px solid #cbd5e0; border-radius: 5px 0 0 5px; font-size: 1rem; }
        .search-button {
            background-color: #2b6cb0;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-button:hover { background-color: #1a567e; }
        .rating-widget input, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #cbd5e0;
            border-radius: 5px;
        }
        .star-rating { display: flex; justify-content: space-around; font-size: 1.8rem; margin: 15px 0; color: #cbd5e0; cursor: pointer; }
        .star-rating .star:hover, .star-rating .star.active { color: #f6ad55; }
        .submit-btn {
            background-color: #38a169;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s;
        }
        .submit-btn:hover { background-color: #2f855a; }
        .article-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        .featured-image {
            width: 80%;
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .img-caption { text-align: center; font-style: italic; color: #718096; margin-top: 10px; font-size: 0.95rem; }
        .content-link { background-color: #fef3c7; padding: 3px 6px; border-radius: 3px; }
        .content-link:hover { background-color: #fde68a; }
        .site-footer {
            background-color: #1a202c;
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 { color: #d4af37; font-size: 1.5rem; margin-bottom: 1.5rem; }
        friend-link {
            display: block;
            padding: 8px 0;
            border-bottom: 1px dashed #4a5568;
            color: #90cdf4;
        }
        friend-link:hover { color: #63b3ed; text-decoration: underline; }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
            color: #a0aec0;
            font-size: 0.9rem;
        }
