        * {
            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;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background-color: #fff3cd; padding: 2px 5px; border-radius: 3px; }
        .site-header {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 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;
        }
        .logo a {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo-icon {
            color: #ff6b6b;
            margin-right: 10px;
            font-size: 2rem;
        }
        .nav-desktop {
            display: flex;
            list-style: none;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop li { margin-left: 1.5rem; }
        .nav-desktop a {
            color: #ddd;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: #ff6b6b;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ff6b6b;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1e3799;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile li { margin: 0.8rem 0; }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: block;
            padding: 0.5rem;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .nav-mobile a:hover { background: rgba(255,255,255,0.1); }
        .breadcrumb {
            padding: 1rem 0;
            background: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #0c2461;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-meta {
            color: #6c757d;
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        h1 {
            font-size: 2.8rem;
            color: #0c2461;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
        }
        h2 {
            font-size: 2rem;
            color: #1e3799;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ff6b6b;
        }
        h3 {
            font-size: 1.6rem;
            color: #3742fa;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #57606f;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            color: #2f3542;
            background: #f1f2f6;
            padding: 1.5rem;
            border-left: 5px solid #ff6b6b;
            margin-bottom: 2rem;
            border-radius: 0 8px 8px 0;
        }
        .featured-img {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        blockquote {
            border-left: 4px solid #0c2461;
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: #555;
            font-style: italic;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.3rem;
            color: #0c2461;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff6b6b;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-btn {
            background: #0c2461;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover { background: #1e3799; }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .star {
            color: #ddd;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active,
        .star:hover,
        .star:hover ~ .star { color: #ffd700; }
        .rating-form { display: none; }
        .rating-form.active { display: block; }
        .rating-form input, .rating-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .rating-form button {
            background: #ff6b6b;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
        }
        .comment-list { margin-top: 1rem; }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 1rem 0;
        }
        .comment:last-child { border-bottom: none; }
        .comment-author {
            font-weight: bold;
            color: #0c2461;
        }
        .comment-date {
            font-size: 0.85rem;
            color: #888;
        }
        .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .comment-form button {
            background: #3742fa;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
        }
        .site-footer {
            background: #1e272e;
            color: #ddd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: #ff6b6b;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li { margin-bottom: 0.7rem; }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: #ff6b6b; }
        friend-link {
            display: block;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #444;
        }
        friend-link h4 {
            color: #ff6b6b;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #74b9ff;
            text-decoration: none;
        }
        friend-link a:hover { text-decoration: underline; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: #3742fa;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #0c2461;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .link {
            color: #3742fa;
            text-decoration: none;
            border-bottom: 1px dotted;
        }
        .link:hover {
            color: #ff6b6b;
            border-bottom-style: solid;
        }
        @media (max-width: 576px) {
            .article-content, .widget { padding: 1.5rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
        }
