        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            font-size: 1.05rem;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #004999;
            text-decoration: underline;
        }
        ul, ol {
            padding-left: 1.5rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .logo-icon {
            color: #ffcc00;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #ffcc00;
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }
        .nav-desktop a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1e3c72;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #0066cc;
        }
        .breadcrumb .separator {
            margin: 0 8px;
            color: #888;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.5rem;
            color: #1e3c72;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        h2 {
            font-size: 1.8rem;
            color: #2a5298;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0f0f0;
        }
        h3 {
            font-size: 1.4rem;
            color: #333;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            color: #555;
            background: #f0f8ff;
            padding: 1.5rem;
            border-left: 4px solid #0066cc;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background: #fffacd;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #ffcc00;
            margin: 2rem 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #dee2e6;
        }
        .stat-item {
            text-align: center;
            padding: 1rem;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e3c72;
            display: block;
            line-height: 1;
        }
        .stat-label {
            color: #666;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        .quote {
            font-style: italic;
            color: #555;
            border-left: 4px solid #ccc;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-size: 1.1rem;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: #333;
            margin-top: 0.5rem;
        }
        .featured-image {
            margin: 2.5rem auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #666;
            padding: 0.8rem;
            background: #f9f9f9;
        }
        .interactive-section {
            background: #f0f8ff;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #cce5ff;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #0066cc;
            box-shadow: 0 0 0 3px rgba(0,102,204,0.2);
        }
        .btn {
            display: inline-block;
            background: #0066cc;
            color: white;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn:hover {
            background: #004999;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .btn i {
            margin-right: 8px;
        }
        .rating {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            color: #ccc;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .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.3rem;
            color: #1e3c72;
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #f0f0f0;
        }
        .related-links {
            list-style: none;
            padding-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .related-links li:before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #0066cc;
            font-size: 0.8rem;
        }
        .site-footer {
            background: #1a1a1a;
            color: #ddd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: white;
        }
        friend-link {
            display: block;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
        }
        .friend-link-title {
            color: #ccc;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .friend-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .friend-link-list a {
            background: #333;
            color: #aaa;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        .friend-link-list a:hover {
            background: #444;
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .text-bold {
            font-weight: 700;
            color: #1e3c72;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .p-2 { padding: 2rem; }
        @media (max-width: 768px) {
            .article-content, .sidebar-widget {
                padding: 1.5rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
        }
