/* ========================================
   今日看料 - 全站样式表
   品牌：今日看料 | fuansw.com
   定位：国内影视传媒公司+视频社区
   ======================================== */

/* CSS Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif; color: #333; background: #f8f9fa; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color .3s; }
a:hover { color: #FF6B6B; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== Header ========== */
.site-header { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: 1200px; margin: 0 auto; }
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-wrap img { height: 42px; width: auto; }
.logo-wrap .brand-text { font-size: 22px; font-weight: 700; color: #FF6B6B; }
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a { padding: 8px 16px; font-size: 15px; font-weight: 500; color: #444; border-radius: 6px; transition: all .3s; }
.main-nav a:hover, .main-nav a.active { color: #FF6B6B; background: rgba(255,107,107,.08); }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: #333; padding: 5px; }

/* ========== Search Bar ========== */
.search-bar { background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%); padding: 14px 0; }
.search-bar .container { display: flex; justify-content: center; }
.search-form { display: flex; max-width: 600px; width: 100%; background: #fff; border-radius: 30px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,.1); }
.search-form input { flex: 1; padding: 12px 24px; border: none; outline: none; font-size: 15px; color: #333; }
.search-form input::placeholder { color: #aaa; }
.search-form button { padding: 12px 28px; background: #FF6B6B; color: #fff; border: none; cursor: pointer; font-size: 15px; font-weight: 600; transition: background .3s; }
.search-form button:hover { background: #e55a5a; }

/* ========== Hero Slider ========== */
.hero-slider { position: relative; overflow: hidden; height: 480px; }
.hero-slider .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease; }
.hero-slider .slide.active { opacity: 1; }
.hero-slider .slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slider .slide-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to right, rgba(0,0,0,.6) 0%, rgba(0,0,0,.1) 100%); display: flex; align-items: center; padding-left: 8%; }
.hero-slider .slide-content { color: #fff; max-width: 520px; }
.hero-slider .slide-content h2 { font-size: 36px; margin-bottom: 12px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.hero-slider .slide-content p { font-size: 16px; margin-bottom: 20px; opacity: .9; }
.hero-slider .slide-content .btn { display: inline-block; padding: 12px 32px; background: #FF6B6B; color: #fff; border-radius: 30px; font-weight: 600; transition: all .3s; }
.hero-slider .slide-content .btn:hover { background: #e55a5a; transform: translateY(-2px); }
.hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.hero-dots span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: all .3s; }
.hero-dots span.active { background: #FF6B6B; transform: scale(1.2); }

/* ========== Section Common ========== */
.section { padding: 60px 0; }
.section-alt { background: #fff; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 30px; color: #222; margin-bottom: 8px; }
.section-title h3 { font-size: 22px; color: #222; margin-bottom: 8px; }
.section-title p { font-size: 15px; color: #888; }
.section-title .highlight { color: #FF6B6B; }

/* ========== Video Cards ========== */
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.video-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.06); transition: all .3s; cursor: pointer; }
.video-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.video-card .thumb { position: relative; padding-top: 56.25%; overflow: hidden; }
.video-card .thumb img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.video-card:hover .thumb img { transform: scale(1.08); }
.video-card .play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); width: 56px; height: 56px; background: rgba(255,107,107,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s; z-index: 5; }
.video-card .play-btn::after { content: ''; display: block; width: 0; height: 0; border-style: solid; border-width: 10px 0 10px 18px; border-color: transparent transparent transparent #fff; margin-left: 4px; }
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1); }
.video-card .duration { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,.75); color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 12px; z-index: 5; }
.video-card .info { padding: 14px; }
.video-card .info h4 { font-size: 15px; color: #222; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
.video-card .info .meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #999; }
.video-card .info .meta span { display: flex; align-items: center; gap: 3px; }
.video-card .tag { position: absolute; top: 8px; left: 8px; background: #FF6B6B; color: #fff; padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; z-index: 5; }

/* ========== Feature Grid ========== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: #fff; border-radius: 12px; padding: 30px 24px; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,.06); transition: all .3s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.feature-card .icon { width: 64px; height: 64px; margin: 0 auto 16px; background: linear-gradient(135deg, #FF6B6B, #FF8E53); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; }
.feature-card h4 { font-size: 18px; color: #222; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* ========== Expert Section ========== */
.expert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.expert-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.06); text-align: center; transition: all .3s; }
.expert-card:hover { transform: translateY(-4px); }
.expert-card .avatar { width: 100%; aspect-ratio: 1; overflow: hidden; }
.expert-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.expert-card .expert-info { padding: 16px; }
.expert-card .expert-info h4 { font-size: 17px; color: #222; margin-bottom: 4px; }
.expert-card .expert-info .role { font-size: 13px; color: #FF6B6B; margin-bottom: 8px; }
.expert-card .expert-info p { font-size: 13px; color: #666; line-height: 1.5; }
.expert-card .expert-btns { display: flex; gap: 8px; padding: 0 16px 16px; }
.expert-card .expert-btns a { flex: 1; padding: 8px; border-radius: 6px; font-size: 13px; font-weight: 500; text-align: center; transition: all .3s; }
.expert-card .expert-btns .btn-contact { background: #FF6B6B; color: #fff; }
.expert-card .expert-btns .btn-contact:hover { background: #e55a5a; }
.expert-card .expert-btns .btn-works { background: #f0f0f0; color: #555; }
.expert-card .expert-btns .btn-works:hover { background: #e0e0e0; }

/* ========== Partner Logos ========== */
.partner-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; align-items: center; padding: 20px 0; }
.partner-wall .partner-item { width: 140px; height: 60px; background: #f5f5f5; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #888; font-weight: 600; transition: all .3s; }
.partner-wall .partner-item:hover { background: #eee; box-shadow: 0 4px 12px rgba(0,0,0,.08); }

/* ========== FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 10px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.04); overflow: hidden; }
.faq-item .faq-q { padding: 18px 24px; font-size: 16px; font-weight: 600; color: #222; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .3s; }
.faq-item .faq-q:hover { background: #fafafa; }
.faq-item .faq-q::after { content: '+'; font-size: 22px; color: #FF6B6B; transition: transform .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all .3s; }
.faq-item.open .faq-a { padding: 0 24px 18px; max-height: 300px; }
.faq-item .faq-a p { font-size: 14px; color: #666; line-height: 1.7; }

/* ========== Reviews ========== */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.review-card .stars { color: #FFB800; font-size: 16px; margin-bottom: 10px; }
.review-card .review-text { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 14px; }
.review-card .reviewer { display: flex; align-items: center; gap: 10px; }
.review-card .reviewer .r-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #FF6B6B, #FF8E53); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; }
.review-card .reviewer .r-name { font-size: 14px; font-weight: 600; color: #222; }
.review-card .reviewer .r-date { font-size: 12px; color: #aaa; }

/* ========== Contact Section ========== */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.contact-card { background: #fff; border-radius: 12px; padding: 30px; box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.contact-card h4 { font-size: 18px; color: #222; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #FF6B6B; }
.contact-card .info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 14px; color: #555; }
.contact-card .info-row .label { font-weight: 600; color: #333; min-width: 80px; }

/* ========== How-To Guide ========== */
.howto-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.howto-step { text-align: center; padding: 24px 16px; }
.howto-step .step-num { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #FF6B6B, #FF8E53); color: #fff; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.howto-step h5 { font-size: 15px; color: #222; margin-bottom: 6px; }
.howto-step p { font-size: 13px; color: #888; }

/* ========== Social Share ========== */
.share-bar { display: flex; justify-content: center; gap: 16px; padding: 20px 0; }
.share-bar a { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; transition: all .3s; }
.share-bar a:hover { transform: translateY(-3px); }
.share-wechat { background: #07C160; }
.share-weibo { background: #E6162D; }
.share-douyin { background: #111; }
.share-bilibili { background: #00A1D6; }

/* ========== Footer ========== */
.site-footer { background: #1a1a2e; color: #ccc; padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.footer-col h5 { font-size: 16px; color: #fff; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.footer-col h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: #FF6B6B; }
.footer-col p { font-size: 13px; line-height: 1.8; color: #aaa; }
.footer-col a { display: block; font-size: 13px; color: #aaa; padding: 4px 0; transition: color .3s; }
.footer-col a:hover { color: #FF6B6B; }
.footer-qr { display: flex; gap: 16px; margin-top: 12px; }
.footer-qr .qr-item { text-align: center; }
.footer-qr .qr-item img { width: 100px; height: 100px; border-radius: 8px; background: #fff; padding: 4px; }
.footer-qr .qr-item span { display: block; font-size: 12px; color: #888; margin-top: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: 13px; color: #888; }
.footer-bottom .update-time { margin-top: 6px; font-size: 12px; color: #666; }

/* ========== Breadcrumb ========== */
.breadcrumb { padding: 14px 0; font-size: 13px; color: #888; }
.breadcrumb a { color: #FF6B6B; }
.breadcrumb span { margin: 0 6px; }

/* ========== Inner Page ========== */
.page-hero { background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%); padding: 50px 0; text-align: center; color: #fff; }
.page-hero h1 { font-size: 32px; margin-bottom: 10px; }
.page-hero p { font-size: 15px; opacity: .9; }

/* ========== Community Cards ========== */
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.community-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.06); transition: all .3s; }
.community-card:hover { transform: translateY(-4px); }
.community-card .card-img { height: 200px; overflow: hidden; }
.community-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.community-card:hover .card-img img { transform: scale(1.05); }
.community-card .card-body { padding: 18px; }
.community-card .card-body h4 { font-size: 16px; color: #222; margin-bottom: 8px; }
.community-card .card-body p { font-size: 13px; color: #666; line-height: 1.6; }

/* ========== Tool Cards ========== */
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tool-card { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 12px; padding: 30px; color: #fff; transition: all .3s; }
.tool-card:hover { transform: translateY(-4px); }
.tool-card h4 { font-size: 18px; margin-bottom: 10px; }
.tool-card p { font-size: 14px; opacity: .9; line-height: 1.6; margin-bottom: 16px; }
.tool-card .tool-btn { display: inline-block; padding: 8px 24px; background: rgba(255,255,255,.2); border-radius: 20px; font-size: 13px; transition: all .3s; }
.tool-card .tool-btn:hover { background: rgba(255,255,255,.35); }
.tool-card:nth-child(2) { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.tool-card:nth-child(3) { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.tool-card:nth-child(4) { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.tool-card:nth-child(5) { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.tool-card:nth-child(6) { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }

/* ========== Creator Section ========== */
.creator-banner { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); padding: 60px 0; color: #fff; text-align: center; }
.creator-banner h2 { font-size: 28px; margin-bottom: 12px; }
.creator-banner p { font-size: 15px; opacity: .8; margin-bottom: 24px; }
.creator-stats { display: flex; justify-content: center; gap: 50px; margin-top: 30px; }
.creator-stats .stat { text-align: center; }
.creator-stats .stat .num { font-size: 36px; font-weight: 700; color: #FF6B6B; }
.creator-stats .stat .label { font-size: 14px; color: #aaa; margin-top: 4px; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .expert-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; }
  .main-nav { display: none; flex-direction: column; width: 100%; padding-top: 10px; }
  .main-nav.show { display: flex; }
  .main-nav a { padding: 10px 16px; }
  .menu-toggle { display: block; }
  .hero-slider { height: 300px; }
  .hero-slider .slide-content h2 { font-size: 22px; }
  .hero-slider .slide-content p { font-size: 14px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature-grid { grid-template-columns: 1fr; }
  .expert-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .howto-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .section-title h2 { font-size: 24px; }
  .community-grid { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: 1fr; }
  .creator-stats { flex-wrap: wrap; gap: 20px; }
  .page-hero h1 { font-size: 24px; }
}

@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
  .expert-grid { grid-template-columns: 1fr; }
  .howto-steps { grid-template-columns: 1fr; }
  .search-form { flex-direction: column; border-radius: 12px; }
  .search-form button { border-radius: 0 0 12px 12px; }
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp .6s ease forwards; }

/* ========== Loading Skeleton ========== */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 8px; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ========== Live Badge ========== */
.live-badge { display: inline-flex; align-items: center; gap: 4px; background: #FF4444; color: #fff; padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.live-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

/* ========== Tags ========== */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item { padding: 4px 14px; background: #f5f5f5; border-radius: 20px; font-size: 13px; color: #666; transition: all .3s; cursor: pointer; }
.tag-item:hover { background: #FF6B6B; color: #fff; }

/* ========== MCP Frontend Placeholder ========== */
.mcp-widget { background: #f8f9fa; border: 1px dashed #ddd; border-radius: 12px; padding: 20px; text-align: center; color: #999; font-size: 14px; margin-top: 20px; }
