/* 每日全球奇趣热点 — 深色主题 */
:root {
  --bg: #0f0f1a; --surface: #1a1a2e; --card: #1e1e32;
  --accent: #ff6b6b; --accent2: #4ecdc4; --accent3: #ffe66d;
  --text: #e0e0e0; --text2: #a0a0b0; --border: #2a2a40;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif; line-height: 1.7; }
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

.hot-header { background: var(--surface); border-bottom: 1px solid var(--border); padding: 1rem 0; position: sticky; top: 0; z-index: 10; }
.hot-nav { max-width: 800px; margin: 0 auto; padding: 0 1rem; display: flex; justify-content: space-between; align-items: center; }
.hot-logo { font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.hot-nav nav a { margin-left: 1.5rem; color: var(--text2); font-size: 0.9rem; }

.hot-main { max-width: 800px; margin: 0 auto; padding: 2rem 1rem; min-height: 70vh; }
.hot-hero { text-align: center; padding: 3rem 0 2rem; }
.hot-hero h1 { font-size: 2rem; color: var(--accent); margin-bottom: 0.5rem; }
.hot-hero p { color: var(--text2); font-size: 1rem; }

.hot-list { margin-top: 1rem; }
.hot-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; margin-bottom: 1rem; transition: border-color 0.2s; }
.hot-card:hover { border-color: var(--accent2); }
.hot-card time { color: var(--accent3); font-size: 0.85rem; }
.hot-card h2 { margin: 0.5rem 0; font-size: 1.25rem; }
.hot-card h2 a { color: var(--text); }
.hot-card p { color: var(--text2); font-size: 0.95rem; }

.hot-article time { color: var(--accent3); font-size: 0.9rem; }
.hot-article h1 { font-size: 1.8rem; margin: 0.5rem 0 1.5rem; color: var(--accent); }
.hot-content { font-size: 1.05rem; line-height: 1.9; }
.hot-content h2 { font-size: 1.3rem; margin: 2rem 0 0.8rem; color: var(--accent2); }
.hot-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: var(--text); }
.hot-content p { margin-bottom: 1rem; }
.hot-content hr { border: 0; border-top: 1px solid var(--border); margin: 2rem 0; }
.hot-content a { word-break: break-all; }

.hot-sources { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; margin: 2rem 0; }
.hot-sources summary { cursor: pointer; color: var(--accent2); font-weight: 600; }
.hot-sources ul { margin-top: 0.8rem; padding-left: 1.2rem; }
.hot-sources li { margin-bottom: 0.4rem; font-size: 0.9rem; color: var(--text2); }
.hot-disclaimer { background: var(--surface); border-left: 3px solid var(--accent3); padding: 0.8rem 1rem; margin: 2rem 0; font-size: 0.85rem; color: var(--text2); border-radius: 0 4px 4px 0; }

.hot-empty { text-align: center; color: var(--text2); padding: 3rem; }

/* A类卡片网格 */
.hot-cards-section { margin: 2rem 0; }
.hot-cards-section h2 { color: var(--accent); font-size: 1.2rem; margin-bottom: 0.3rem; }
.hot-section-note { color: var(--text2); font-size: 0.85rem; margin-bottom: 1.5rem; }
.hot-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1rem; }
.hot-card-item { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1.2rem; transition: border-color 0.2s; }
.hot-card-item:hover { border-color: var(--accent); }
.card-emoji { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.card-hook { color: var(--text); font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.6; }
.card-body { color: var(--text2); font-size: 0.9rem; margin-bottom: 0.5rem; line-height: 1.6; }
.card-punch { color: var(--accent3); font-size: 0.9rem; font-style: italic; }
.card-source { color: var(--text2); font-size: 0.75rem; display: block; margin-top: 0.8rem; }

/* B类主题 */
.hot-theme-badge { display: inline-block; background: var(--accent); color: #fff; padding: 0.2rem 0.8rem; border-radius: 20px; font-size: 0.85rem; margin-bottom: 0.8rem; }
.hot-golden { background: linear-gradient(135deg, var(--surface), var(--card)); border-left: 3px solid var(--accent3); padding: 1rem 1.2rem; margin: 1.5rem 0; font-size: 1.05rem; color: var(--text); border-radius: 0 8px 8px 0; }
.hot-article-section { margin-top: 2rem; }
.hot-article-section h2 { color: var(--accent); font-size: 1.2rem; margin-bottom: 1rem; }

/* 点睛结尾 */
.hot-ending { color: var(--accent3); font-size: 1.05rem; font-style: italic; border-left: 3px solid var(--accent3); padding: 0.8rem 1.2rem; background: linear-gradient(135deg, rgba(255,230,109,0.08), transparent); border-radius: 0 8px 8px 0; margin-top: 1.5rem; }

/* 配图 */
.hot-feature-image { margin: 1.5rem 0; text-align: center; }
.hot-feature-image img { max-width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--border); }
.hot-feature-image figcaption { color: var(--text2); font-size: 0.8rem; margin-top: 0.5rem; }
.card-img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px 8px 0 0; margin: -1.2rem -1.2rem 0.8rem -1.2rem; width: calc(100% + 2.4rem); }
.hot-image-disclaimer { color: var(--text2); font-size: 0.8rem; text-align: center; margin-top: 1rem; }

/* 下载按钮 & 素材页 */
.btn-download { display: inline-block; background: var(--accent); color: #fff; padding: 0.6rem 1.5rem; border-radius: 6px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.btn-download:hover { background: #e55a5a; text-decoration: none; }
.asset-section { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; margin: 1.5rem 0; }
.asset-section h2 { margin-top: 0; color: var(--accent2); }
.asset-desc { color: var(--text2); font-size: 0.9rem; margin-bottom: 1rem; }
.asset-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.8rem; }
.asset-item { text-align: center; }
.asset-item img { width: 100%; height: 100px; object-fit: cover; border-radius: 6px; }
.asset-item a { display: block; font-size: 0.8rem; margin-top: 0.3rem; }

/* 列表页摘要卡片 */
.hot-card h3 { font-size: 1rem; color: var(--accent2); margin: 0.3rem 0; font-weight: normal; }

.hot-footer { max-width: 800px; margin: 0 auto; padding: 2rem 1rem; text-align: center; color: var(--text2); font-size: 0.85rem; border-top: 1px solid var(--border); }
.hot-footer p { margin-bottom: 0.3rem; }

@media (max-width: 600px) {
  .hot-hero h1 { font-size: 1.5rem; }
  .hot-article h1 { font-size: 1.4rem; }
  .hot-nav { flex-direction: column; gap: 0.5rem; }
}