        * { 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-color: #f9f9f9;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: #2a6ebb; transition: color 0.3s ease; }
        a:hover { color: #e74c3c; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .grid-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .grid-main { grid-template-columns: 1fr; }
        }
        .site-header {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            padding: 15px 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: 800;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
            font-family: 'Arial Black', sans-serif;
        }
        .my-logo span { color: #f1c40f; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav { display: none; }
            .main-nav.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #2c3e50;
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(255,255,255,0.15);
            color: #f1c40f;
        }
        @media (max-width: 768px) {
            .main-nav ul { flex-direction: column; gap: 10px; }
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #ecf0f1;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #7f8c8d;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #2a6ebb; }
        .main-content { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        article h1 { font-size: 2.8rem; color: #2c3e50; margin-bottom: 20px; line-height: 1.2; border-bottom: 3px solid #3498db; padding-bottom: 15px; }
        article h2 { font-size: 2rem; color: #2980b9; margin: 35px 0 15px; padding-top: 10px; }
        article h3 { font-size: 1.6rem; color: #16a085; margin: 25px 0 12px; }
        article h4 { font-size: 1.3rem; color: #8e44ad; margin: 20px 0 10px; }
        article p { margin-bottom: 20px; font-size: 1.1rem; text-align: justify; }
        article emoji { font-size: 1.2em; margin-right: 5px; }
        article strong { color: #c0392b; font-weight: 700; }
        article .highlight-box {
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            border-left: 5px solid #9b59b6;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        article img.featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 30px auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
        }
        .content-link {
            background-color: #f8f9fa;
            padding: 3px 6px;
            border-radius: 3px;
            border-bottom: 2px dotted #3498db;
        }
        .content-link:hover { background-color: #e3f2fd; }
        .sidebar { background: white; padding: 25px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .widget { margin-bottom: 30px; }
        .widget h3 { color: #2c3e50; margin-bottom: 15px; padding-bottom: 8px; border-bottom: 2px solid #eee; }
        .search-box form { display: flex; }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #3498db;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-box button {
            background: #3498db;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-box button:hover { background: #2980b9; }
        .comment-rating-widget { background: #f8f9fa; padding: 20px; border-radius: 8px; }
        .rating-stars { margin: 15px 0; font-size: 1.8rem; color: #f1c40f; }
        .rating-stars i { cursor: pointer; margin-right: 5px; transition: transform 0.2s; }
        .rating-stars i:hover { transform: scale(1.2); }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        .comment-form button {
            background: #2ecc71;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .comment-form button:hover { background: #27ae60; }
        .site-footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 { color: #f1c40f; margin-bottom: 20px; font-size: 1.3rem; }
        .friend-links { display: flex; flex-wrap: wrap; gap: 15px; list-style: none; }
        .friend-links a {
            color: #bdc3c7;
            padding: 8px 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 4px;
            display: inline-block;
        }
        .friend-links a:hover { background: rgba(255,255,255,0.1); color: #3498db; }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        .last-updated { font-style: italic; color: #7f8c8d; margin-top: 30px; padding-top: 15px; border-top: 1px dashed #ddd; }
        .tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
        .tag { background: #e0f7fa; color: #006064; padding: 5px 12px; border-radius: 20px; font-size: 0.9rem; }
