        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f9f9f9 0%, #eef1f5 100%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Georgia', 'Times New Roman', serif; color: #1a365d; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; margin-top: 1.5rem; border-bottom: 4px solid #cba328; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; padding-left: 0.75rem; border-left: 5px solid #8b4513; }
        h3 { font-size: 1.8rem; margin-top: 2rem; color: #2d3748; }
        p { margin-bottom: 1.5rem; font-size: 1.125rem; }
        a { color: #2b6cb0; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #1a365d; text-decoration: underline; }
        .highlight { background-color: #fffacd; padding: 0.2rem 0.4rem; border-radius: 3px; }
        .bold { font-weight: 700; color: #2d3748; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, #0c1a3a, #1a365d);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Georgia', serif;
            font-size: 2rem;
            font-weight: bold;
            color: #ffdb58;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo-icon { color: #cba328; margin-right: 10px; font-size: 1.8rem; }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li { margin-left: 2rem; }
        .main-nav a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(203, 163, 40, 0.2);
            color: #ffdb58;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #edf2f7;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #718096;
        }
        .breadcrumb a { color: #4a5568; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .article-meta {
            color: #718096;
            font-style: italic;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #cbd5e0;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background: #f7fafc;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #2d3748;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        .search-form { display: flex; }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 2px solid #cbd5e0;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background: #2b6cb0;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #1a365d; }
        .rating-form, .comment-form { display: flex; flex-direction: column; gap: 1rem; }
        .stars { display: flex; gap: 0.3rem; direction: rtl; }
        .stars input { display: none; }
        .stars label {
            font-size: 1.8rem;
            color: #cbd5e0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label { color: #ffc107; }
        .form-group { display: flex; flex-direction: column; }
        .form-group label { margin-bottom: 0.5rem; font-weight: 600; color: #4a5568; }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem;
            border: 2px solid #cbd5e0;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .submit-btn {
            background: linear-gradient(to right, #2b6cb0, #4a90e2);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #1a365d, #2b6cb0);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .web-links {
            background: #1a365d;
            color: white;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .web-links h2 {
            color: #ffdb58;
            border: none;
            padding-left: 0;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(203, 163, 40, 0.2);
            transform: translateX(5px);
        }
        .web-link a {
            color: #e2e8f0;
            display: block;
            font-weight: 500;
        }
        .site-footer {
            background: #0c1a3a;
            color: #a0aec0;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-family: 'Georgia', serif;
            font-size: 1.8rem;
            color: #ffdb58;
            margin-bottom: 1rem;
        }
        .footer-nav h4 {
            color: #ffdb58;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-nav ul { list-style: none; }
        .footer-nav li { margin-bottom: 0.7rem; }
        .footer-nav a { color: #cbd5e0; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #718096;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-content { flex-wrap: wrap; }
            .hamburger { display: block; }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1rem;
            }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; }
            .main-nav li { margin: 0.5rem 0; }
            article { padding: 1.5rem; }
            .sidebar-widget { padding: 1.2rem; }
        }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .p-2 { padding: 2rem; }
