/* Start custom CSS */<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Main Content */
        .main-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 3rem 2rem 4rem;
        }
        .article-header {
            margin-bottom: 2rem;
        }
        .article-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        .article-meta {
            color: #888;
            font-style: italic;
            font-size: 0.95rem;
        }
        .article-intro {
            font-size: 1.15rem;
            color: #444;
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #eee;
        }
        p {
            margin-bottom: 1rem;
            color: #444;
        }
        ul {
            margin: 1rem 0 1.5rem 1.5rem;
        }
        li {
            margin-bottom: 0.6rem;
            color: #444;
        }
        li strong {
            color: #333;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e8f4f5 0%, #d5eef0 100%);
            border: 2px solid #2d9ba8;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            margin: 2.5rem 0;
        }
        .highlight-box-title {
            color: #2d9ba8;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .highlight-box p {
            margin-bottom: 0;
            color: #333;
        }
        .emphasis {
            color: #2d9ba8;
            font-style: italic;
        }
        .hashtags {
            color: #2d9ba8;
            font-size: 0.9rem;
            margin-top: 2.5rem;
        }
        .share-cta {
            font-style: italic;
            color: #666;
            margin-top: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
        }
        /* Footer */
        .footer {
            background: linear-gradient(180deg, #1a3a5c 0%, #0d2137 100%);
            position: relative;
            overflow: hidden;
            color: #fff;
            padding-top: 100px;
        }
        .footer-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
        }
        .footer-stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(2px 2px at 20px 30px, white, transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
                radial-gradient(1px 1px at 90px 40px, white, transparent),
                radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.6), transparent),
                radial-gradient(1px 1px at 160px 30px, white, transparent),
                radial-gradient(2px 2px at 200px 60px, rgba(255,255,255,0.7), transparent),
                radial-gradient(1px 1px at 250px 20px, white, transparent),
                radial-gradient(2px 2px at 300px 50px, rgba(255,255,255,0.5), transparent),
                radial-gradient(1px 1px at 350px 80px, white, transparent),
                radial-gradient(2px 2px at 400px 30px, rgba(255,255,255,0.8), transparent);
            background-size: 400px 100px;
            animation: twinkle 4s ease-in-out infinite;
        }
        @keyframes twinkle {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }
        .footer-content {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 2fr;
            gap: 3rem;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-logo .logo-text {
            font-size: 1.4rem;
        }
        .footer-about p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        .footer-links h4,
        .footer-news h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .footer-links ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #5bb5c5;
        }
        .footer-news p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .nav {
                flex-wrap: wrap;
                gap: 0.5rem 1rem;
            }
            .nav a {
                font-size: 0.9rem;
                padding: 0.4rem 0.8rem;
            }
            .article-title {
                font-size: 1.8rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-logo {
                justify-content: center;
            }
        }
    </style>

<!-- Main Content -->/* End custom CSS */