        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        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;
        }
        h1, h2, h3, h4 {
            color: #1a365d;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 1.5rem;
            border-bottom: 4px solid #e31837;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #2d4a8a;
            padding-left: 0.5rem;
            border-left: 5px solid #e31837;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #3a5f9a;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #4a74b4;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        header {
            background: linear-gradient(135deg, #1a365d 0%, #2d4a8a 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-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #e31837;
        }
        .my-logo:hover {
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        nav {
            display: flex;
            gap: 1.5rem;
        }
        .nav-link {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .nav-link:hover {
            background-color: #e31837;
            transform: translateY(-2px);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 1rem;
            border-radius: 5px;
            margin: 1rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #1a365d;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem auto;
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #e31837;
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .search-form input, 
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        .search-form button,
        .comment-form button,
        .rating-form button {
            background: #e31837;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
            width: 100%;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            background: #c8102e;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            margin: 0.5rem 0;
            justify-content: center;
        }
        .star-rating i {
            color: #ffcc00;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .internal-link {
            color: #2d4a8a;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dashed #2d4a8a;
            transition: all 0.3s;
        }
        .internal-link:hover {
            color: #e31837;
            border-bottom-style: solid;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        footer {
            background: #1a365d;
            color: white;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        .friend-links a {
            color: #ffcc00;
            text-decoration: none;
            padding: 0.3rem 0.8rem;
            border: 1px solid #ffcc00;
            border-radius: 20px;
            transition: all 0.3s;
        }
        .friend-links a:hover {
            background-color: #ffcc00;
            color: #1a365d;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2d4a8a;
            font-size: 0.9rem;
            color: #aaa;
        }
        .last-updated {
            font-style: italic;
            color: #666;
            text-align: right;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #2d4a8a;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            nav.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media print {
            header, aside, footer, .widget, .breadcrumb {
                display: none;
            }
            main {
                grid-template-columns: 1fr;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
        }
