        * { 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: #2c3e50;
            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: #1a5276; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; border-bottom: 3px solid #f1c40f; padding-bottom: 0.5rem; margin-top: 1.5rem; }
        h2 { font-size: 2.2rem; color: #2874a6; margin-top: 2.5rem; }
        h3 { font-size: 1.8rem; color: #3498db; margin-top: 2rem; }
        h4 { font-size: 1.4rem; color: #5dade2; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        a { color: #2980b9; text-decoration: none; transition: color 0.3s ease, background-color 0.3s ease; }
        a:hover { color: #e74c3c; text-decoration: underline; }
        strong, b { color: #c0392b; font-weight: 700; }
        em { font-style: italic; }
        .highlight { background-color: #fffacd; padding: 0.2rem 0.5rem; border-radius: 3px; }
        .lead { font-size: 1.3rem; font-weight: 500; color: #2c3e50; margin-bottom: 2rem; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        .site-header {
            background: linear-gradient(135deg, #1a5276, #2e86c1);
            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-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: #f1c40f;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover { color: #fff; text-decoration: none; }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li { margin-left: 2rem; }
        .main-nav a {
            color: #ecf0f1;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(241, 196, 15, 0.9);
            color: #1a5276;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #1a5276;
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul { flex-direction: column; }
            .main-nav li { margin: 0.8rem 0; }
        }
        .breadcrumb {
            background-color: #ecf0f1;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #bdc3c7;
        }
        .breadcrumb a { color: #7f8c8d; }
        .breadcrumb a:hover { color: #e74c3c; }
        .breadcrumb span { color: #34495e; }
        .search-module {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #3498db;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s ease;
        }
        .search-btn:hover { background: linear-gradient(to right, #2980b9, #1c5a80); }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        }
        .article-meta {
            color: #7f8c8d;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #bdc3c7;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img { transform: scale(1.03); }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .blockquote {
            border-left: 5px solid #f1c40f;
            padding-left: 2rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #fcf8e3;
            padding: 1.5rem 2rem;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.4rem;
            color: #1a5276;
            border-bottom: 2px solid #f1c40f;
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-input, .form-textarea {
            padding: 0.8rem;
            border: 1px solid #bdc3c7;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .submit-btn {
            background: #2ecc71;
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            align-self: flex-start;
        }
        .submit-btn:hover { background: #27ae60; }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
        }
        .star-rating input { display: none; }
        .star-rating label { cursor: pointer; transition: color 0.2s; }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #f1c40f; }
        .site-footer {
            background: linear-gradient(to right, #1a5276, #154360);
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-widget h3 { color: #f1c40f; font-size: 1.4rem; margin-bottom: 1.2rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.7rem; }
        .footer-links a { color: #bdc3c7; }
        .footer-links a:hover { color: #f1c40f; padding-left: 5px; }
        friend-link {
            display: inline-block;
            background: rgba(241, 196, 15, 0.1);
            color: #f1c40f;
            padding: 0.4rem 0.8rem;
            margin: 0.3rem;
            border-radius: 4px;
            border: 1px dashed #f1c40f;
        }
        friend-link a { color: inherit; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2c3e50;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 1rem; }
        .mt-3 { margin-top: 1rem; }
        .last-updated { color: #e74c3c; font-weight: bold; }
