/* 每日大乱斗 - 破局新生 · 流动杂志风 */
/* 浅色背景 · 珊瑚粉 × 薄荷绿 × 暖沙色 */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif; overflow-x: hidden; background: #fdf6f0; color: #2d2a24; }

/* 核心布局 */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; position: relative; }
.section:nth-child(even) { background: #f5efe8; }

/* 导航 — 固定顶部 */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(253, 246, 240, 0.92); backdrop-filter: blur(14px); border-bottom: 1px solid #e6d5c0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; text-decoration: none; color: #2d2a24; letter-spacing: -0.5px; }
.logo-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; background: linear-gradient(135deg, #f7a58c, #b8d9c8); color: #fff; box-shadow: 0 4px 12px rgba(247, 165, 140, 0.3); }
.main-nav { display: flex; align-items: center; gap: 28px; list-style: none; }
.main-nav a { text-decoration: none; font-size: 0.9rem; font-weight: 500; color: #5a4f42; transition: 0.25s; position: relative; padding-bottom: 4px; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #f7a58c; transition: 0.3s; }
.main-nav a:hover { color: #2d2a24; }
.main-nav a:hover::after { width: 100%; }
.nav-cta { padding: 10px 24px; border-radius: 40px; color: #fff !important; font-weight: 700; background: linear-gradient(135deg, #f7a58c, #b8d9c8); box-shadow: 0 4px 12px rgba(247, 165, 140, 0.25); transition: 0.3s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(247, 165, 140, 0.35); }
.nav-cta::after { display: none !important; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: #2d2a24; }

/* 首页Hero — 杂志封面感 */
.hero { min-height: 75vh; display: flex; align-items: center; background: linear-gradient(145deg, #fdf6f0 0%, #f0e6db 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(184, 217, 200, 0.25) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -20%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(247, 165, 140, 0.2) 0%, transparent 60%); border-radius: 50%; pointer-events: none; }
.hero-content { max-width: 720px; position: relative; z-index: 2; }
.hero-eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 6px 18px; border-radius: 40px; margin-bottom: 20px; background: #b8d9c8; color: #2d2a24; }
.hero h1 { font-size: 3.2rem; line-height: 1.15; margin-bottom: 20px; font-weight: 800; letter-spacing: -1px; background: linear-gradient(135deg, #2d2a24 40%, #f7a58c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.15rem; opacity: 0.7; max-width: 560px; margin-bottom: 36px; color: #5a4f42; font-weight: 400; }
.hero-buttons { display: flex; gap: 16px; }
.hero-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px -12px rgba(45, 42, 36, 0.15); }
.hero-image img { width: 100%; height: auto; display: block; }

/* 按钮 */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 40px; font-weight: 700; cursor: pointer; border: none; text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.btn-primary { color: #fff; background: linear-gradient(135deg, #f7a58c, #b8d9c8); box-shadow: 0 4px 14px rgba(247, 165, 140, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(247, 165, 140, 0.4); }
.btn-outline { background: transparent; border: 2px solid #b8d9c8; color: #2d2a24; }
.btn-outline:hover { background: #b8d9c8; color: #fff; }

/* 标签/标题 */
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; color: #f7a58c; }
.section-title { font-size: 2.4rem; margin-bottom: 16px; font-weight: 800; letter-spacing: -0.5px; color: #2d2a24; }
.section-desc { max-width: 600px; opacity: 0.7; margin-bottom: 44px; color: #5a4f42; font-size: 1.05rem; }

/* 卡片网格 — 层叠卡片 */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.category-card { border-radius: 20px; padding: 32px 28px; background: #fff; border: 1px solid #e6d5c0; transition: 0.3s; box-shadow: 0 2px 8px rgba(45, 42, 36, 0.04); }
.category-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px -8px rgba(247, 165, 140, 0.2); border-color: #f7a58c; }
.card-icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.5rem; background: linear-gradient(135deg, #f7a58c20, #b8d9c820); color: #f7a58c; }
.card-link { font-weight: 700; font-size: 0.85rem; text-decoration: none; color: #f7a58c; display: inline-flex; align-items: center; gap: 6px; }
.card-link::after { content: '→'; transition: 0.2s; }
.card-link:hover::after { transform: translateX(4px); }

/* 特性块 — 左右分栏 */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-image { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 32px -12px rgba(45, 42, 36, 0.12); }
.feature-image img { width: 100%; height: auto; display: block; }
.feature-text { }
.feature-list { list-style: none; }
.feature-list li { padding: 8px 0; display: flex; align-items: center; gap: 12px; font-weight: 500; }
.feature-list li::before { content: '✓'; font-weight: 700; color: #b8d9c8; font-size: 1.2rem; }

/* 数据条 */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { padding: 32px 16px; border-radius: 20px; background: #fff; border: 1px solid #e6d5c0; transition: 0.3s; }
.stat-item:hover { border-color: #b8d9c8; transform: scale(1.02); }
.stat-number { font-size: 2.6rem; font-weight: 800; color: #2d2a24; background: linear-gradient(135deg, #f7a58c, #b8d9c8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.9rem; opacity: 0.6; margin-top: 8px; color: #5a4f42; }

/* 内容墙 — 杂志网格 */
.content-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.content-wall-item { border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid #e6d5c0; transition: 0.3s; }
.content-wall-item:hover { transform: translateY(-5px); box-shadow: 0 12px 28px -8px rgba(247, 165, 140, 0.15); }
.content-wall-item img { width: 100%; height: 220px; object-fit: cover; display: block; }
.content-wall-body { padding: 24px; }
.content-wall-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.content-wall-body p { opacity: 0.65; font-size: 0.9rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid #e6d5c0; border-radius: 16px; margin-bottom: 10px; overflow: hidden; cursor: pointer; transition: 0.2s; background: #fff; }
.faq-item:hover { border-color: #b8d9c8; }
.faq-item .faq-question { padding: 18px 24px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; color: #2d2a24; }
.faq-item .faq-question::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: #f7a58c; transition: 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 24px 18px; display: none; opacity: 0.7; color: #5a4f42; line-height: 1.6; }
.faq-item.open .faq-answer { display: block; }

/* CTA横幅 */
.cta-banner { padding: 64px 32px; text-align: center; border-radius: 24px; color: #fff; background: linear-gradient(135deg, #f7a58c, #b8d9c8); box-shadow: 0 16px 40px -12px rgba(247, 165, 140, 0.3); }
.cta-banner h2 { color: #fff; font-size: 2rem; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.cta-banner .btn-primary { background: #fff; color: #2d2a24; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

/* 页脚 */
.site-footer { padding: 64px 0 32px; background: #2d2a24; color: #e6d5c0; }
.site-footer .container { }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { }
.footer-brand .logo { color: #fdf6f0; }
.footer-brand p { opacity: 0.6; margin-top: 12px; font-size: 0.9rem; }
.footer-col h4 { color: #fdf6f0; font-size: 0.95rem; margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; color: #b8d9c8; text-decoration: none; font-size: 0.85rem; padding: 4px 0; transition: 0.2s; }
.footer-col a:hover { color: #f7a58c; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; padding-top: 24px; text-align: center; font-size: 0.85rem; opacity: 0.5; }

/* 工具类 */
.text-accent { color: #f7a58c; }
.text-center { text-align: center; }
.seo-description { max-width: 600px; margin: 0 auto 48px; opacity: 0.7; color: #5a4f42; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* 响应式 */
@media (max-width: 768px) {
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; width: 100%; background: #fdf6f0; padding: 24px; border-bottom: 1px solid #e6d5c0; gap: 16px; }
  .hero h1 { font-size: 2.4rem; }
  .section-title { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .cards-grid, .content-wall, .stats-bar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero h1 { font-size: 2rem; }
}