/* ===== 麻豆影视传媒 - 原创样式表 ===== */
/* 品牌配色：樱花粉#E8456B 浅玫瑰#FF7E9D 梦幻紫#6C3CE0 */

/* --- 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, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif; color: #2D1B4E; background: #FFF8FA; line-height: 1.7; }
a { color: #E8456B; text-decoration: none; transition: color .25s; }
a:hover { color: #6C3CE0; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* --- Header --- */
.tjoz5-header { background: #fff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(45,27,78,.06); }
.tjoz5-header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.tjoz5-logo img { height: 42px; width: auto; }
.tjoz5-nav ul { display: flex; gap: 6px; }
.tjoz5-nav a { display: block; padding: 8px 14px; border-radius: 8px; font-size: 15px; color: #2D1B4E; font-weight: 500; transition: all .25s; }
.tjoz5-nav a:hover, .tjoz5-nav a.active { background: linear-gradient(135deg, #E8456B, #6C3CE0); color: #fff; }
.tjoz5-menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 24px; position: relative; }
.tjoz5-menu-toggle span { display: block; width: 100%; height: 3px; background: #2D1B4E; border-radius: 2px; position: absolute; left: 0; transition: all .3s; }
.tjoz5-menu-toggle span:nth-child(1) { top: 0; }
.tjoz5-menu-toggle span:nth-child(2) { top: 10px; }
.tjoz5-menu-toggle span:nth-child(3) { top: 20px; }

/* --- Search Bar --- */
.tjoz5-search-bar { padding: 8px 0 12px; }
.tjoz5-search-form { display: flex; max-width: 600px; margin: 0 auto; }
.tjoz5-search-input { flex: 1; padding: 10px 18px; border: 2px solid #F0E0F0; border-radius: 25px 0 0 25px; font-size: 14px; outline: none; background: #FFF8FA; transition: border-color .25s; }
.tjoz5-search-input:focus { border-color: #E8456B; }
.tjoz5-search-btn { padding: 10px 24px; background: linear-gradient(135deg, #E8456B, #6C3CE0); color: #fff; border: none; border-radius: 0 25px 25px 0; font-size: 14px; cursor: pointer; font-weight: 600; transition: opacity .25s; }
.tjoz5-search-btn:hover { opacity: .9; }

/* --- Breadcrumb --- */
.tjoz5-breadcrumb { background: #F8F0F8; padding: 10px 0; font-size: 13px; }
.tjoz5-breadcrumb ol { display: flex; gap: 8px; }
.tjoz5-breadcrumb li::after { content: " / "; color: #7B6B8A; margin-left: 8px; }
.tjoz5-breadcrumb li:last-child::after { content: ""; }
.tjoz5-breadcrumb a { color: #7B6B8A; }
.tjoz5-breadcrumb a:hover { color: #E8456B; }

/* --- Hero Section --- */
.tjoz5-hero { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.tjoz5-hero-bg { position: absolute; inset: 0; }
.tjoz5-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.tjoz5-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,14,46,.78), rgba(108,60,224,.55)); }
.tjoz5-hero-content { position: relative; z-index: 2; color: #fff; text-align: center; padding: 60px 0; }
.tjoz5-hero-title { font-size: 42px; font-weight: 800; margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.tjoz5-hero-subtitle { font-size: 18px; opacity: .92; margin-bottom: 36px; max-width: 700px; margin-left: auto; margin-right: auto; }
.tjoz5-hero-stats { display: flex; justify-content: center; gap: 40px; margin-bottom: 36px; flex-wrap: wrap; }
.tjoz5-stat-item { text-align: center; }
.tjoz5-stat-num { display: block; font-size: 28px; font-weight: 800; }
.tjoz5-stat-label { font-size: 13px; opacity: .8; }
.tjoz5-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Buttons --- */
.tjoz5-btn { display: inline-block; padding: 12px 28px; border-radius: 25px; font-size: 15px; font-weight: 600; transition: all .3s; cursor: pointer; text-align: center; }
.tjoz5-btn-primary { background: linear-gradient(135deg, #E8456B, #6C3CE0); color: #fff; border: none; }
.tjoz5-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,69,107,.35); color: #fff; }
.tjoz5-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.tjoz5-btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; }
.tjoz5-btn-secondary { background: #FFF0F3; color: #E8456B; border: 2px solid #E8456B; }
.tjoz5-btn-secondary:hover { background: #E8456B; color: #fff; }
.tjoz5-btn-sm { padding: 6px 16px; font-size: 13px; border-radius: 18px; }
.tjoz5-btn-outline-sm { background: transparent; color: #6C3CE0; border: 1.5px solid #6C3CE0; }
.tjoz5-btn-outline-sm:hover { background: #6C3CE0; color: #fff; }

/* --- Section --- */
.tjoz5-section { padding: 64px 0; }
.tjoz5-section-title { font-size: 30px; font-weight: 800; text-align: center; margin-bottom: 12px; color: #1A0E2E; }
.tjoz5-section-title::after { content: ""; display: block; width: 60px; height: 4px; background: linear-gradient(90deg, #E8456B, #6C3CE0); margin: 12px auto 0; border-radius: 2px; }
.tjoz5-text-left { text-align: left; }
.tjoz5-text-left::after { margin: 12px 0 0; }
.tjoz5-section-desc { text-align: center; color: #7B6B8A; font-size: 15px; max-width: 700px; margin: 0 auto 40px; }
.tjoz5-section-more { text-align: center; margin-top: 32px; }
.tjoz5-bg-light { background: #F8F0F8; }

/* --- Services Grid --- */
.tjoz5-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tjoz5-service-card { background: #fff; border-radius: 16px; padding: 32px 24px; text-align: center; box-shadow: 0 4px 20px rgba(45,27,78,.06); transition: all .3s; border: 1px solid #F0E0F0; }
.tjoz5-service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(232,69,107,.12); border-color: #E8456B; }
.tjoz5-service-icon { font-size: 40px; margin-bottom: 16px; }
.tjoz5-service-card h3, .tjoz5-service-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #1A0E2E; }
.tjoz5-service-card p { font-size: 14px; color: #7B6B8A; line-height: 1.6; }

/* --- Video Grid --- */
.tjoz5-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tjoz5-video-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(45,27,78,.06); transition: all .3s; border: 1px solid #F0E0F0; }
.tjoz5-video-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(232,69,107,.12); }
.tjoz5-video-thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.tjoz5-video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tjoz5-video-card:hover .tjoz5-video-thumb img { transform: scale(1.05); }
.tjoz5-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; background: rgba(232,69,107,.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: all .3s; cursor: pointer; }
.tjoz5-play-btn span { color: #fff; font-size: 22px; margin-left: 3px; }
.tjoz5-video-card:hover .tjoz5-play-btn { opacity: 1; }
.tjoz5-video-duration { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,.7); color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 12px; }
.tjoz5-video-tag { position: absolute; top: 8px; left: 8px; background: linear-gradient(135deg, #E8456B, #6C3CE0); color: #fff; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.tjoz5-video-info { padding: 16px; }
.tjoz5-video-info h4 { font-size: 15px; font-weight: 700; color: #1A0E2E; margin-bottom: 6px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tjoz5-video-meta { font-size: 12px; color: #7B6B8A; }
.tjoz5-video-desc { font-size: 13px; color: #7B6B8A; margin-top: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* --- Entertainment Grid --- */
.tjoz5-ent-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.tjoz5-ent-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 16/10; }
.tjoz5-ent-large { grid-row: span 2; aspect-ratio: auto; }
.tjoz5-ent-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tjoz5-ent-card:hover img { transform: scale(1.06); }
.tjoz5-ent-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px; background: linear-gradient(transparent, rgba(26,14,46,.85)); color: #fff; }
.tjoz5-ent-tag { display: inline-block; background: #E8456B; padding: 3px 10px; border-radius: 10px; font-size: 11px; font-weight: 600; margin-bottom: 8px; }
.tjoz5-ent-overlay h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.tjoz5-ent-overlay p { font-size: 13px; opacity: .85; }

/* --- AI Section --- */
.tjoz5-ai { background: linear-gradient(135deg, #1A0E2E 0%, #2D1B4E 100%); color: #fff; }
.tjoz5-ai .tjoz5-section-title { color: #fff; }
.tjoz5-ai .tjoz5-section-title::after { background: linear-gradient(90deg, #FF7E9D, #E8456B); }
.tjoz5-ai-wrapper { display: flex; gap: 48px; align-items: center; }
.tjoz5-ai-content { flex: 1; }
.tjoz5-ai-desc { color: rgba(255,255,255,.8); font-size: 15px; margin-bottom: 28px; }
.tjoz5-ai-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.tjoz5-ai-feature { background: rgba(255,255,255,.08); border-radius: 12px; padding: 18px 20px; border-left: 3px solid #E8456B; }
.tjoz5-ai-feature h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.tjoz5-ai-feature p { font-size: 13px; color: rgba(255,255,255,.75); }
.tjoz5-ai-image { flex: 0 0 45%; }
.tjoz5-ai-image img { border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,.3); }

/* --- Community Grid --- */
.tjoz5-community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tjoz5-comm-card { background: #fff; border-radius: 14px; padding: 28px 22px; text-align: center; box-shadow: 0 4px 16px rgba(45,27,78,.06); border: 1px solid #F0E0F0; transition: all .3s; position: relative; }
.tjoz5-comm-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(232,69,107,.1); }
.tjoz5-comm-icon { font-size: 36px; margin-bottom: 14px; }
.tjoz5-comm-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: #1A0E2E; }
.tjoz5-comm-card p { font-size: 13px; color: #7B6B8A; margin-bottom: 12px; }
.tjoz5-comm-status { display: inline-block; padding: 3px 12px; border-radius: 12px; font-size: 11px; font-weight: 600; background: #F0E0F0; color: #6C3CE0; }
.tjoz5-live { background: #FFE0E6; color: #E8456B; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .6; } }

/* --- Expert Grid --- */
.tjoz5-expert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tjoz5-expert-card { background: #fff; border-radius: 16px; padding: 28px 20px; text-align: center; box-shadow: 0 4px 20px rgba(45,27,78,.06); border: 1px solid #F0E0F0; transition: all .3s; }
.tjoz5-expert-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(232,69,107,.12); }
.tjoz5-expert-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; border: 3px solid #F0E0F0; }
.tjoz5-expert-card h4 { font-size: 18px; font-weight: 700; color: #1A0E2E; margin-bottom: 4px; }
.tjoz5-expert-title { font-size: 13px; color: #E8456B; font-weight: 600; margin-bottom: 8px; }
.tjoz5-expert-desc { font-size: 13px; color: #7B6B8A; margin-bottom: 10px; }
.tjoz5-expert-awards { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 14px; }
.tjoz5-expert-awards span { background: #F8F0F8; color: #6C3CE0; padding: 2px 10px; border-radius: 10px; font-size: 11px; }
.tjoz5-expert-actions { display: flex; gap: 8px; justify-content: center; }

/* --- Partners --- */
.tjoz5-partners { background: #F8F0F8; }
.tjoz5-partner-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tjoz5-partner-item { background: #fff; border-radius: 12px; padding: 24px; display: flex; align-items: center; justify-content: center; min-height: 80px; box-shadow: 0 2px 10px rgba(45,27,78,.04); border: 1px solid #F0E0F0; transition: all .3s; }
.tjoz5-partner-item:hover { box-shadow: 0 4px 16px rgba(232,69,107,.1); border-color: #E8456B; }
.tjoz5-partner-placeholder { font-size: 16px; font-weight: 700; color: #7B6B8A; }

/* --- HowTo & FAQ --- */
.tjoz5-howto-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.tjoz5-steps { display: flex; flex-direction: column; gap: 20px; }
.tjoz5-step { display: flex; gap: 16px; align-items: flex-start; }
.tjoz5-step-num { width: 40px; height: 40px; min-width: 40px; background: linear-gradient(135deg, #E8456B, #6C3CE0); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; }
.tjoz5-step-content h4 { font-size: 16px; font-weight: 700; color: #1A0E2E; margin-bottom: 4px; }
.tjoz5-step-content p { font-size: 13px; color: #7B6B8A; }
.tjoz5-faq-section h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; color: #1A0E2E; }
.tjoz5-faq-list { display: flex; flex-direction: column; gap: 10px; }
.tjoz5-faq-item { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #F0E0F0; }
.tjoz5-faq-q { padding: 14px 18px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 14px; color: #1A0E2E; transition: background .2s; }
.tjoz5-faq-q:hover { background: #FFF0F3; }
.tjoz5-faq-arrow { font-size: 10px; color: #7B6B8A; transition: transform .3s; }
.tjoz5-faq-item.active .tjoz5-faq-arrow { transform: rotate(180deg); }
.tjoz5-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.tjoz5-faq-item.active .tjoz5-faq-a { max-height: 200px; }
.tjoz5-faq-a p { padding: 0 18px 14px; font-size: 13px; color: #7B6B8A; line-height: 1.7; }

/* --- Reviews --- */
.tjoz5-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tjoz5-review-card { background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 4px 16px rgba(45,27,78,.06); border: 1px solid #F0E0F0; transition: all .3s; }
.tjoz5-review-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,69,107,.1); }
.tjoz5-review-stars { color: #FFB800; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.tjoz5-review-text { font-size: 14px; color: #2D1B4E; line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.tjoz5-review-author { display: flex; justify-content: space-between; font-size: 12px; color: #7B6B8A; }
.tjoz5-review-name { font-weight: 600; color: #E8456B; }

/* --- Contact --- */
.tjoz5-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.tjoz5-contact-info h4 { font-size: 22px; font-weight: 700; color: #1A0E2E; margin-bottom: 20px; }
.tjoz5-contact-item { padding: 10px 0; border-bottom: 1px solid #F0E0F0; font-size: 14px; }
.tjoz5-contact-item strong { color: #1A0E2E; }
.tjoz5-contact-qrcodes { display: flex; gap: 24px; justify-content: center; }
.tjoz5-qrcode { text-align: center; }
.tjoz5-qrcode img { width: 150px; height: 150px; border-radius: 10px; border: 2px solid #F0E0F0; }
.tjoz5-qrcode p { font-size: 13px; color: #7B6B8A; margin-top: 8px; }

/* --- Share --- */
.tjoz5-share { background: linear-gradient(135deg, #E8456B, #6C3CE0); color: #fff; padding: 36px 0; text-align: center; }
.tjoz5-share h3 { font-size: 22px; font-weight: 700; margin-bottom: 18px; }
.tjoz5-share-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.tjoz5-share-btn { display: inline-block; padding: 10px 22px; background: rgba(255,255,255,.18); color: #fff; border-radius: 20px; font-size: 14px; font-weight: 600; transition: all .25s; }
.tjoz5-share-btn:hover { background: rgba(255,255,255,.35); color: #fff; }

/* --- Footer --- */
.tjoz5-footer { background: #1A0E2E; color: rgba(255,255,255,.8); padding: 48px 0 0; }
.tjoz5-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.tjoz5-footer-brand img { height: 36px; width: auto; margin-bottom: 12px; }
.tjoz5-footer-brand p { font-size: 13px; line-height: 1.7; opacity: .75; }
.tjoz5-footer-links h5, .tjoz5-footer-contact h5 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.tjoz5-footer-links a { display: block; padding: 4px 0; font-size: 13px; color: rgba(255,255,255,.65); transition: color .25s; }
.tjoz5-footer-links a:hover { color: #FF7E9D; }
.tjoz5-footer-contact p { font-size: 13px; padding: 3px 0; opacity: .75; }
.tjoz5-footer-bottom { padding: 18px 0; text-align: center; font-size: 13px; opacity: .6; }
.tjoz5-footer-bottom a { color: #FF7E9D; }

/* --- Page Hero (Inner Pages) --- */
.tjoz5-page-hero { background: linear-gradient(135deg, #E8456B, #6C3CE0); color: #fff; padding: 56px 0; text-align: center; }
.tjoz5-page-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
.tjoz5-page-hero h2 { font-size: 18px; font-weight: 500; opacity: .9; margin-bottom: 12px; }
.tjoz5-page-hero p { font-size: 15px; opacity: .8; max-width: 650px; margin: 0 auto; }
.tjoz5-page-hero-purple { background: linear-gradient(135deg, #6C3CE0, #1A0E2E); }
.tjoz5-page-hero-pink { background: linear-gradient(135deg, #FF7E9D, #E8456B); }
.tjoz5-page-hero-dark { background: linear-gradient(135deg, #1A0E2E, #2D1B4E); }
.tjoz5-page-hero-warm { background: linear-gradient(135deg, #E8456B, #FF7E9D); }

/* --- Filter Bar --- */
.tjoz5-filter-bar { display: flex; gap: 10px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.tjoz5-filter-btn { padding: 8px 20px; border: 2px solid #F0E0F0; background: #fff; border-radius: 20px; font-size: 13px; font-weight: 600; color: #7B6B8A; cursor: pointer; transition: all .25s; }
.tjoz5-filter-btn:hover, .tjoz5-filter-btn.active { background: linear-gradient(135deg, #E8456B, #6C3CE0); color: #fff; border-color: transparent; }

/* --- Tags --- */
.tjoz5-tags-section { padding: 40px 0; }
.tjoz5-tags-section h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; text-align: center; }
.tjoz5-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.tjoz5-tag { display: inline-block; padding: 6px 16px; background: #FFF0F3; color: #E8456B; border-radius: 16px; font-size: 13px; font-weight: 500; transition: all .25s; border: 1px solid #FFD0DA; }
.tjoz5-tag:hover { background: #E8456B; color: #fff; }

/* --- Course Grid --- */
.tjoz5-course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tjoz5-course-card { background: #fff; border-radius: 16px; padding: 28px 24px; box-shadow: 0 4px 20px rgba(45,27,78,.06); border: 1px solid #F0E0F0; transition: all .3s; }
.tjoz5-course-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(232,69,107,.12); }
.tjoz5-course-level { display: inline-block; padding: 3px 14px; background: #E8456B; color: #fff; border-radius: 12px; font-size: 12px; font-weight: 700; margin-bottom: 12px; }
.tjoz5-level-mid { background: #6C3CE0; }
.tjoz5-level-pro { background: #1A0E2E; }
.tjoz5-course-card h4 { font-size: 17px; font-weight: 700; color: #1A0E2E; margin-bottom: 8px; }
.tjoz5-course-card p { font-size: 13px; color: #7B6B8A; margin-bottom: 12px; }
.tjoz5-course-meta { display: flex; gap: 16px; font-size: 12px; color: #7B6B8A; margin-bottom: 16px; }
.tjoz5-course-thumb { border-radius: 10px; overflow: hidden; }

/* --- Live Grid --- */
.tjoz5-live-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tjoz5-live-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(45,27,78,.06); border: 1px solid #F0E0F0; }
.tjoz5-live-badge { position: absolute; top: 10px; left: 10px; background: #E8456B; color: #fff; padding: 3px 12px; border-radius: 12px; font-size: 11px; font-weight: 700; animation: pulse 2s infinite; }
.tjoz5-live-soon { background: #6C3CE0; animation: none; }
.tjoz5-live-info { padding: 16px; }
.tjoz5-live-info h4 { font-size: 15px; font-weight: 700; color: #1A0E2E; margin-bottom: 6px; }
.tjoz5-live-info p { font-size: 13px; color: #7B6B8A; margin-bottom: 8px; }
.tjoz5-live-viewers { font-size: 12px; color: #E8456B; font-weight: 600; }

/* --- Topic List --- */
.tjoz5-topic-list { display: flex; flex-direction: column; gap: 12px; }
.tjoz5-topic-item { display: flex; align-items: center; gap: 14px; background: #fff; padding: 16px 20px; border-radius: 12px; border: 1px solid #F0E0F0; transition: all .25s; }
.tjoz5-topic-item:hover { box-shadow: 0 4px 16px rgba(232,69,107,.08); }
.tjoz5-topic-hot { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; min-width: 28px; background: #E8456B; color: #fff; border-radius: 6px; font-size: 12px; font-weight: 700; }
.tjoz5-topic-new { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; min-width: 28px; background: #6C3CE0; color: #fff; border-radius: 6px; font-size: 12px; font-weight: 700; }
.tjoz5-topic-content { flex: 1; }
.tjoz5-topic-content h4 { font-size: 15px; font-weight: 700; color: #E8456B; margin-bottom: 2px; }
.tjoz5-topic-content p { font-size: 13px; color: #7B6B8A; }
.tjoz5-topic-count { font-size: 12px; color: #7B6B8A; white-space: nowrap; }

/* --- Gallery Grid --- */
.tjoz5-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tjoz5-gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.tjoz5-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tjoz5-gallery-item:hover img { transform: scale(1.08); }

/* --- Tools Grid --- */
.tjoz5-tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.tjoz5-tool-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 4px 20px rgba(45,27,78,.06); border: 1px solid #F0E0F0; transition: all .3s; }
.tjoz5-tool-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(232,69,107,.12); }
.tjoz5-tool-preview { border-radius: 12px; overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/10; }
.tjoz5-tool-preview img { width: 100%; height: 100%; object-fit: cover; }
.tjoz5-tool-card h4 { font-size: 18px; font-weight: 700; color: #1A0E2E; margin-bottom: 8px; }
.tjoz5-tool-card p { font-size: 13px; color: #7B6B8A; margin-bottom: 14px; }
.tjoz5-tool-features { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tjoz5-tool-features span { background: #F8F0F8; color: #6C3CE0; padding: 3px 12px; border-radius: 12px; font-size: 11px; font-weight: 600; }

/* --- Data Features --- */
.tjoz5-data-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tjoz5-data-card { background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 4px 16px rgba(45,27,78,.06); border-left: 4px solid #6C3CE0; }
.tjoz5-data-card h4 { font-size: 16px; font-weight: 700; color: #1A0E2E; margin-bottom: 8px; }
.tjoz5-data-card p { font-size: 13px; color: #7B6B8A; }

/* --- Tips Grid --- */
.tjoz5-tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tjoz5-tip-card { background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 4px 16px rgba(45,27,78,.06); border: 1px solid #F0E0F0; }
.tjoz5-tip-card h4 { font-size: 16px; font-weight: 700; color: #1A0E2E; margin-bottom: 8px; }
.tjoz5-tip-card p { font-size: 13px; color: #7B6B8A; }

/* --- About Content --- */
.tjoz5-about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.tjoz5-about-text p { font-size: 15px; color: #2D1B4E; margin-bottom: 16px; line-height: 1.8; }
.tjoz5-about-text h4 { font-size: 20px; font-weight: 700; color: #1A0E2E; margin: 24px 0 12px; }
.tjoz5-about-image img { border-radius: 16px; box-shadow: 0 8px 32px rgba(45,27,78,.1); }

/* --- Contact Detail --- */
.tjoz5-contact-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.tjoz5-contact-detail-card { background: #fff; border-radius: 16px; padding: 32px; box-shadow: 0 4px 20px rgba(45,27,78,.06); border: 1px solid #F0E0F0; }
.tjoz5-contact-detail-card h4 { font-size: 20px; font-weight: 700; color: #1A0E2E; margin-bottom: 20px; }
.tjoz5-contact-list { display: flex; flex-direction: column; gap: 12px; }
.tjoz5-contact-row { font-size: 14px; padding: 8px 0; border-bottom: 1px solid #F8F0F8; }
.tjoz5-contact-row strong { color: #1A0E2E; display: inline-block; min-width: 90px; }

/* --- Inspiration Grid --- */
.tjoz5-inspiration-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tjoz5-inspiration-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(45,27,78,.06); border: 1px solid #F0E0F0; transition: all .3s; }
.tjoz5-inspiration-card:hover { transform: translateY(-3px); }
.tjoz5-inspiration-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.tjoz5-inspiration-card h4 { padding: 14px 16px 4px; font-size: 15px; font-weight: 700; color: #1A0E2E; }
.tjoz5-inspiration-card p { padding: 0 16px 16px; font-size: 13px; color: #7B6B8A; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .tjoz5-services-grid, .tjoz5-community-grid, .tjoz5-review-grid, .tjoz5-course-grid, .tjoz5-live-grid, .tjoz5-inspiration-grid { grid-template-columns: repeat(2, 1fr); }
    .tjoz5-expert-grid { grid-template-columns: repeat(2, 1fr); }
    .tjoz5-video-grid { grid-template-columns: repeat(2, 1fr); }
    .tjoz5-partner-wall { grid-template-columns: repeat(3, 1fr); }
    .tjoz5-ai-wrapper { flex-direction: column; }
    .tjoz5-ai-image { flex: none; }
    .tjoz5-howto-wrapper { grid-template-columns: 1fr; }
    .tjoz5-footer-grid { grid-template-columns: 1fr 1fr; }
    .tjoz5-contact-grid { grid-template-columns: 1fr; }
    .tjoz5-about-content { grid-template-columns: 1fr; }
    .tjoz5-tools-grid { grid-template-columns: 1fr; }
    .tjoz5-contact-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .tjoz5-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: #fff; padding: 20px; box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 999; }
    .tjoz5-nav.active { display: block; }
    .tjoz5-nav ul { flex-direction: column; gap: 4px; }
    .tjoz5-nav a { padding: 12px 16px; }
    .tjoz5-menu-toggle { display: block; }
    .tjoz5-hero-title { font-size: 28px; }
    .tjoz5-hero-subtitle { font-size: 15px; }
    .tjoz5-hero-stats { gap: 20px; }
    .tjoz5-stat-num { font-size: 22px; }
    .tjoz5-section-title { font-size: 24px; }
    .tjoz5-services-grid, .tjoz5-community-grid, .tjoz5-review-grid, .tjoz5-video-grid, .tjoz5-course-grid, .tjoz5-live-grid, .tjoz5-inspiration-grid { grid-template-columns: 1fr; }
    .tjoz5-expert-grid { grid-template-columns: 1fr; }
    .tjoz5-partner-wall { grid-template-columns: repeat(2, 1fr); }
    .tjoz5-ent-grid { grid-template-columns: 1fr; }
    .tjoz5-ent-large { grid-row: span 1; }
    .tjoz5-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .tjoz5-data-features, .tjoz5-tips-grid { grid-template-columns: 1fr; }
    .tjoz5-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .tjoz5-page-hero h1 { font-size: 26px; }
    .tjoz5-page-hero h2 { font-size: 15px; }
    .tjoz5-hero { min-height: 400px; }
}

@media (max-width: 480px) {
    .tjoz5-container { padding: 0 14px; }
    .tjoz5-hero-title { font-size: 24px; }
    .tjoz5-hero-stats { gap: 14px; }
    .tjoz5-stat-num { font-size: 18px; }
    .tjoz5-section { padding: 40px 0; }
    .tjoz5-hero-actions { flex-direction: column; align-items: center; }
    .tjoz5-btn { padding: 10px 22px; font-size: 14px; }
}

/* --- H5 Video Element --- */
.tjoz5-video-el { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; display: none; }
.tjoz5-video-poster { position: relative; z-index: 2; }
.tjoz5-video-thumb .tjoz5-play-btn { z-index: 5; }
.tjoz5-video-thumb .tjoz5-video-duration { z-index: 4; }
.tjoz5-video-thumb .tjoz5-video-tag { z-index: 4; }

/* --- Update Time --- */
.tjoz5-update-time { font-size: 13px; opacity: .7; margin-top: 10px; }
.tjoz5-page-hero .tjoz5-update-time { color: rgba(255,255,255,.7); }

/* --- Page Hero Gradient Variant --- */
.tjoz5-page-hero-gradient { background: linear-gradient(135deg, #E8456B 0%, #6C3CE0 50%, #1A0E2E 100%); }

/* --- Scroll to Top Button --- */
.tjoz5-scroll-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; background: linear-gradient(135deg, #E8456B, #6C3CE0); color: #fff; border: none; border-radius: 50%; font-size: 20px; cursor: pointer; opacity: 0; visibility: hidden; transition: all .3s; z-index: 999; box-shadow: 0 4px 16px rgba(232,69,107,.3); }
.tjoz5-scroll-top.visible { opacity: 1; visibility: visible; }
.tjoz5-scroll-top:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(232,69,107,.4); }
