@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap");
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --primary: #ff4d6a; --primary-dark: #e03355; --secondary: #7c3aed; --accent: #ff8c42; --dark: #1a1a2e; --darker: #0f0f1e; --gray: #8892a4; --glass: rgba(255,255,255,.08); }
html { scroll-behavior: smooth; }
body { font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif; background: var(--darker); color: #fff; overflow-x: hidden; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 40px; display: flex; align-items: center; justify-content: space-between; transition: background .3s, box-shadow .3s; }
nav.scrolled { background: rgba(15,15,30,.85); backdrop-filter: blur(16px); box-shadow: 0 2px 24px rgba(0,0,0,.3); }
.logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 900; text-decoration: none; color: #fff; }
.logo-icon { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 15px; font-weight: 500; transition: color .3s; }
.nav-links a:hover { color: #fff; }
.nav-download-btn { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border: none; padding: 10px 24px; border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.nav-download-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,77,106,.4); }
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 40px 80px; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -40%; left: -20%; width: 70%; height: 120%; background: radial-gradient(circle, rgba(124,58,237,.25) 0%, transparent 60%); pointer-events: none; }
.hero::after { content: ""; position: absolute; bottom: -30%; right: -10%; width: 50%; height: 100%; background: radial-gradient(circle, rgba(255,77,106,.2) 0%, transparent 60%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; max-width: 1200px; width: 100%; gap: 60px; }
.hero-text { flex: 1; max-width: 560px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--glass); border: 1px solid rgba(255,255,255,.12); padding: 6px 16px; border-radius: 50px; font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 24px; backdrop-filter: blur(8px); }
.hero-badge span { animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero-title { font-size: 56px; font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.hero-title .gradient-text { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 17px; color: var(--gray); line-height: 1.8; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary, .btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 16px; font-size: 16px; font-weight: 700; text-decoration: none; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; transition: transform .2s, box-shadow .2s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,77,106,.4); }
.btn-secondary { background: var(--glass); border: 1px solid rgba(255,255,255,.15); color: #fff; transition: transform .2s, background .2s; backdrop-filter: blur(8px); }
.btn-secondary:hover { transform: translateY(-3px); background: rgba(255,255,255,.12); }
.btn-icon { font-size: 22px; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; }
.stat-num { font-size: 28px; font-weight: 900; background: linear-gradient(135deg, #fff, rgba(255,255,255,.7)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 13px; color: var(--gray); margin-top: 4px; }
.hero-phone { flex-shrink: 0; position: relative; }
.phone-mockup { width: 300px; height: 620px; background: linear-gradient(160deg, #2a2a45, #1a1a2e); border-radius: 44px; border: 3px solid rgba(255,255,255,.1); padding: 12px; position: relative; box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05) inset; overflow: hidden; }
.phone-screen { width: 100%; height: 100%; border-radius: 34px; overflow: hidden; position: relative; background: #111; }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 28px; background: #1a1a2e; border-radius: 0 0 18px 18px; z-index: 10; }
.phone-screen-content { width: 100%; height: 100%; background: linear-gradient(180deg, #1a0a2e 0%, #0a0a1a 100%); display: flex; flex-direction: column; }
.screen-header { padding: 40px 16px 12px; display: flex; align-items: center; justify-content: space-between; }
.screen-header-title { font-size: 18px; font-weight: 700; }
.screen-tabs { display: flex; gap: 4px; padding: 0 12px 8px; }
.screen-tab { padding: 6px 14px; border-radius: 20px; font-size: 11px; color: rgba(255,255,255,.5); }
.screen-tab.active { background: var(--primary); color: #fff; font-weight: 600; }
.screen-cards { flex: 1; padding: 8px 12px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.screen-card { border-radius: 14px; overflow: hidden; position: relative; }
.screen-card-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.card-gradient-1 { background: linear-gradient(135deg, #ff6b6b, #845ec2); }
.card-gradient-3 { background: linear-gradient(135deg, #ff8c42, #d83f87); }
.screen-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 12px 10px; background: linear-gradient(transparent, rgba(0,0,0,.8)); }
.screen-card-title { font-size: 13px; font-weight: 700; }
.screen-card-meta { font-size: 10px; color: rgba(255,255,255,.6); margin-top: 3px; }
.screen-card-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: rgba(255,255,255,.2); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.screen-bottom-bar { display: flex; justify-content: space-around; padding: 10px 0 14px; border-top: 1px solid rgba(255,255,255,.06); }
.bottom-bar-item { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 9px; color: rgba(255,255,255,.4); }
.bottom-bar-item.active { color: var(--primary); }
.bottom-bar-item span.bar-icon { font-size: 18px; }
.float-card { position: absolute; background: rgba(30,30,55,.85); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 14px 18px; z-index: 5; animation: float 6s ease-in-out infinite; }
.float-card-1 { top: 80px; right: -60px; }
.float-card-2 { bottom: 120px; left: -70px; animation-delay: 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.fc-icon { font-size: 28px; margin-bottom: 6px; }
.fc-title { font-size: 13px; font-weight: 700; }
.fc-sub { font-size: 11px; color: var(--gray); }
.features, .hot-shows, .reviews { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-block; background: rgba(255,77,106,.12); color: var(--primary); padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.section-title { font-size: 40px; font-weight: 900; margin-bottom: 16px; line-height: 1.3; }
.section-desc { font-size: 16px; color: var(--gray); max-width: 520px; line-height: 1.7; margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: 24px; padding: 36px 28px; transition: transform .3s, box-shadow .3s, border-color .3s; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,.3); border-color: rgba(255,77,106,.3); }
.feature-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.fi-1 { background: rgba(255,77,106,.15); } .fi-2 { background: rgba(124,58,237,.15); } .fi-3 { background: rgba(255,140,66,.15); } .fi-4 { background: rgba(0,201,167,.15); } .fi-5 { background: rgba(59,130,246,.15); } .fi-6 { background: rgba(236,72,153,.15); }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.screenshots { padding: 100px 0; text-align: center; overflow: hidden; }
.screenshots .section-tag, .screenshots .section-title, .screenshots .section-desc { padding: 0 40px; }
.screenshots .section-desc { margin-left: auto; margin-right: auto; }
.screenshot-carousel { display: flex; gap: 24px; padding: 0 40px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.screenshot-carousel::-webkit-scrollbar { display: none; }
.screenshot-item { flex-shrink: 0; width: 220px; height: 400px; border-radius: 28px; overflow: hidden; border: 2px solid rgba(255,255,255,.08); scroll-snap-align: center; transition: transform .3s, box-shadow .3s; }
.screenshot-item:hover { transform: scale(1.05); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.screenshot-item .ss-bg { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; text-align: center; }
.sg-1 { background: linear-gradient(160deg, #2d1b69, #11001c); } .sg-2 { background: linear-gradient(160deg, #1b3a4b, #0a1628); } .sg-3 { background: linear-gradient(160deg, #4b1b2d, #1c0011); } .sg-4 { background: linear-gradient(160deg, #1b4b3a, #001c11); } .sg-5 { background: linear-gradient(160deg, #4b3a1b, #1c1100); }
.ss-icon { font-size: 48px; margin-bottom: 16px; } .ss-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; } .ss-desc { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.6; }
.shows-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.show-card { border-radius: 20px; overflow: hidden; position: relative; aspect-ratio: 3/4; cursor: pointer; transition: transform .3s; }
.show-card:hover { transform: translateY(-6px); }
.show-bg { width: 100%; height: 100%; }
.sb-1 { background: linear-gradient(160deg, #ff6b6b, #845ec2); } .sb-2 { background: linear-gradient(160deg, #00c9a7, #1a5276); } .sb-3 { background: linear-gradient(160deg, #ff8c42, #d83f87); } .sb-4 { background: linear-gradient(160deg, #4d8076, #2c3e7b); }
.show-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 16px 16px; background: linear-gradient(transparent, rgba(0,0,0,.85)); }
.show-tag { display: inline-block; background: var(--primary); padding: 3px 10px; border-radius: 6px; font-size: 10px; font-weight: 700; margin-bottom: 8px; }
.show-title { font-size: 16px; font-weight: 700; }
.show-info { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }
.show-rating, .show-episodes { position: absolute; top: 12px; background: rgba(0,0,0,.5); backdrop-filter: blur(8px); padding: 4px 10px; border-radius: 8px; font-size: 12px; font-weight: 700; }
.show-rating { right: 12px; color: var(--accent); }
.show-episodes { left: 12px; font-size: 11px; font-weight: 600; color: #fff; }
.show-play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 52px; height: 52px; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; opacity: 0; transition: opacity .3s; }
.show-card:hover .show-play-icon { opacity: 1; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 28px; transition: transform .3s; }
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: #ffd700; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.8; margin-bottom: 20px; }
.review-user { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; }
.ra-1 { background: linear-gradient(135deg, #ff6b6b, #845ec2); } .ra-2 { background: linear-gradient(135deg, #00c9a7, #1a5276); } .ra-3 { background: linear-gradient(135deg, #ff8c42, #d83f87); }
.review-name { font-size: 14px; font-weight: 700; } .review-date { font-size: 12px; color: var(--gray); }
.cta { padding: 100px 40px; }
.cta-box { max-width: 1000px; margin: 0 auto; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 32px; padding: 72px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before, .cta-box::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta-box::before { top: -50%; right: -20%; width: 400px; height: 400px; }
.cta-box::after { bottom: -40%; left: -10%; width: 300px; height: 300px; background: rgba(255,255,255,.06); }
.cta-box h2 { font-size: 36px; font-weight: 900; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-box p { font-size: 16px; opacity: .85; margin-bottom: 36px; position: relative; z-index: 1; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; position: relative; z-index: 1; flex-wrap: wrap; }
.cta-btn { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,.18); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.25); color: #fff; padding: 16px 32px; border-radius: 16px; text-decoration: none; transition: background .3s, transform .2s; }
.cta-btn:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }
.cta-btn-icon { font-size: 28px; } .cta-btn-text { text-align: left; } .cta-btn-text .small { font-size: 11px; opacity: .8; } .cta-btn-text .big { font-size: 16px; font-weight: 700; }
.cta-qr { margin-top: 32px; position: relative; z-index: 1; }
.cta-qr p { font-size: 13px; opacity: .7; margin-bottom: 12px; }
.qr-placeholder { width: 120px; height: 120px; background: #fff; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; color: var(--dark); font-size: 12px; font-weight: 600; }
footer { padding: 60px 40px 30px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 280px; } .footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--gray); line-height: 1.7; }
.footer-links h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 13px; color: var(--gray); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--gray); flex-wrap: wrap; gap: 12px; }
.social-icons { display: flex; gap: 12px; }
.social-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--glass); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: background .2s; }
.social-icon:hover { background: rgba(255,255,255,.12); }
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1024px) { .hero-content { flex-direction: column; text-align: center; } .hero-text { max-width: 100%; } .hero-buttons, .hero-stats { justify-content: center; } .features-grid, .shows-grid, .reviews-grid { grid-template-columns: repeat(2,1fr); } .float-card { display: none; } }
@media (max-width: 768px) { .hero-title { font-size: 36px; } .section-title { font-size: 28px; } .features-grid, .reviews-grid { grid-template-columns: 1fr; } .shows-grid { grid-template-columns: repeat(2,1fr); } .nav-links { display: none; } .hero { padding: 100px 20px 60px; } .features, .hot-shows, .reviews { padding: 60px 20px; } .cta-box { padding: 48px 24px; } .phone-mockup { width: 240px; height: 500px; } }
@media (max-width: 480px) { .hero-buttons { flex-direction: column; align-items: center; } .hero-stats { flex-direction: column; align-items: center; gap: 20px; } .shows-grid { grid-template-columns: 1fr; } .cta-buttons { flex-direction: column; align-items: center; } }
