/* ============================================
   17c一起草 - 原创样式表
   品牌色系：珊瑚粉 #FF6B6B / 琥珀金 #FFB347 / 深邃黑 #1A1A2E / 星空蓝 #16213E
   ============================================ */

/* CSS Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif; color: #E0E0E0; background: #0D0D1A; line-height: 1.8; overflow-x: hidden; }
a { color: #FFB347; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #FF6B6B; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: #FFFFFF; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }

/* ============ Header / Navigation ============ */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(13, 13, 26, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 107, 107, 0.15); transition: all 0.3s ease; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: 1200px; margin: 0 auto; }
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 42px; width: auto; }
.site-logo span { font-size: 1.3rem; font-weight: 700; background: linear-gradient(135deg, #FF6B6B, #FFB347); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a { padding: 8px 14px; font-size: 0.9rem; color: #C0C0C0; border-radius: 6px; transition: all 0.3s ease; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: #FFFFFF; background: rgba(255, 107, 107, 0.15); }

/* Search Box */
.search-box { position: relative; margin: 0 15px; }
.search-box input { width: 200px; padding: 8px 36px 8px 14px; border: 1px solid rgba(255, 179, 71, 0.3); border-radius: 20px; background: rgba(255, 255, 255, 0.05); color: #E0E0E0; font-size: 0.85rem; outline: none; transition: all 0.3s ease; }
.search-box input:focus { border-color: #FF6B6B; width: 260px; background: rgba(255, 255, 255, 0.1); }
.search-box input::placeholder { color: #888; }
.search-box button { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #FFB347; cursor: pointer; font-size: 1rem; }

/* Mobile Menu Toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.menu-toggle span { width: 24px; height: 2px; background: #FFB347; border-radius: 2px; transition: all 0.3s ease; }

/* ============ Hero Banner ============ */
.hero-banner { position: relative; min-height: 75vh; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-top: 70px; }
.hero-banner .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-banner .hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,26,0.6) 0%, rgba(13,13,26,0.85) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 40px 20px; max-width: 800px; }
.hero-content h1 { font-size: 3rem; margin-bottom: 16px; background: linear-gradient(135deg, #FF6B6B, #FFB347, #FF6B6B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 3s ease-in-out infinite; background-size: 200% 100%; }
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-content .hero-subtitle { font-size: 1.2rem; color: #C0C0C0; margin-bottom: 24px; }
.hero-content .hero-desc { font-size: 1rem; color: #A0A0A0; margin-bottom: 32px; line-height: 1.9; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
.hero-tags span { padding: 6px 16px; background: rgba(255, 107, 107, 0.12); border: 1px solid rgba(255, 107, 107, 0.25); border-radius: 20px; font-size: 0.85rem; color: #FFB347; }
.btn-primary { display: inline-block; padding: 14px 36px; background: linear-gradient(135deg, #FF6B6B, #FFB347); color: #1A1A2E; font-weight: 700; border-radius: 30px; font-size: 1rem; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4); color: #1A1A2E; }
.btn-outline { display: inline-block; padding: 12px 30px; border: 2px solid #FF6B6B; color: #FF6B6B; border-radius: 30px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease; }
.btn-outline:hover { background: #FF6B6B; color: #FFFFFF; }

/* ============ Section Headers ============ */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 12px; color: #FFFFFF; }
.section-header h2 span { background: linear-gradient(135deg, #FF6B6B, #FFB347); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-header p { color: #A0A0A0; font-size: 1.05rem; max-width: 650px; margin: 0 auto; }
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, #FF6B6B, #FFB347); margin: 16px auto 0; border-radius: 2px; }

/* ============ Video Cards ============ */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.video-card { background: #16182A; border-radius: 12px; overflow: hidden; transition: all 0.4s ease; border: 1px solid rgba(255, 107, 107, 0.08); }
.video-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(255, 107, 107, 0.15); border-color: rgba(255, 107, 107, 0.25); }
.video-thumb { position: relative; padding-top: 56.25%; overflow: hidden; }
.video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(255, 107, 107, 0.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s ease; cursor: pointer; z-index: 3; }
.video-play-btn::after { content: ''; width: 0; height: 0; border-left: 20px solid #FFFFFF; border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 4px; }
.video-card:hover .video-play-btn { opacity: 1; }
.video-duration { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.75); color: #FFF; padding: 2px 8px; border-radius: 4px; font-size: 0.8rem; z-index: 3; }
.video-info { padding: 16px; }
.video-info h3 { font-size: 1.05rem; margin-bottom: 8px; color: #FFFFFF; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-meta { display: flex; align-items: center; gap: 14px; font-size: 0.82rem; color: #888; }
.video-meta span { display: flex; align-items: center; gap: 4px; }
.video-tags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.video-tags span { padding: 3px 10px; background: rgba(255, 179, 71, 0.1); color: #FFB347; border-radius: 12px; font-size: 0.75rem; }

/* ============ Star Cards ============ */
.star-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.star-card { background: #16182A; border-radius: 12px; overflow: hidden; transition: all 0.4s ease; border: 1px solid rgba(255, 179, 71, 0.08); }
.star-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(255, 179, 71, 0.15); }
.star-card .star-img { height: 320px; overflow: hidden; }
.star-card .star-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.star-card:hover .star-img img { transform: scale(1.08); }
.star-card .star-info { padding: 18px; text-align: center; }
.star-card .star-info h3 { font-size: 1.15rem; margin-bottom: 6px; }
.star-card .star-info p { color: #A0A0A0; font-size: 0.9rem; }

/* ============ Module Cards (Generic) ============ */
.module-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.module-card { background: linear-gradient(145deg, #16182A, #1A1C32); border-radius: 14px; padding: 32px; border: 1px solid rgba(255, 107, 107, 0.08); transition: all 0.4s ease; }
.module-card:hover { border-color: rgba(255, 107, 107, 0.3); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.module-card .module-icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(255,107,107,0.15), rgba(255,179,71,0.15)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; }
.module-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.module-card p { color: #A0A0A0; font-size: 0.95rem; line-height: 1.7; }

/* ============ Expert Cards ============ */
.expert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.expert-card { background: #16182A; border-radius: 14px; padding: 28px; text-align: center; border: 1px solid rgba(255, 179, 71, 0.08); transition: all 0.4s ease; }
.expert-card:hover { border-color: rgba(255, 179, 71, 0.3); transform: translateY(-4px); }
.expert-card .expert-avatar { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid rgba(255, 107, 107, 0.3); }
.expert-card .expert-avatar img { width: 100%; height: 100%; object-fit: cover; }
.expert-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.expert-card .expert-title { color: #FFB347; font-size: 0.9rem; margin-bottom: 12px; }
.expert-card p { color: #A0A0A0; font-size: 0.88rem; margin-bottom: 16px; }
.expert-card .expert-btns { display: flex; gap: 10px; justify-content: center; }
.expert-card .expert-btns a { padding: 6px 16px; border-radius: 20px; font-size: 0.82rem; }

/* ============ FAQ Section ============ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #16182A; border-radius: 10px; margin-bottom: 12px; border: 1px solid rgba(255, 107, 107, 0.08); overflow: hidden; }
.faq-question { padding: 18px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #FFFFFF; transition: background 0.3s ease; }
.faq-question:hover { background: rgba(255, 107, 107, 0.05); }
.faq-question .faq-icon { font-size: 1.2rem; color: #FFB347; transition: transform 0.3s ease; }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.4s ease; }
.faq-answer.show { padding: 0 24px 18px; max-height: 500px; }
.faq-answer p { color: #A0A0A0; font-size: 0.95rem; line-height: 1.8; }

/* ============ Reviews ============ */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card { background: #16182A; border-radius: 12px; padding: 24px; border: 1px solid rgba(255, 179, 71, 0.08); }
.review-card .review-stars { color: #FFB347; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card .review-text { color: #C0C0C0; font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; font-style: italic; }
.review-card .review-author { display: flex; align-items: center; gap: 12px; }
.review-card .review-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #FF6B6B, #FFB347); display: flex; align-items: center; justify-content: center; color: #FFF; font-weight: 700; font-size: 1rem; }
.review-card .review-name { font-weight: 600; color: #FFFFFF; font-size: 0.9rem; }
.review-card .review-date { color: #888; font-size: 0.8rem; }

/* ============ Partners Logo Wall ============ */
.partner-wall { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; align-items: center; }
.partner-wall .partner-item { width: 140px; height: 70px; background: rgba(255,255,255,0.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s ease; padding: 10px; }
.partner-wall .partner-item:hover { border-color: rgba(255, 107, 107, 0.3); background: rgba(255,255,255,0.08); }
.partner-wall .partner-item span { color: #888; font-size: 0.85rem; font-weight: 600; }

/* ============ Contact Section ============ */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.contact-card { background: #16182A; border-radius: 12px; padding: 28px; text-align: center; border: 1px solid rgba(255, 107, 107, 0.08); }
.contact-card .contact-icon { font-size: 2rem; margin-bottom: 14px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-card p { color: #A0A0A0; font-size: 0.9rem; }

/* ============ Share Buttons ============ */
.share-bar { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; padding: 20px 0; }
.share-btn { padding: 10px 20px; border-radius: 25px; font-size: 0.88rem; font-weight: 600; transition: all 0.3s ease; border: none; cursor: pointer; color: #FFF; }
.share-btn.wechat { background: #07C160; }
.share-btn.weibo { background: #E6162D; }
.share-btn.douyin { background: #161823; border: 1px solid #FE2C55; }
.share-btn.bilibili { background: #00A1D6; }
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* ============ Footer ============ */
.site-footer { background: #0A0A18; border-top: 1px solid rgba(255, 107, 107, 0.1); padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px; margin-bottom: 40px; }
.footer-col h4 { font-size: 1.05rem; margin-bottom: 16px; color: #FFFFFF; }
.footer-col p, .footer-col a { color: #888; font-size: 0.9rem; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: #FFB347; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 36px; }
.footer-logo span { font-size: 1.1rem; font-weight: 700; background: linear-gradient(135deg, #FF6B6B, #FFB347); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-qr { display: flex; gap: 16px; margin-top: 14px; }
.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 p { font-size: 0.78rem; color: #888; margin-top: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0; text-align: center; color: #666; font-size: 0.85rem; }
.footer-bottom a { color: #888; }

/* ============ Breadcrumb ============ */
.breadcrumb { padding: 14px 0; margin-top: 70px; }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: #888; flex-wrap: wrap; }
.breadcrumb-list a { color: #A0A0A0; }
.breadcrumb-list a:hover { color: #FFB347; }
.breadcrumb-list .sep { color: #555; }

/* ============ Inner Page Hero ============ */
.inner-hero { padding: 100px 0 50px; text-align: center; background: linear-gradient(180deg, rgba(255,107,107,0.05) 0%, transparent 100%); }
.inner-hero h1 { font-size: 2.4rem; margin-bottom: 14px; }
.inner-hero p { color: #A0A0A0; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ============ Content Article ============ */
.article-content { max-width: 900px; margin: 0 auto; }
.article-content p { color: #C0C0C0; font-size: 1rem; line-height: 2; margin-bottom: 20px; }
.article-content h2 { font-size: 1.6rem; margin: 36px 0 16px; padding-left: 14px; border-left: 4px solid #FF6B6B; }
.article-content h3 { font-size: 1.3rem; margin: 28px 0 12px; color: #FFB347; }
.article-content ul, .article-content ol { margin: 16px 0 20px 24px; }
.article-content li { color: #B0B0B0; margin-bottom: 8px; list-style: disc; }
.article-content img { border-radius: 12px; margin: 20px 0; }

/* ============ How-To Guide ============ */
.howto-steps { max-width: 700px; margin: 0 auto; }
.howto-step { display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start; }
.howto-step .step-num { width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, #FF6B6B, #FFB347); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #1A1A2E; font-weight: 800; font-size: 1.2rem; }
.howto-step .step-content h3 { font-size: 1.1rem; margin-bottom: 6px; }
.howto-step .step-content p { color: #A0A0A0; font-size: 0.95rem; }

/* ============ Stats Bar ============ */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 40px 0; }
.stat-item { text-align: center; }
.stat-item .stat-num { font-size: 2.4rem; font-weight: 800; background: linear-gradient(135deg, #FF6B6B, #FFB347); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-item .stat-label { color: #888; font-size: 0.9rem; margin-top: 4px; }

/* ============ Utilities ============ */
.text-gradient { background: linear-gradient(135deg, #FF6B6B, #FFB347); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bg-dark-alt { background: #12122A; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ============ Lazy Load Placeholder ============ */
img[loading="lazy"] { background: #1A1C32; min-height: 100px; }

/* ============ Responsive ============ */
@media (max-width: 992px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(13,13,26,0.98); padding: 16px; gap: 4px; border-bottom: 1px solid rgba(255,107,107,0.15); }
  .main-nav.show { display: flex; }
  .menu-toggle { display: flex; }
  .search-box { order: -1; margin: 0 0 10px; width: 100%; }
  .search-box input { width: 100%; }
  .hero-content h1 { font-size: 2rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}
@media (max-width: 640px) {
  .hero-content h1 { font-size: 1.6rem; }
  .section-header h2 { font-size: 1.6rem; }
  .section-padding { padding: 50px 0; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-item .stat-num { font-size: 1.8rem; }
  .module-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ============ Star Profile (Detail Page) ============ */
.star-profile { display: flex; gap: 40px; align-items: flex-start; }
.star-profile-img { flex: 0 0 320px; border-radius: 14px; overflow: hidden; }
.star-profile-img img { width: 100%; height: auto; border-radius: 14px; }
.star-profile-info { flex: 1; }
.star-profile-info h2 { font-size: 1.8rem; margin-bottom: 16px; }
.star-profile-info p { color: #B0B0B0; font-size: 0.95rem; line-height: 1.9; margin-bottom: 14px; }
.star-stats { display: flex; gap: 30px; margin-top: 20px; }
.star-stat { text-align: center; }
.star-stat strong { display: block; font-size: 1.6rem; background: linear-gradient(135deg, #FF6B6B, #FFB347); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.star-stat span { color: #888; font-size: 0.82rem; }
@media (max-width: 768px) {
  .star-profile { flex-direction: column; }
  .star-profile-img { flex: none; width: 100%; max-width: 320px; margin: 0 auto; }
}

/* ============ H5 Video Card Enhancement ============ */
.video-card-h5 { position: relative; background: #16182A; border-radius: 12px; overflow: hidden; transition: all 0.4s ease; border: 1px solid rgba(255, 107, 107, 0.08); }
.video-card-h5:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(255, 107, 107, 0.15); border-color: rgba(255, 107, 107, 0.25); }
.video-card-h5 .video-thumb-h5 { position: relative; padding-top: 56.25%; overflow: hidden; }
.video-card-h5 .video-thumb-h5 video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-card-h5 .video-thumb-h5 .video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.1); z-index: 2; transition: background 0.3s ease; }
.video-card-h5:hover .video-thumb-h5 .video-overlay { background: rgba(0,0,0,0.3); }
.video-card-h5 .video-thumb-h5 .video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; background: rgba(255, 107, 107, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s ease; cursor: pointer; z-index: 3; }
.video-card-h5 .video-thumb-h5 .video-play-btn::after { content: ''; width: 0; height: 0; border-left: 22px solid #FFFFFF; border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 5px; }
.video-card-h5:hover .video-thumb-h5 .video-play-btn { opacity: 1; }
.video-card-h5 .video-duration { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.75); color: #FFF; padding: 2px 8px; border-radius: 4px; font-size: 0.8rem; z-index: 3; }
.video-card-h5 .video-badge { position: absolute; top: 8px; left: 8px; background: linear-gradient(135deg, #FF6B6B, #FFB347); color: #1A1A2E; padding: 3px 10px; border-radius: 4px; font-size: 0.72rem; font-weight: 700; z-index: 3; }

/* ============ EEAT Author Info ============ */
.eeat-author { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: rgba(255, 179, 71, 0.05); border: 1px solid rgba(255, 179, 71, 0.12); border-radius: 10px; margin: 20px 0; }
.eeat-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 107, 107, 0.3); }
.eeat-author-info { flex: 1; }
.eeat-author-info .author-name { font-weight: 700; color: #FFFFFF; font-size: 0.95rem; }
.eeat-author-info .author-title { color: #FFB347; font-size: 0.82rem; }
.eeat-author-info .author-date { color: #888; font-size: 0.78rem; margin-top: 2px; }

/* ============ Video Tag Cloud ============ */
.video-tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 20px 0; }
.video-tag-cloud a { padding: 8px 18px; background: rgba(255, 107, 107, 0.08); border: 1px solid rgba(255, 107, 107, 0.15); border-radius: 20px; color: #C0C0C0; font-size: 0.88rem; transition: all 0.3s ease; }
.video-tag-cloud a:hover { background: rgba(255, 107, 107, 0.2); color: #FFB347; border-color: rgba(255, 107, 107, 0.4); }

/* ============ Emotion & Education Section ============ */
.emotion-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.emotion-card { background: linear-gradient(145deg, #16182A, #1A1C32); border-radius: 12px; padding: 24px; border: 1px solid rgba(255, 107, 107, 0.08); transition: all 0.3s ease; }
.emotion-card:hover { border-color: rgba(255, 107, 107, 0.25); transform: translateY(-3px); }
.emotion-card h4 { font-size: 1.05rem; margin-bottom: 10px; color: #FFB347; }
.emotion-card p { color: #A0A0A0; font-size: 0.9rem; line-height: 1.7; }
