/* 星耀传媒 - 全站样式表 */
/* 独特的深蓝金色配色方案 */

:root {
    --primary-dark: #0d0d1a;
    --secondary-dark: #1a1a2e;
    --accent-gold: #FFD700;
    --accent-orange: #FF8C00;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    --gradient-dark: linear-gradient(180deg, #0d0d1a 0%, #1a1a2e 100%);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
    background: var(--gradient-dark);
    color: var(--text-light);
    line-height: 1.8;
    min-height: 100vh;
}

/* 导航栏 - 非sticky */
.main-nav {
    background: var(--secondary-dark);
    padding: 1rem 0;
    border-bottom: 2px solid var(--accent-gold);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: block;
}

.nav-menu li a:hover {
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.nav-cta {
    background: var(--gradient-gold);
    color: var(--primary-dark) !important;
    font-weight: bold;
    box-shadow: var(--shadow-gold);
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    background: var(--gradient-gold);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Hero区域 */
.hero-section {
    background: linear-gradient(rgba(13, 13, 26, 0.85), rgba(26, 26, 46, 0.9)), url('../images/director-filming.webp');
    background-size: cover;
    background-position: center;
    padding: 5rem 1.5rem;
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* 按钮样式 */
.btn-primary {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-gold);
    padding: 1rem 2.5rem;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* 内容区块 */
.section {
    padding: 5rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-dark {
    background: var(--secondary-dark);
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* 作品卡片网格 */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.work-card {
    background: var(--secondary-dark);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent-gold);
}

.work-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.work-card-content {
    padding: 1.5rem;
}

.work-card-title {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.work-card-star {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.work-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.work-card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--accent-gold);
}

/* 明星展示区 */
.stars-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.star-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.star-card:hover {
    background: rgba(255, 215, 0, 0.1);
}

.star-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-gold);
    margin-bottom: 1rem;
}

.star-name {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.star-role {
    color: var(--accent-gold);
    font-size: 0.95rem;
}

/* 关于我们 */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.05rem;
    line-height: 2;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 荣誉展示 */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.award-item {
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
}

.award-item img {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.award-title {
    color: var(--accent-gold);
    font-weight: bold;
}

/* FAQ区域 */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary-dark);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--text-light);
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* 用户评价 */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent-gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: bold;
    color: var(--text-light);
}

.review-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.review-content {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* 支付方式 */
.payment-section {
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.payment-icons img {
    height: 50px;
    width: auto;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.payment-icons img:hover {
    filter: grayscale(0%);
}

/* 客服支持 */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-title {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.support-desc {
    color: var(--text-muted);
}

/* 页脚 */
.main-footer {
    background: var(--primary-dark);
    padding: 4rem 1.5rem 2rem;
    border-top: 2px solid var(--accent-gold);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-license {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* 面包屑导航 */
.breadcrumb {
    padding: 1rem 1.5rem;
    background: var(--secondary-dark);
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list a {
    color: var(--accent-gold);
    text-decoration: none;
}

.breadcrumb-list span {
    color: var(--text-muted);
}

/* 视频播放器 */
.video-player-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    border-radius: 16px;
    overflow: hidden;
    background: var(--primary-dark);
    aspect-ratio: 16/9;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid var(--primary-dark);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

/* 内页样式 */
.page-header {
    background: linear-gradient(rgba(13, 13, 26, 0.9), rgba(26, 26, 46, 0.95)), url('../images/studio-set.webp');
    background-size: cover;
    background-position: center;
    padding: 4rem 1.5rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.content-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.content-article h2 {
    color: var(--accent-gold);
    margin: 2rem 0 1rem;
    font-size: 1.6rem;
}

.content-article h3 {
    color: var(--text-light);
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.content-article p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.content-article img {
    width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}

/* APP下载页面 */
.download-hero {
    text-align: center;
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--secondary-dark);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.download-btn img {
    width: 40px;
    height: 40px;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.app-feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
}

.app-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* 响应式设计 - 移动端优先 */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-section {
        padding: 3rem 1rem;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* 懒加载图片占位 */
img[loading="lazy"] {
    background: var(--secondary-dark);
}

/* 打印样式 */
@media print {
    .main-nav,
    .main-footer {
        display: none;
    }
}
