<style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: #0A0C15;
            color: #F1F5F9;
            line-height: 1.5;
        }
        ::-webkit-scrollbar { width: 6px; height: 6px; }
        ::-webkit-scrollbar-track { background: #1E293B; border-radius: 10px; }
        ::-webkit-scrollbar-thumb { background: #3B4B66; border-radius: 10px; }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
        /* 导航栏 */
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 20px 0;
            border-bottom: 1px solid #1F2937;
            margin-bottom: 32px;
        }
        .logo { display: flex; align-items: center; gap: 12px; }
        .logo-icon { font-size: 32px; color: #10B981; }
        .logo-text { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; background: linear-gradient(135deg, #FFFFFF 0%, #A7F3D0 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
        .logo-badge { background: #10B98120; border: 1px solid #10B98140; border-radius: 40px; padding: 4px 12px; font-size: 12px; font-weight: 500; color: #10B981; }
        .nav-links { display: flex; gap: 28px; font-weight: 500; }
        .nav-links a { transition: color 0.2s; }
        .nav-links a:hover, .nav-links a.active { color: #10B981; }
        .user-area { display: flex; gap: 20px; align-items: center; }
        .search-icon, .user-icon { font-size: 20px; cursor: pointer; transition: color 0.2s; }
        .search-icon:hover, .user-icon:hover { color: #10B981; }
        /* 页面头部 */
        .hero {
            background: linear-gradient(135deg, #0F121E 0%, #0A0C15 100%);
            border-radius: 32px;
            padding: 28px 32px;
            margin-bottom: 36px;
            border: 1px solid #262E40;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .hero-text h1 { font-size: 1.9rem; font-weight: 800; margin-bottom: 8px; }
        .hero-text p { color: #9CA3AF; }
        .breaking-news { background: #EF444420; border-radius: 60px; padding: 8px 20px; display: flex; align-items: center; gap: 12px; }
        .breaking-label { background: #EF4444; padding: 4px 12px; border-radius: 40px; font-weight: bold; font-size: 0.7rem; letter-spacing: 1px; }
        /* 分类选项卡 */
        .category-tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; border-bottom: 1px solid #1F2937; padding-bottom: 12px; }
        .cat-btn { background: transparent; border: none; padding: 8px 20px; border-radius: 40px; font-weight: 600; color: #94A3B8; cursor: pointer; transition: all 0.2s; font-family: inherit; }
        .cat-btn.active, .cat-btn:hover { background: #10B981; color: #0A0C15; }
        /* 新闻布局 */
        .news-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; margin-bottom: 48px; }
        .news-feed { display: flex; flex-direction: column; gap: 24px; }
        .news-card {
            background: #0F121E;
            border-radius: 24px;
            border: 1px solid #262E40;
            overflow: hidden;
            transition: all 0.2s;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover { border-color: #10B98160; transform: translateY(-3px); }
        .news-image { height: 180px; background-size: cover; background-position: center; position: relative; }
        .news-category { position: absolute; top: 16px; left: 16px; background: #10B981; color: #0A0C15; padding: 4px 14px; border-radius: 30px; font-size: 0.7rem; font-weight: bold; }
        .news-content { padding: 20px; }
        .news-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
        .news-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: #6C7A91; }
        .read-more { color: #10B981; font-weight: 500; cursor: pointer; background: none; border: none; font-family: inherit; font-size: inherit; }
        .read-more:hover { text-decoration: underline; }
        /* 侧边栏 */
        .sidebar { display: flex; flex-direction: column; gap: 28px; }
        .sidebar-card { background: #0F121E; border-radius: 24px; border: 1px solid #262E40; padding: 20px; }
        .sidebar-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; border-left: 3px solid #10B981; padding-left: 12px; }
        .hot-item { display: flex; gap: 12px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid #1F2937; cursor: pointer; transition: color 0.2s; text-decoration: none; color: inherit; }
        .hot-item:hover { color: #10B981; }
        .hot-rank { font-weight: 800; font-size: 1.3rem; color: #10B981; min-width: 32px; }
        .hot-title { font-weight: 500; font-size: 0.9rem; }
        .rumor-item { margin-bottom: 16px; padding: 8px 0; border-bottom: 1px dashed #1F2937; font-size: 0.85rem; }
        .rumor-club { color: #10B981; font-weight: 600; }
        .empty-news { text-align: center; padding: 60px; background: #0F121E; border-radius: 28px; color: #6C7A91; }
        .footer { border-top: 1px solid #1F2937; padding: 32px 0; margin-top: 20px; text-align: center; font-size: 13px; color: #6C7A91; }
        @media (max-width: 900px) {
            .news-layout { grid-template-columns: 1fr; }
            .navbar { flex-direction: column; gap: 16px; }
            .nav-links { justify-content: center; }
            .hero { flex-direction: column; text-align: center; }
        }
    </style>