* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a { color: #007bff; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #0056b3; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: linear-gradient(135deg, #0d3a5f 0%, #1a5f8a 100%);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            letter-spacing: -1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span { color: #ffcc00; }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #6c757d;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            margin-left: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffcc00;
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .search-box {
            margin: 2rem auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-button {
            background: #ffcc00;
            color: #0d3a5f;
            border: none;
            padding: 0 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #e6b800;
        }
        main {
            flex-grow: 1;
            padding: 2rem 0;
        }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-container { grid-template-columns: 1fr; }
        }
        .article-main {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .article-header { margin-bottom: 2.5rem; }
        .article-title {
            font-size: 2.8rem;
            color: #0d3a5f;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #6c757d;
            font-size: 0.95rem;
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .article-image {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .article-content {
            font-size: 1.1rem;
            color: #444;
        }
        .article-content p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #1a5f8a;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffcc00;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #2c7bb6;
            margin: 2.5rem 0 1rem;
        }
        .article-content ul, .article-content ol {
            margin-left: 2rem;
            margin-bottom: 1.8rem;
        }
        .article-content blockquote {
            border-left: 5px solid #ffcc00;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #fcf8e3;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2em 0.4em;
            border-radius: 4px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.5rem;
            color: #0d3a5f;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffcc00;
        }
        .rating-form .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .rating-form .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-form .star:hover,
        .rating-form .star.active {
            color: #ffcc00;
        }
        .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background: #0d3a5f;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #1a5f8a;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-family: inherit;
        }
        .comment-form button {
            background: #28a745;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #218838;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .site-footer {
            background: #0d3a5f;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: #ffcc00;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2c7bb6;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: #0d3a5f;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                width: 100%;
            }
            .main-nav li {
                margin: 0;
                width: 100%;
                text-align: center;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .article-title { font-size: 2.2rem; }
            .article-content { font-size: 1rem; }
            .article-main { padding: 1.5rem; }
        }
