/* ============================================
   黑料情报站 - 主样式表
   CSS前缀: hl-
   风格: 狗仔队小报风 (Tabloid Paparazzi Style)
   ============================================ */

/* === 字体引入 === */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&family=Noto+Serif+SC:wght@400;600;700;900&display=swap');

/* === CSS变量 === */
:root {
    --hl-primary: #FFFEF0;
    --hl-accent: #CC0000;
    --hl-black: #000000;
    --hl-text: #1A1A1A;
    --hl-link: #CC0000;
    --hl-border: #333333;
    --hl-gray: #666666;
    --hl-light-gray: #E8E8E0;
    --hl-font-title: 'Noto Serif SC', 'Georgia', serif;
    --hl-font-body: 'Noto Sans SC', 'Arial', sans-serif;
}

/* === 干扰码隐藏 === */
.scoop-jammer-block {
    display: none !important;
}

/* === 全局重置 === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--hl-font-body);
    color: var(--hl-text);
    background-color: var(--hl-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--hl-link);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #990000;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === 容器 === */
.hl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hl-container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === 导航栏 === */
#hl-header {
    background: #FFFFFF;
    border-bottom: 4px double var(--hl-black);
    padding: 0;
    z-index: 100;
}

.hl-header-top {
    text-align: center;
    padding: 15px 0 5px;
    border-bottom: 1px solid var(--hl-light-gray);
}

.hl-logo {
    font-family: var(--hl-font-title);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--hl-black);
    letter-spacing: 0.05em;
    display: inline-block;
    position: relative;
}

.hl-logo-stamp {
    display: inline-block;
    background: var(--hl-accent);
    color: #fff;
    font-size: 0.9rem;
    padding: 2px 8px;
    transform: rotate(-5deg);
    margin-left: 5px;
    vertical-align: middle;
    font-family: var(--hl-font-title);
    letter-spacing: 0.1em;
}

.hl-header-date {
    font-size: 0.8rem;
    color: var(--hl-gray);
    margin-top: 3px;
    font-family: var(--hl-font-body);
}

.hl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    gap: 0;
    flex-wrap: wrap;
}

.hl-nav a {
    font-family: var(--hl-font-title);
    font-weight: 700;
    font-size: 1rem;
    color: var(--hl-black);
    padding: 8px 18px;
    text-decoration: none;
    position: relative;
    transition: all 0.25s ease;
    border-right: 1px solid var(--hl-light-gray);
}

.hl-nav a:last-child {
    border-right: none;
}

.hl-nav a:hover {
    color: var(--hl-accent);
    transform: scale(1.05);
    text-decoration: none;
}

.hl-nav a.hl-nav-active {
    color: var(--hl-accent);
}

.hl-nav a.hl-nav-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--hl-accent);
}

/* 汉堡菜单 */
.hl-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 200;
}

.hl-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--hl-black);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hl-hamburger.hl-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hl-hamburger.hl-active span:nth-child(2) {
    opacity: 0;
}

.hl-hamburger.hl-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hl-mobile-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 4px double var(--hl-black);
    padding: 30px 20px;
    z-index: 150;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}

.hl-mobile-menu.hl-open {
    transform: translateY(0);
}

.hl-mobile-menu a {
    display: block;
    font-family: var(--hl-font-title);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--hl-black);
    padding: 12px 0;
    border-bottom: 1px dashed var(--hl-light-gray);
    text-decoration: none;
}

.hl-mobile-menu a:hover,
.hl-mobile-menu a.hl-nav-active {
    color: var(--hl-accent);
}

.hl-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 140;
}

/* === 头版头条 Hero === */
.hl-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    border-bottom: 4px solid var(--hl-accent);
}

.hl-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9);
}

.hl-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 60px 40px 30px;
}

.hl-hero-tag {
    display: inline-block;
    background: var(--hl-accent);
    color: #fff;
    font-family: var(--hl-font-title);
    font-weight: 900;
    font-size: 1.1rem;
    padding: 5px 15px;
    margin-bottom: 10px;
    animation: hl-flash 2s infinite;
}

@keyframes hl-flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hl-hero-title {
    font-family: var(--hl-font-title);
    font-weight: 900;
    font-size: 2.8rem;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hl-hero-desc {
    color: #ddd;
    font-size: 1.05rem;
    max-width: 700px;
}

/* === 模块通用 === */
.hl-section {
    padding: 40px 0;
    border-bottom: 2px solid var(--hl-light-gray);
}

.hl-section:last-child {
    border-bottom: none;
}

.hl-section-header {
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid var(--hl-accent);
}

.hl-section-title {
    font-family: var(--hl-font-title);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--hl-black);
    line-height: 1.3;
}

.hl-section-subtitle {
    font-size: 0.95rem;
    color: var(--hl-gray);
    margin-top: 5px;
}

.hl-section-tag {
    display: inline-block;
    background: var(--hl-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    margin-bottom: 8px;
    font-family: var(--hl-font-title);
}

/* === 独家爆料 时间线 === */
.hl-timeline {
    position: relative;
    padding-left: 30px;
}

.hl-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--hl-accent);
}

.hl-timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid var(--hl-light-gray);
    border-left: 3px solid var(--hl-accent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hl-timeline-item:hover {
    transform: translateX(5px);
    box-shadow: -3px 3px 10px rgba(0,0,0,0.1);
}

.hl-timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: var(--hl-accent);
    border-radius: 50%;
    border: 2px solid #fff;
}

.hl-timeline-time {
    font-size: 0.8rem;
    color: var(--hl-accent);
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--hl-font-body);
}

.hl-timeline-title {
    font-family: var(--hl-font-title);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--hl-black);
    margin-bottom: 5px;
}

.hl-timeline-desc {
    font-size: 0.9rem;
    color: var(--hl-gray);
}

/* === 卡片布局 === */
.hl-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hl-card {
    background: #fff;
    border: 1px solid var(--hl-light-gray);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.hl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hl-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.hl-card-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.hl-card:hover .hl-card-img-wrap img {
    filter: brightness(1.1);
}

/* 快门闪光效果 */
.hl-card-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0);
    transition: background 0.1s ease;
    pointer-events: none;
}

.hl-card:hover .hl-card-img-wrap::after {
    animation: hl-shutter 0.3s ease;
}

@keyframes hl-shutter {
    0% { background: rgba(255,255,255,0); }
    30% { background: rgba(255,255,255,0.8); }
    100% { background: rgba(255,255,255,0); }
}

.hl-card-tag {
    position: absolute;
    top: 10px;
    left: 0;
    background: var(--hl-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 12px;
    font-family: var(--hl-font-title);
}

.hl-card-body {
    padding: 15px;
}

.hl-card-title {
    font-family: var(--hl-font-title);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--hl-black);
    margin-bottom: 8px;
    line-height: 1.4;
}

.hl-card-excerpt {
    font-size: 0.88rem;
    color: var(--hl-gray);
    line-height: 1.6;
}

.hl-card-meta {
    font-size: 0.78rem;
    color: #999;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--hl-light-gray);
}

/* === 翻车指数 === */
.hl-fail-meter {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.hl-fail-meter-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--hl-accent);
    white-space: nowrap;
}

.hl-fail-meter-bar {
    flex: 1;
    height: 8px;
    background: var(--hl-light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.hl-fail-meter-fill {
    height: 100%;
    background: var(--hl-accent);
    border-radius: 4px;
    transition: width 0.6s ease;
}

/* === 吃瓜群众席 评论区 === */
.hl-comments-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hl-comment-item {
    background: #fff;
    border: 1px solid var(--hl-light-gray);
    padding: 20px;
    position: relative;
    border-left: 4px solid var(--hl-accent);
}

.hl-comment-item::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--hl-accent);
    opacity: 0.3;
    position: absolute;
    top: 5px;
    left: 10px;
    font-family: Georgia, serif;
}

.hl-comment-text {
    font-size: 0.95rem;
    color: var(--hl-text);
    font-style: italic;
    padding-left: 20px;
    line-height: 1.7;
}

.hl-comment-author {
    font-size: 0.82rem;
    color: var(--hl-gray);
    margin-top: 10px;
    text-align: right;
}

/* === 排行榜 === */
.hl-ranking-list {
    counter-reset: hl-rank;
}

.hl-ranking-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--hl-light-gray);
    transition: background 0.2s ease;
    counter-increment: hl-rank;
}

.hl-ranking-item:hover {
    background: rgba(204, 0, 0, 0.03);
}

.hl-ranking-num {
    font-family: var(--hl-font-title);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--hl-accent);
    min-width: 50px;
    text-align: center;
}

.hl-ranking-item:nth-child(n+4) .hl-ranking-num {
    color: var(--hl-gray);
}

.hl-ranking-info {
    flex: 1;
    margin-left: 15px;
}

.hl-ranking-name {
    font-family: var(--hl-font-title);
    font-weight: 700;
    font-size: 1rem;
    color: var(--hl-black);
}

.hl-ranking-event {
    font-size: 0.85rem;
    color: var(--hl-gray);
    margin-top: 3px;
}

.hl-ranking-heat {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--hl-accent);
    white-space: nowrap;
}

/* === 辟谣专栏 === */
.hl-rumor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hl-rumor-card {
    background: #fff;
    border: 1px solid var(--hl-light-gray);
    padding: 20px;
    position: relative;
}

.hl-rumor-verdict {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    margin-bottom: 10px;
    color: #fff;
}

.hl-rumor-verdict.hl-false {
    background: var(--hl-accent);
}

.hl-rumor-verdict.hl-partial {
    background: #E67E22;
}

.hl-rumor-verdict.hl-true {
    background: #27AE60;
}

.hl-rumor-claim {
    font-family: var(--hl-font-title);
    font-weight: 700;
    font-size: 1rem;
    color: var(--hl-black);
    margin-bottom: 8px;
    text-decoration: line-through;
    text-decoration-color: var(--hl-accent);
}

.hl-rumor-truth {
    font-size: 0.88rem;
    color: var(--hl-gray);
}

/* === 线人悬赏 === */
.hl-bounty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hl-bounty-card {
    background: #fff;
    border: 2px dashed var(--hl-accent);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

.hl-bounty-card:hover {
    transform: scale(1.02);
}

.hl-bounty-reward {
    font-family: var(--hl-font-title);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--hl-accent);
    margin-bottom: 10px;
}

.hl-bounty-title {
    font-family: var(--hl-font-title);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--hl-black);
    margin-bottom: 8px;
}

.hl-bounty-desc {
    font-size: 0.85rem;
    color: var(--hl-gray);
}

/* === 编辑部招人 === */
.hl-recruit {
    background: var(--hl-black);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.hl-recruit-title {
    font-family: var(--hl-font-title);
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 15px;
}

.hl-recruit-desc {
    font-size: 1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.hl-btn {
    display: inline-block;
    background: var(--hl-accent);
    color: #fff;
    font-family: var(--hl-font-title);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 35px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hl-btn:hover {
    background: #990000;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.hl-btn-outline {
    background: transparent;
    border: 2px solid var(--hl-accent);
    color: var(--hl-accent);
}

.hl-btn-outline:hover {
    background: var(--hl-accent);
    color: #fff;
}

/* === 页脚 === */
#hl-footer {
    background: var(--hl-black);
    color: #ccc;
    padding: 40px 0 20px;
    border-top: 4px double var(--hl-accent);
}

.hl-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.hl-footer-col h4 {
    font-family: var(--hl-font-title);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
}

.hl-footer-col a {
    display: block;
    color: #999;
    font-size: 0.88rem;
    padding: 4px 0;
    text-decoration: none;
}

.hl-footer-col a:hover {
    color: var(--hl-accent);
    text-decoration: none;
}

.hl-footer-col p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
}

.hl-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #666;
}

.hl-footer-bottom p {
    margin-bottom: 5px;
}

.hl-footer-bottom a {
    color: #888;
    text-decoration: none;
}

.hl-footer-bottom a:hover {
    color: var(--hl-accent);
    text-decoration: none;
}

.hl-footer-honor {
    color: #888;
    font-size: 0.78rem;
    margin-top: 8px;
}

/* === 内页通用 === */
.hl-page-header {
    background: var(--hl-black);
    color: #fff;
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 4px solid var(--hl-accent);
}

.hl-page-title {
    font-family: var(--hl-font-title);
    font-weight: 900;
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.hl-page-desc {
    font-size: 1rem;
    color: #bbb;
    max-width: 700px;
}

/* === 文章页 === */
.hl-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.hl-article-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--hl-light-gray);
}

.hl-article-category {
    display: inline-block;
    background: var(--hl-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.hl-article h1 {
    font-family: var(--hl-font-title);
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hl-article-meta {
    font-size: 0.85rem;
    color: var(--hl-gray);
}

.hl-article-meta span {
    margin-right: 15px;
}

.hl-article-content {
    font-size: 1rem;
    line-height: 1.9;
}

.hl-article-content p {
    margin-bottom: 18px;
}

.hl-article-content h2 {
    font-family: var(--hl-font-title);
    font-weight: 700;
    font-size: 1.4rem;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid var(--hl-accent);
}

.hl-article-content h3 {
    font-family: var(--hl-font-title);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 25px 0 12px;
}

.hl-article-content blockquote {
    border-left: 4px solid var(--hl-accent);
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(204, 0, 0, 0.03);
    font-style: italic;
    color: var(--hl-gray);
}

.hl-article-img {
    margin: 25px 0;
    border: 1px solid var(--hl-light-gray);
}

.hl-article-img img {
    width: 100%;
}

.hl-article-img figcaption {
    font-size: 0.82rem;
    color: var(--hl-gray);
    padding: 8px 12px;
    background: #f9f9f5;
    text-align: center;
}

/* === 线人举报页 === */
.hl-tipoff-page {
    background-image: url('../images/tipoff-bg.webp');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    position: relative;
}

.hl-tipoff-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 254, 240, 0.92);
}

.hl-tipoff-form-wrap {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.hl-tipoff-intro {
    text-align: center;
    margin-bottom: 35px;
}

.hl-tipoff-intro h2 {
    font-family: var(--hl-font-title);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--hl-black);
    margin-bottom: 10px;
}

.hl-tipoff-intro p {
    color: var(--hl-gray);
    font-size: 0.95rem;
}

.hl-form-group {
    margin-bottom: 22px;
}

.hl-form-group label {
    display: block;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--hl-black);
    margin-bottom: 6px;
}

.hl-form-group input[type="text"],
.hl-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--hl-border);
    background: rgba(255, 254, 240, 0.8);
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: var(--hl-text);
    transition: border-color 0.3s ease;
}

.hl-form-group input[type="text"]:focus,
.hl-form-group textarea:focus {
    outline: none;
    border-color: var(--hl-accent);
}

.hl-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.hl-file-upload {
    border: 2px dashed var(--hl-border);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
    background: rgba(255, 254, 240, 0.5);
}

.hl-file-upload:hover {
    border-color: var(--hl-accent);
}

.hl-file-upload p {
    color: var(--hl-gray);
    font-size: 0.9rem;
}

.hl-file-upload input[type="file"] {
    display: none;
}

.hl-submit-btn {
    display: block;
    width: 100%;
    background: var(--hl-accent);
    color: #fff;
    font-family: var(--hl-font-title);
    font-weight: 900;
    font-size: 1.2rem;
    padding: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
}

.hl-submit-btn:hover {
    background: #990000;
    transform: translateY(-2px);
}

.hl-success-msg {
    display: none;
    text-align: center;
    padding: 30px;
    background: #f0fff0;
    border: 2px solid #27AE60;
    margin-top: 20px;
    font-family: var(--hl-font-title);
    font-size: 1.1rem;
    color: #27AE60;
}

/* === APP下载页 === */
.hl-app-page {
    text-align: center;
    padding: 60px 20px;
}

.hl-app-hero {
    max-width: 900px;
    margin: 0 auto;
}

.hl-app-title {
    font-family: var(--hl-font-title);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--hl-black);
    margin-bottom: 15px;
}

.hl-app-subtitle {
    font-size: 1.05rem;
    color: var(--hl-gray);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.hl-app-mockup {
    max-width: 350px;
    margin: 0 auto 35px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hl-app-qr {
    max-width: 200px;
    margin: 0 auto 25px;
}

.hl-app-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* === 栏目页列表 === */
.hl-article-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.hl-list-card {
    display: flex;
    background: #fff;
    border: 1px solid var(--hl-light-gray);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hl-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hl-list-card-img {
    width: 200px;
    min-height: 160px;
    object-fit: cover;
    flex-shrink: 0;
}

.hl-list-card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hl-list-card-title {
    font-family: var(--hl-font-title);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--hl-black);
    margin-bottom: 8px;
    line-height: 1.4;
}

.hl-list-card-excerpt {
    font-size: 0.85rem;
    color: var(--hl-gray);
    line-height: 1.6;
}

.hl-list-card-meta {
    font-size: 0.78rem;
    color: #999;
    margin-top: 8px;
}

/* === 印刷错位动画 === */
@keyframes hl-misprint {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-1px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-1px, 0); }
    100% { transform: translate(0, 0); }
}

.hl-misprint {
    animation: hl-misprint 0.3s ease forwards;
}

/* === 面包屑 === */
.hl-breadcrumb {
    padding: 12px 0;
    font-size: 0.82rem;
    color: var(--hl-gray);
}

.hl-breadcrumb a {
    color: var(--hl-gray);
}

.hl-breadcrumb a:hover {
    color: var(--hl-accent);
}

.hl-breadcrumb span {
    margin: 0 5px;
}

/* === 分页 === */
.hl-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 30px 0;
}

.hl-pagination a,
.hl-pagination span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--hl-light-gray);
    font-size: 0.88rem;
    color: var(--hl-text);
    text-decoration: none;
}

.hl-pagination a:hover {
    border-color: var(--hl-accent);
    color: var(--hl-accent);
    text-decoration: none;
}

.hl-pagination .hl-current {
    background: var(--hl-accent);
    color: #fff;
    border-color: var(--hl-accent);
}

/* ============================================
   响应式断点
   ============================================ */

/* 1440px */
@media (max-width: 1440px) {
    .hl-container-wide {
        padding: 0 30px;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .hl-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hl-bounty-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hl-hero-title {
        font-size: 2.2rem;
    }

    .hl-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 768px */
@media (max-width: 768px) {
    .hl-nav {
        display: none;
    }

    .hl-hamburger {
        display: block;
    }

    .hl-mobile-menu {
        display: block;
    }

    .hl-hero-img {
        height: 350px;
    }

    .hl-hero-title {
        font-size: 1.6rem;
    }

    .hl-hero-overlay {
        padding: 40px 20px 20px;
    }

    .hl-card-grid {
        grid-template-columns: 1fr;
    }

    .hl-comments-list {
        grid-template-columns: 1fr;
    }

    .hl-rumor-grid {
        grid-template-columns: 1fr;
    }

    .hl-bounty-grid {
        grid-template-columns: 1fr;
    }

    .hl-article-list {
        grid-template-columns: 1fr;
    }

    .hl-list-card {
        flex-direction: column;
    }

    .hl-list-card-img {
        width: 100%;
        height: 180px;
    }

    .hl-footer-grid {
        grid-template-columns: 1fr;
    }

    .hl-section-title {
        font-size: 1.5rem;
    }

    .hl-page-title {
        font-size: 1.8rem;
    }
}

/* 360px */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }

    .hl-logo {
        font-size: 1.6rem;
    }

    .hl-hero-title {
        font-size: 1.3rem;
    }

    .hl-hero-img {
        height: 280px;
    }

    .hl-container {
        padding: 0 12px;
    }

    .hl-section {
        padding: 25px 0;
    }

    .hl-app-title {
        font-size: 1.8rem;
    }
}
