        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            padding-top: 80px; 
        }
        a {
            color: #2c5aa0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e74c3c;
        }
        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 100%);
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo a {
            color: inherit;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            color: #ffd700;
            border-bottom-color: #ffd700;
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger-btn {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            background-color: #2c3e50;
            padding: 20px;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #ecf0f1;
            padding: 12px;
            border-left: 4px solid #3498db;
            background-color: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 20px;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb span {
            color: #888;
        }
        .main-content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content-area {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-header {
            border-bottom: 3px solid #2c5aa0;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        .last-updated {
            background-color: #e8f4fd;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
        }
        .last-updated i {
            color: #2c5aa0;
            margin-right: 5px;
        }
        h2 {
            font-size: 2rem;
            color: #283593;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #ddd;
        }
        h3 {
            font-size: 1.6rem;
            color: #3949ab;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #5c6bc0;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-left: 5px solid #2c5aa0;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box strong {
            color: #1a237e;
            font-size: 1.1rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #2c5aa0;
            display: block;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .internal-links-section {
            background-color: #f0f7ff;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .internal-links-section h3 {
            margin-top: 0;
        }
        .internal-links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
        }
        .internal-links-list li {
            background-color: white;
            padding: 12px 20px;
            border-radius: 30px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .sidebar {
                order: -1;
            }
        }
        .sidebar-widget {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #1a237e;
            font-size: 1.4rem;
            margin-top: 0;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-right: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #2c5aa0;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #1a237e;
        }
        .rating-widget .stars {
            color: #ffd700;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .rating-widget select, .rating-widget textarea, .rating-widget input {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            width: 100%;
        }
        .rating-widget button {
            background-color: #27ae60;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .rating-widget button:hover {
            background-color: #219653;
        }
        .site-footer {
            background-color: #1a1a2e;
            color: #ccc;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            color: #a0c8ff;
        }
        friend-link:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #888;
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: #1a237e;
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
