/* AI导航 - 主样式 v2.0 */
:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #1a1a24;
  --card: #16161f;
  --card-hover: #1e1e2a;
  --border: #2a2a3a;
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --text-dim: #555577;
  --primary: #6c63ff;
  --primary-dark: #5a52e0;
  --accent: #ff6b9d;
  --green: #4ade80;
  --yellow: #fbbf24;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.3);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Noto Sans SC', 'Inter', sans-serif; line-height: 1.6; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* Navbar */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(10,10,15,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; gap: 1.5rem; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.25rem; font-weight: 700; }
.logo-icon { font-size: 1.5rem; }
.logo-accent { color: var(--primary); }
.nav-links { display: flex; gap: 0.25rem; margin-left: auto; }
.nav-link { padding: 0.4rem 0.9rem; border-radius: 8px; font-size: 0.9rem; color: var(--text-muted); transition: all 0.2s; white-space: nowrap; }
.nav-link:hover { color: var(--text); background: var(--bg3); }
.nav-submit { background: var(--primary); color: white !important; }
.nav-submit:hover { background: var(--primary-dark) !important; }
.nav-search-mini { flex: 1; max-width: 280px; }
.nav-search-input { width: 100%; background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 0.4rem 0.8rem; color: var(--text); font-size: 0.85rem; outline: none; }
.nav-search-input:focus { border-color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }
.mobile-menu { display: none; background: var(--bg2); border-top: 1px solid var(--border); padding: 1rem; }
.mobile-link { display: block; padding: 0.6rem 1rem; color: var(--text-muted); border-radius: 8px; }
.mobile-link:hover { background: var(--bg3); color: var(--text); }

/* Hero */
.hero { position: relative; padding: 5rem 0 4rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,99,255,0.15) 0%, transparent 70%); pointer-events: none; }
.hero-content { text-align: center; position: relative; }
.hero-badge { display: inline-block; background: rgba(108,99,255,0.15); border: 1px solid rgba(108,99,255,0.3); color: var(--primary); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.85rem; margin-bottom: 1.5rem; }
.hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
.hero-subtitle strong { color: var(--text); }

/* Search Box */
.hero-search { max-width: 680px; margin: 0 auto 1.5rem; }
.search-box { display: flex; align-items: center; background: var(--card); border: 1px solid var(--border); border-radius: 50px; padding: 0.4rem 0.4rem 0.4rem 1.2rem; gap: 0.5rem; transition: border-color 0.2s; }
.search-box:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,99,255,0.15); }
.search-icon { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; }
.search-box input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-size: 1rem; }
.search-box input::placeholder { color: var(--text-muted); }
.search-box button { background: var(--primary); color: white; border: none; border-radius: 40px; padding: 0.6rem 1.5rem; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.search-box button:hover { background: var(--primary-dark); }
.search-box-sm { border-radius: 12px; padding: 0.3rem 0.3rem 0.3rem 1rem; }
.search-box-sm button { border-radius: 8px; }

/* Hero Tags */
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; align-items: center; }
.tag-label { color: var(--text-muted); font-size: 0.85rem; }
.hero-tag { background: var(--bg3); border: 1px solid var(--border); padding: 0.3rem 0.8rem; border-radius: 100px; font-size: 0.82rem; color: var(--text-muted); transition: all 0.2s; }
.hero-tag:hover { border-color: var(--primary); color: var(--primary); }

/* Stats Bar */
.stats-bar { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-item, .stat-card { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.stat-num { font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.82rem; color: var(--text-muted); }

/* Sections */
.section { padding: 3.5rem 0; }
.section-dark { background: var(--bg2); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.section-title { font-size: 1.4rem; font-weight: 700; }
.see-all { color: var(--primary); font-size: 0.9rem; transition: opacity 0.2s; }
.see-all:hover { opacity: 0.8; }

/* Categories Grid */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.75rem; }
.cat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 0.75rem; text-align: center; transition: all 0.2s; display: flex; flex-direction: column; gap: 0.4rem; align-items: center; }
.cat-card:hover { border-color: var(--primary); background: var(--card-hover); transform: translateY(-2px); }
.cat-icon { font-size: 1.8rem; }
.cat-name { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.cat-count { font-size: 0.75rem; color: var(--text-muted); }

/* Tools Grid */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.tool-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; transition: all 0.2s; display: flex; flex-direction: column; gap: 0.75rem; cursor: pointer; }
.tool-card:hover { border-color: var(--primary); background: var(--card-hover); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.tool-card-header { display: flex; align-items: flex-start; gap: 0.75rem; }
.tool-logo { width: 44px; height: 44px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--bg3); display: flex; align-items: center; justify-content: center; }
.tool-logo img { width: 100%; height: 100%; object-fit: cover; }
.tool-logo-fallback { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: white; flex-shrink: 0; }
.tool-logo-fallback-lg { width: 72px; height: 72px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; color: white; flex-shrink: 0; }
.tool-meta { flex: 1; min-width: 0; }
.tool-name { font-size: 0.95rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tool-category { font-size: 0.75rem; color: var(--text-muted); }
.tool-badges { display: flex; flex-direction: column; gap: 0.25rem; align-items: flex-end; flex-shrink: 0; }
.badge { font-size: 0.68rem; padding: 0.15rem 0.5rem; border-radius: 100px; font-weight: 600; }
.badge-free { background: rgba(74,222,128,0.15); color: var(--green); border: 1px solid rgba(74,222,128,0.3); }
.badge-new { background: rgba(251,191,36,0.15); color: var(--yellow); border: 1px solid rgba(251,191,36,0.3); }
.badge-hot { background: rgba(255,107,157,0.15); color: var(--accent); border: 1px solid rgba(255,107,157,0.3); }
.tool-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.tool-card-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--text-muted); }
.tool-pricing { background: var(--bg3); padding: 0.15rem 0.5rem; border-radius: 4px; }

/* Page Layout */
.page-header { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 2rem 0; }
.page-header h1 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.page-header p { color: var(--text-muted); }
.breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.breadcrumb a { color: var(--primary); }
.page-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; padding-top: 2rem; padding-bottom: 4rem; }

/* Sidebar */
.sidebar { position: sticky; top: 80px; height: fit-content; }
.sidebar-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.75rem; }
.sidebar-link { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0.75rem; border-radius: 8px; font-size: 0.88rem; color: var(--text-muted); transition: all 0.15s; margin-bottom: 0.15rem; }
.sidebar-link:hover { background: var(--bg3); color: var(--text); }
.sidebar-link.active { background: rgba(108,99,255,0.15); color: var(--primary); }
.sidebar-count { font-size: 0.75rem; background: var(--bg3); padding: 0.1rem 0.4rem; border-radius: 100px; }

/* Filter Bar */
.filter-bar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.sort-tabs { display: flex; gap: 0.25rem; background: var(--bg3); padding: 0.25rem; border-radius: 8px; }
.sort-tab { padding: 0.35rem 0.9rem; border-radius: 6px; font-size: 0.85rem; color: var(--text-muted); transition: all 0.15s; }
.sort-tab:hover, .sort-tab.active { background: var(--card); color: var(--text); }
.filter-btn { padding: 0.4rem 0.9rem; border: 1px solid var(--border); border-radius: 8px; font-size: 0.85rem; color: var(--text-muted); transition: all 0.15s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--primary); color: var(--primary); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.page-btn { background: var(--card); border: 1px solid var(--border); padding: 0.5rem 1.2rem; border-radius: 8px; font-size: 0.9rem; transition: all 0.15s; }
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-info { color: var(--text-muted); font-size: 0.85rem; }

/* Tool Detail */
.tool-detail-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; margin-bottom: 2rem; }
.tool-detail-header { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.tool-detail-info { flex: 1; }
.tool-detail-info h1 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.tool-name-en { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.tool-detail-meta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.tool-category-badge { background: rgba(108,99,255,0.15); color: var(--primary); padding: 0.25rem 0.75rem; border-radius: 100px; font-size: 0.82rem; }
.tool-views { color: var(--text-muted); font-size: 0.82rem; }
.tool-detail-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.tool-detail-body h2 { font-size: 1.1rem; margin-bottom: 1rem; }
.tool-full-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.tool-tags { margin-bottom: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.tag { background: var(--bg3); border: 1px solid var(--border); padding: 0.25rem 0.75rem; border-radius: 100px; font-size: 0.8rem; color: var(--text-muted); transition: all 0.15s; }
.tag:hover { border-color: var(--primary); color: var(--primary); }
.tool-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; background: var(--bg2); border-radius: var(--radius-sm); padding: 1.25rem; }
.info-item { display: flex; flex-direction: column; gap: 0.25rem; }
.info-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.info-value { font-size: 0.9rem; font-weight: 500; }
.info-link { color: var(--primary); }
.related-section h2 { font-size: 1.2rem; margin-bottom: 1rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.5rem 1.2rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.2s; border: none; font-family: inherit; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline.liked { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 0.8rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.3rem 0.8rem; font-size: 0.8rem; }

/* CTA */
.cta-section { background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(255,107,157,0.1)); }
.cta-box { text-align: center; padding: 3rem; }
.cta-box h2 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.cta-box p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* Forms */
.submit-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.9rem; font-weight: 600; }
.required { color: var(--accent); }
.form-group input, .form-group textarea, .form-group select { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 0.7rem 1rem; color: var(--text); font-size: 0.9rem; outline: none; font-family: inherit; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-group select option { background: var(--bg2); }

/* Alert */
.alert { padding: 1rem 1.25rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: 0.9rem; }
.alert-success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); color: var(--green); }

/* Empty State */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.empty-state h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text); }
.empty-state a { color: var(--primary); }

/* Admin */
.admin-table-wrap { overflow-x: auto; margin-bottom: 2rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th { background: var(--bg3); padding: 0.75rem 1rem; text-align: left; font-weight: 600; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.admin-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
.admin-table tr:hover td { background: var(--bg3); }
.admin-table a { color: var(--primary); }

/* Footer */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { font-size: 1.2rem; font-weight: 700; display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.footer-domain { color: var(--primary) !important; font-weight: 600; margin-top: 0.5rem !important; }
.footer-links h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.75rem; }
.footer-links a { display: block; font-size: 0.85rem; color: var(--text-muted); padding: 0.25rem 0; transition: color 0.15s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom a { color: var(--primary); }

/* ═══════════════════════════════════════════════════════════════
   新功能样式 v2.0
   ═══════════════════════════════════════════════════════════════ */

/* 今日推荐 */
.daily-picks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.daily-pick-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; transition: all 0.2s; display: flex; flex-direction: column; gap: 0.75rem; position: relative; overflow: hidden; }
.daily-pick-card:hover { border-color: var(--yellow); background: var(--card-hover); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(251,191,36,0.1); }
.daily-pick-badge { font-size: 0.75rem; color: var(--yellow); background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.2); padding: 0.2rem 0.6rem; border-radius: 100px; display: inline-block; width: fit-content; }
.daily-pick-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--text-muted); }

/* 今日推荐详情页 */
.daily-picks-list { display: flex; flex-direction: column; gap: 1rem; }
.daily-pick-detail { display: flex; gap: 1.5rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: all 0.2s; }
.daily-pick-detail:hover { border-color: var(--primary); }
.daily-pick-rank { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; color: white; flex-shrink: 0; }
.daily-pick-content { flex: 1; }
.history-list { display: flex; flex-direction: column; gap: 0.5rem; }
.history-item { display: flex; justify-content: space-between; padding: 0.75rem 1rem; background: var(--card); border: 1px solid var(--border); border-radius: 8px; }

/* 快捷功能入口 */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: all 0.2s; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.feature-card:hover { border-color: var(--primary); background: var(--card-hover); transform: translateY(-2px); }
.feature-icon { font-size: 2rem; }
.feature-card h3 { font-size: 1rem; font-weight: 600; }
.feature-card p { font-size: 0.82rem; color: var(--text-muted); }

/* 工具详情页快捷链接 */
.tool-quick-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.quick-link-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; text-align: center; transition: all 0.2s; display: flex; flex-direction: column; gap: 0.3rem; align-items: center; }
.quick-link-card:hover { border-color: var(--primary); background: var(--card-hover); transform: translateY(-2px); }
.quick-link-card span:first-child { font-size: 1.5rem; }

/* 评分评论 */
.rating-display { color: var(--yellow); font-size: 0.82rem; }
.rating-overview { display: flex; align-items: center; gap: 2rem; margin-bottom: 2rem; padding: 1.5rem; background: var(--bg2); border-radius: var(--radius-sm); }
.rating-big { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.rating-number { font-size: 3rem; font-weight: 700; color: var(--yellow); line-height: 1; }
.rating-stars { display: flex; gap: 0.15rem; }
.star { color: var(--border); font-size: 1.2rem; }
.star.filled { color: var(--yellow); }
.star-input { display: flex; gap: 0.25rem; }
.star-btn { font-size: 1.8rem; color: var(--border); cursor: pointer; transition: color 0.15s; }
.star-btn.filled { color: var(--yellow); }
.star-btn:hover { color: var(--yellow); }
.review-form { background: var(--bg2); border-radius: var(--radius-sm); padding: 1.5rem; margin-bottom: 2rem; }
.reviews-list { display: flex; flex-direction: column; gap: 1rem; }
.review-item { background: var(--bg2); border-radius: var(--radius-sm); padding: 1rem 1.25rem; }
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.review-stars { display: flex; gap: 0.1rem; }
.review-comment { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* 工具对比 */
.compare-search-box { position: relative; margin-bottom: 1.5rem; }
.compare-search-results { position: absolute; top: 100%; left: 0; right: 0; background: var(--card); border: 1px solid var(--border); border-radius: 8px; max-height: 300px; overflow-y: auto; z-index: 50; margin-top: 0.25rem; }
.compare-result-item { padding: 0.75rem 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.15s; }
.compare-result-item:hover { background: var(--bg3); }
.compare-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.compare-tag { background: rgba(108,99,255,0.15); color: var(--primary); padding: 0.35rem 0.75rem; border-radius: 100px; font-size: 0.85rem; display: flex; align-items: center; gap: 0.5rem; }
.compare-tag button { background: none; border: none; color: var(--primary); cursor: pointer; font-size: 0.9rem; padding: 0; }
.compare-table th, .compare-table td { min-width: 150px; vertical-align: top; }

/* 收藏夹 */
.fav-actions { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.fav-count-badge { background: rgba(108,99,255,0.15); color: var(--primary); padding: 0.35rem 0.75rem; border-radius: 100px; font-size: 0.85rem; font-weight: 600; }

/* 周报 */
.weekly-list { display: flex; flex-direction: column; gap: 1rem; }
.weekly-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: all 0.2s; display: block; }
.weekly-card:hover { border-color: var(--primary); background: var(--card-hover); }
.weekly-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.weekly-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.weekly-badge { font-size: 0.78rem; background: rgba(108,99,255,0.15); color: var(--primary); padding: 0.2rem 0.6rem; border-radius: 100px; }
.weekly-read-more { color: var(--primary); font-size: 0.85rem; display: inline-block; margin-top: 0.75rem; }
.weekly-preview-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; display: block; transition: all 0.2s; }
.weekly-preview-card:hover { border-color: var(--primary); background: var(--card-hover); }
.weekly-preview-header { margin-bottom: 0.75rem; }
.weekly-preview-header h3 { font-size: 1.2rem; margin-top: 0.5rem; }

/* 教程内容 */
.tutorial-content { line-height: 1.8; color: var(--text-muted); }
.tutorial-content h2 { font-size: 1.3rem; color: var(--text); margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.tutorial-content h3 { font-size: 1.1rem; color: var(--text); margin: 1.5rem 0 0.75rem; }
.tutorial-content p { margin-bottom: 1rem; }
.tutorial-content li { margin-left: 1.5rem; margin-bottom: 0.5rem; }
.tutorial-content strong { color: var(--text); }

/* Responsive */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .sidebar-title { width: 100%; }
  .sidebar-link { padding: 0.35rem 0.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-quick-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-search-mini { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .mobile-menu.open { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
  .tool-detail-header { flex-direction: column; }
  .tool-detail-actions { flex-direction: row; }
  .tool-info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 2.5rem; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .tool-quick-links { grid-template-columns: 1fr; }
  .daily-picks-grid { grid-template-columns: 1fr; }
  .daily-pick-detail { flex-direction: column; gap: 1rem; }
}
