        * {
            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;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #1a73e8;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
        }
        ul {
            list-style: none;
        }
        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, #0c4b8a 0%, #1a73e8 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ffcc00;
        }
        .search-box {
            display: flex;
            flex: 0 1 400px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: #ffcc00;
            color: #0c4b8a;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ffdb4d;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }
        .main-nav ul {
            display: flex;
            gap: 25px;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #ffcc00;
            border-bottom-color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background: #e9f2ff;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #1a73e8;
        }
        .breadcrumb span {
            color: #777;
            margin: 0 5px;
        }
        .main-content {
            flex: 1;
            padding: 30px 0;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-header {
            margin-bottom: 30px;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: #0c4b8a;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        .article-meta span i {
            margin-right: 5px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .featured-image figcaption {
            padding: 10px;
            background: #f1f8ff;
            font-size: 0.9rem;
            color: #555;
            text-align: center;
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .article-body h2 {
            font-size: 2rem;
            color: #0c4b8a;
            margin: 1.8em 0 0.8em;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc00;
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: #1a73e8;
            margin: 1.5em 0 0.7em;
        }
        .article-body emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-body strong {
            color: #0c4b8a;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(to right, #e9f2ff, #ffffff);
            border-left: 5px solid #1a73e8;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .internal-links {
            background: #f1f8ff;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .internal-links h4 {
            color: #0c4b8a;
            margin-bottom: 15px;
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        .internal-links li a {
            display: block;
            padding: 8px 12px;
            background: white;
            border-radius: 5px;
            border: 1px solid #cfe2ff;
            transition: all 0.3s;
        }
        .internal-links li a:hover {
            background: #1a73e8;
            color: white;
            transform: translateY(-2px);
        }
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e0e0e0;
        }
        .sidebar-widget h3 {
            color: #0c4b8a;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffcc00;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 20px 0;
        }
        .rating-widget .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .star:hover,
        .rating-widget .star.active {
            color: #ffcc00;
        }
        .rating-widget button {
            background: #0c4b8a;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: background 0.3s;
        }
        .rating-widget button:hover {
            background: #1a73e8;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            background: #1a73e8;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #0c4b8a;
        }
        .trending-links ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .trending-links li a {
            display: block;
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #1a73e8;
            transition: all 0.3s;
        }
        .trending-links li a:hover {
            background: #e9f2ff;
            transform: translateX(5px);
        }
        .footer-links {
            background: #0c4b8a;
            color: white;
            padding: 40px 0;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 600;
        }
        .footer-bottom {
            background: #08315e;
            color: #ccc;
            padding: 25px 0;
            text-align: center;
        }
        .footer-bottom p {
            margin-bottom: 10px;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        .social-links a {
            color: white;
            font-size: 1.2rem;
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s, transform 0.3s;
        }
        .social-links a:hover {
            background: #1a73e8;
            transform: scale(1.1);
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 15px;
            }
            .search-box {
                width: 100%;
                max-width: 500px;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background: #0c4b8a;
                padding: 80px 30px 30px;
                transition: left 0.5s ease;
                z-index: 999;
                box-shadow: 5px 0 15px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .main-nav a {
                display: block;
                padding: 15px 10px;
                border-bottom: none;
            }
            .close-menu {
                position: absolute;
                top: 20px;
                right: 20px;
                color: white;
                font-size: 1.8rem;
                cursor: pointer;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .internal-links ul {
                grid-template-columns: 1fr;
            }
        }
