        * {
            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.8;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #2a6ebb;
            text-decoration: none;
            transition: color 0.3s ease, border-bottom 0.3s ease;
        }
        a:hover {
            color: #e63946;
            border-bottom: 2px solid #e63946;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2980, #26d0ce);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(to right, #ffd89b, #19547b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        .my-logo a {
            border: none;
        }
        .my-logo a:hover {
            border: none;
            opacity: 0.9;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
        }
        .nav-desktop a:hover {
            border-bottom: 2px solid #ffd89b;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #1a2980;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile ul {
            list-style: none;
            width: 100%;
        }
        .nav-mobile li {
            margin: 0.8rem 0;
            text-align: center;
        }
        .nav-mobile a {
            color: white;
            font-size: 1.2rem;
            display: block;
            padding: 0.5rem;
            border-radius: 4px;
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 5%;
            font-size: 0.9rem;
            border-bottom: 1px solid #ccc;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb span {
            color: #888;
        }
        .main-content-container {
            width: 90%;
            max-width: 1200px;
            margin: 2rem auto;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-content-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        h1 {
            font-size: 3.2rem;
            color: #1a2980;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #e63946;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #264653;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #2a9d8f;
        }
        h3 {
            font-size: 1.8rem;
            color: #2a9d8f;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #e76f51;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            color: #555;
            background: #f1faee;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2.5rem;
            border-left: 4px solid #2a9d8f;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1.5rem;
            border-left: 5px solid #ffc107;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-style: italic;
            color: #555;
            border-left: 4px solid #6c757d;
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: #333;
        }
        .stats-box {
            background: linear-gradient(145deg, #e3f2fd, #bbdefb);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #90caf9;
        }
        .stats-box h4 {
            color: #1565c0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .content-link {
            font-weight: 600;
            color: #d90429;
        }
        .update-time {
            font-size: 0.9rem;
            color: #6c757d;
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #adb5bd;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            font-size: 1.5rem;
            color: #1a2980;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd166;
        }
        .search-box {
            margin-bottom: 2rem;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #2a9d8f;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background: #2a9d8f;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #21867a;
        }
        .sidebar-links {
            list-style: none;
            margin-bottom: 2rem;
        }
        .sidebar-links li {
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            background: #f8f9fa;
            border-radius: 6px;
            transition: background 0.3s, transform 0.2s;
        }
        .sidebar-links li:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }
        .sidebar-links a {
            color: #264653;
            display: block;
        }
        .rating-widget {
            text-align: center;
            padding: 1.5rem;
            background: #fff9db;
            border-radius: 10px;
            border: 2px dashed #ffd43b;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffd43b;
            margin: 0.5rem 0 1rem;
            cursor: pointer;
        }
        .stars span {
            margin: 0 2px;
            transition: color 0.2s, transform 0.2s;
        }
        .stars span:hover,
        .stars span.active {
            color: #fcc419;
            transform: scale(1.2);
        }
        .comment-section {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 3px solid #6c757d;
        }
        .comment-form label {
            display: block;
            margin: 1rem 0 0.5rem;
            font-weight: 600;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            outline: none;
            border-color: #2a9d8f;
        }
        .comment-form button {
            background: #2a6ebb;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            margin-top: 1rem;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #1d4f8f;
        }
        .site-footer {
            background: #264653;
            color: #f8f9fa;
            padding: 3rem 5% 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffd166;
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        .friend-links a {
            color: #a2d2ff;
            background: rgba(255,255,255,0.05);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .friend-links a:hover {
            background: rgba(255,255,255,0.1);
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #495057;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .main-content-container {
                width: 95%;
                padding: 1rem;
            }
            article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .sidebar {
                position: static;
            }
        }
