        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #2c5aa0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e67e22;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 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;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #ffd700, #ffecb3);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ffd700;
            margin: 3px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #e3f2fd;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffd700;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #5c6bc0;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #78909c;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
            flex: 1;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 1.2rem;
            line-height: 1.2;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 0.5rem;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #283593;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #e67e22;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #3949ab;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        .article-content h4 {
            font-size: 1.3rem;
            color: #5c6bc0;
            margin-top: 1.5rem;
            margin-bottom: 0.6rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .article-content strong {
            color: #1a237e;
            font-weight: 700;
        }
        .article-content em {
            color: #d35400;
            font-style: italic;
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #ddd;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .pull-quote {
            background: linear-gradient(to right, #f8f9fa, #e8eaf6);
            border-left: 6px solid #2c5aa0;
            padding: 1.5rem;
            margin: 2rem 0;
            font-size: 1.3rem;
            font-style: italic;
            color: #2c3e50;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }
        .sidebar-widget h3 {
            color: #1a237e;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #ccc;
        }
        .search-form input {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            margin-bottom: 0.8rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(to right, #2c5aa0, #3949ab);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #e67e22, #d35400);
        }
        .rating-form .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-form .stars .star:hover,
        .rating-form .stars .star.active {
            color: #ffd700;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 0.8rem;
        }
        .comment-form button, .rating-form button {
            padding: 0.8rem 1.5rem;
            background-color: #27ae60;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background-color: #219653;
        }
        .update-time {
            background-color: #fff8e1;
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
            font-weight: 600;
            color: #e67e22;
        }
        .site-footer {
            background: linear-gradient(135deg, #1a237e, #0d1440);
            color: #e3f2fd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.6rem;
        }
        .footer-links a {
            color: #bbdefb;
        }
        .footer-links a:hover {
            color: #ffd700;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            margin-bottom: 1rem;
            border-left: 4px solid #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #90a4ae;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #283593;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active ul {
                display: flex;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.7rem;
            }
        }
