        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: #d00a2b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #a00822;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #0c2b5e 0%, #1a4393 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;
        }
        .my-logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #ffcc00;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e6e6e6;
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            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: #495057;
        }
        .search-section {
            background-color: #ffffff;
            padding: 2rem 0;
            border-bottom: 1px solid #dee2e6;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background-color: #d00a2b;
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #a00822;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        .article-body h1 {
            font-size: 2.8rem;
            color: #0c2b5e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-body h2 {
            font-size: 2rem;
            color: #1a4393;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffcc00;
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: #333;
            margin: 2rem 0 1rem;
        }
        .article-body h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight {
            background-color: #fff9db;
            border-left: 4px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
        }
        .caption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .link-list {
            background-color: #f1f8ff;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .link-list ul {
            list-style-type: square;
            padding-left: 1.5rem;
        }
        .link-list li {
            margin-bottom: 0.5rem;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat {
            background: linear-gradient(145deg, #0c2b5e, #1a4393);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
            margin-bottom: 0.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .sidebar-widget h3 {
            color: #1a4393;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #dee2e6;
        }
        .rating-widget form,
        .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffcc00;
            margin-bottom: 1rem;
        }
        .rating-stars i {
            cursor: pointer;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
        }
        .submit-btn {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #218838;
        }
        .update-time {
            font-size: 0.9rem;
            color: #6c757d;
            text-align: center;
            margin-top: 1rem;
        }
        .site-footer {
            background-color: #1c1c1c;
            color: #b0b0b0;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #b0b0b0;
        }
        .footer-links a:hover {
            color: white;
        }
        friend-link {
            display: block;
            background-color: #2a2a2a;
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 0.8rem;
            text-align: center;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #0c2b5e;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active ul {
                display: flex;
            }
            .article-body {
                padding: 1.5rem;
            }
            .article-body h1 {
                font-size: 2.2rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 10px;
            }
            .search-input, .search-button {
                border-radius: 0;
                padding: 1rem;
            }
        }
