:root {
            --primary-blue: #003366;
            --secondary-gold: #d4af37;
            --accent-green: #00843d;
            --light-bg: #f8f9fa;
            --dark-text: #222222;
            --gray-border: #dee2e6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background-color: #fff;
            max-width: 100vw;
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #002244 100%);
            color: white;
            padding: 1rem 5%;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--secondary-gold);
        }
        .my-logo span {
            background: linear-gradient(to right, var(--secondary-gold), #ffdd40);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .main-nav a:hover {
            color: var(--secondary-gold);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-gold);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 5%;
            background-color: var(--light-bg);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--gray-border);
        }
        .breadcrumb a {
            color: var(--primary-blue);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #666;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 5%;
        }
        main {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 3px solid var(--secondary-gold);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        .excerpt {
            font-size: 1.2rem;
            color: #444;
            background: #f0f8ff;
            padding: 1.5rem;
            border-left: 4px solid var(--accent-green);
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        h2 {
            color: var(--primary-blue);
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--gray-border);
        }
        h3 {
            color: #00509e;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #333;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-gold);
            margin: 1.5rem 0;
            font-weight: 600;
        }
        .stats-box {
            background: linear-gradient(to right, #e6f2ff, #f0f8ff);
            border: 1px solid #cce0ff;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .stats-box h4 {
            color: var(--primary-blue);
            margin-top: 0;
        }
        ul, ol {
            margin: 1rem 0 1rem 2rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        a.internal-link {
            color: var(--accent-green);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted var(--accent-green);
            transition: var(--transition);
        }
        a.internal-link:hover {
            color: var(--primary-blue);
            border-bottom: 1px solid var(--primary-blue);
        }
        .featured-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        blockquote {
            border-left: 5px solid var(--secondary-gold);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background: #fffdf0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        .author-note {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid var(--gray-border);
        }
        aside {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: var(--primary-blue);
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
            border-bottom: 2px solid var(--secondary-gold);
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-input {
            flex: 1;
            padding: 0.85rem 1rem;
            border: 2px solid var(--primary-blue);
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #002244;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffc107;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 2px;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--gray-border);
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
        }
        .form-btn {
            background-color: var(--accent-green);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            width: 100%;
        }
        .form-btn:hover {
            background-color: #006b31;
        }
        .related-links ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        .related-links a {
            color: var(--dark-text);
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        .related-links a:hover {
            color: var(--primary-blue);
            padding-left: 5px;
        }
        .related-links i {
            color: var(--accent-green);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        footer {
            background-color: var(--primary-blue);
            color: white;
            padding: 3rem 5% 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
        }
        .footer-links h4 {
            color: var(--secondary-gold);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #d1e0ff;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        friend-link h4 {
            color: var(--secondary-gold);
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #a3c4ff;
            text-decoration: none;
            display: inline-block;
            margin-right: 1.5rem;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #a3c4ff;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 300px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                padding: 0.8rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            h1 {
                font-size: 2.2rem;
            }
            main, aside {
                padding: 1.5rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        .fade-in {
            animation: fadeIn 1s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
            70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
            100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
        }
        .btn-pulse {
            animation: pulse 2s infinite;
        }
