        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #222;
            background-color: #f8f9fa;
            background-image: linear-gradient(to bottom, #e6f2ff 0%, #f8f9fa 100px);
        }
        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, #0c1a3a 0%, #1a3a7a 100%);
            color: #fff;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: #ffd700;
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            font-family: Georgia, serif;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: #ff6b6b;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #d1e0ff;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            transition: color 0.3s;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: #ffd700;
            border-bottom-color: #ffd700;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a3a7a;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #d1e0ff;
            text-decoration: none;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: background 0.3s;
        }
        .nav-mobile a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #ffd700;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 0.8rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #1a3a7a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #666;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        }
        .article h1 {
            color: #0c1a3a;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            .article h1 {
                font-size: 2rem;
            }
        }
        .article-meta {
            color: #666;
            margin-bottom: 2rem;
            font-style: italic;
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .article-meta i {
            color: #1a3a7a;
        }
        .article h2 {
            color: #1a3a7a;
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid #ff6b6b;
        }
        .article h3 {
            color: #333;
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
        }
        .article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .article strong {
            color: #0c1a3a;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(to right, #f0f7ff, #e1f0ff);
            border-left: 5px solid #1a3a7a;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #555;
            padding: 0.8rem;
            background: #f9f9f9;
            font-size: 0.95rem;
        }
        .internal-link {
            color: #1a3a7a;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dashed #1a3a7a;
            transition: all 0.3s;
        }
        .internal-link:hover {
            color: #ff6b6b;
            border-bottom-style: solid;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: #fff;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: #0c1a3a;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd700;
            font-size: 1.3rem;
        }
        .search-box input {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 2px solid #d1e0ff;
            border-radius: 50px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-box input:focus {
            outline: none;
            border-color: #1a3a7a;
        }
        .search-box button {
            width: 100%;
            margin-top: 0.8rem;
            padding: 0.8rem;
            background: linear-gradient(to right, #1a3a7a, #0c1a3a);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-box button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 58, 122, 0.3);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active,
        .star:hover {
            color: #ffd700;
        }
        .rating-text {
            text-align: center;
            font-weight: 600;
            color: #333;
        }
        .review-form textarea,
        .review-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
        }
        .review-form button {
            background: #28a745;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .review-form button:hover {
            background: #218838;
        }
        .footer-links {
            background: #e9ecef;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem 0.5rem 0;
        }
        .web-link a {
            color: #1a3a7a;
            text-decoration: none;
            background: #fff;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            border: 1px solid #c5d5ff;
            transition: all 0.3s;
            font-size: 0.95rem;
        }
        .web-link a:hover {
            background: #1a3a7a;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .site-footer {
            background: #0c1a3a;
            color: #d1e0ff;
            padding: 2.5rem 0 1.5rem;
            text-align: center;
        }
        .footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-nav a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-nav a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            font-size: 0.9rem;
            color: #a3b3d6;
        }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
