* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
            padding-top: 80px;
        }
        a {
            color: #1a73e8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        .site-header {
            background: linear-gradient(135deg, #0c2461, #1e3799);
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 0 20px;
        }
        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #ffdd59;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            color: #e6e6e6;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a237e;
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            max-width: 1280px;
            margin: 20px auto;
            padding: 0 20px;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a {
            color: #555;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-content {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        }
        article {
            margin-bottom: 50px;
        }
        h1 {
            font-size: 2.8rem;
            color: #0c2461;
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 3px solid #ffdd59;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #1a237e;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeaea;
        }
        h3 {
            font-size: 1.6rem;
            color: #333;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 20px;
            border-left: 5px solid #ffc107;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .stats-table th, .stats-table td {
            border: 1px solid #ddd;
            padding: 15px;
            text-align: center;
        }
        .stats-table th {
            background-color: #1a237e;
            color: white;
            font-weight: 600;
        }
        .stats-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .stats-table tr:hover {
            background-color: #e3f2fd;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            display: block;
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #777;
            margin-top: -15px;
            margin-bottom: 25px;
        }
        .update-time {
            background-color: #e8f5e9;
            padding: 15px;
            border-radius: 8px;
            margin: 30px 0;
            font-weight: 600;
            color: #2e7d32;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: #1a237e;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffdd59;
        }
        .search-form input {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .search-form button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(to right, #1a237e, #3949ab);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #0d47a1, #283593);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #ffc107;
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-widget .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            min-height: 150px;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form button {
            padding: 14px 30px;
            background: linear-gradient(to right, #2e7d32, #4caf50);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: linear-gradient(to right, #1b5e20, #388e3c);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #eee;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .site-footer {
            background: #0c2461;
            color: #e0e0e0;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-section h4 {
            color: #ffdd59;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            color: #bbdefb;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .header-container {
                padding: 12px 0;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .main-content {
                padding: 25px;
            }
        }
