/* ============================================================
   银河影业 (Galaxy Pictures) - 主样式表
   CSS前缀: yx-
   配色方案: 午夜黑 #1A1A1A / 荣耀金 #D4AF37 / 首映红 #E50914 / 象牙白 #F5F5F1
   ============================================================ */

/* === 字体引入 (本地化) === */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    src: local('Playfair Display Regular');
    font-display: swap;
}

/* === CSS变量 === */
:root {
    --yx-midnight: #1A1A1A;
    --yx-gold: #D4AF37;
    --yx-red: #E50914;
    --yx-ivory: #F5F5F1;
    --yx-dark-bg: #111111;
    --yx-card-bg: #222222;
    --yx-gold-light: #E8C547;
    --yx-gold-dark: #B8962E;
    --yx-text-muted: #999999;
    --yx-font-heading: 'Playfair Display', 'Georgia', 'Noto Serif SC', serif;
    --yx-font-body: 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
    --yx-transition: 0.3s ease;
    --yx-shadow-gold: 0 0 20px rgba(212,175,55,0.3);
    --yx-shadow-card: 0 4px 20px rgba(0,0,0,0.5);
}

/* === 干扰标签隐藏 === */
.galaxy-jammer-block {
    display: none !important;
}

/* === 全局重置 === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--yx-font-body);
    background-color: var(--yx-midnight);
    color: var(--yx-ivory);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--yx-gold);
    text-decoration: none;
    transition: color var(--yx-transition);
}

a:hover {
    color: var(--yx-gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--yx-font-heading);
    color: var(--yx-gold);
    line-height: 1.3;
}

/* === 导航栏 === */
#yx-header {
    width: 100%;
    background: rgba(26,26,26,0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    transition: background var(--yx-transition);
}

#yx-header.yx-header-solid {
    background: var(--yx-midnight);
}

.yx-nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
}

.yx-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--yx-font-heading);
    font-size: 1.4rem;
    color: var(--yx-gold);
    font-weight: 700;
    text-decoration: none;
}

.yx-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--yx-gold), var(--yx-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--yx-midnight);
}

.yx-nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.yx-nav-menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--yx-ivory);
    font-size: 0.95rem;
    position: relative;
    transition: all var(--yx-transition);
}

.yx-nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--yx-gold);
    transition: width var(--yx-transition);
    box-shadow: 0 0 8px rgba(212,175,55,0.5);
}

.yx-nav-menu li a:hover,
.yx-nav-menu li a.yx-active {
    color: var(--yx-gold);
}

.yx-nav-menu li a:hover::after,
.yx-nav-menu li a.yx-active::after {
    width: 80%;
}

/* 汉堡菜单 */
.yx-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.yx-hamburger span {
    width: 28px;
    height: 2px;
    background: var(--yx-gold);
    transition: all var(--yx-transition);
}

/* 移动端侧边菜单 */
.yx-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    transition: opacity var(--yx-transition);
}

.yx-mobile-overlay.yx-show {
    opacity: 1;
}

.yx-mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(20px);
    z-index: 2001;
    padding: 80px 30px 30px;
    transition: right var(--yx-transition);
}

.yx-mobile-menu.yx-show {
    right: 0;
}

.yx-mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--yx-gold);
    font-size: 1.8rem;
    cursor: pointer;
}

.yx-mobile-menu ul {
    list-style: none;
}

.yx-mobile-menu ul li {
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

.yx-mobile-menu ul li a {
    display: block;
    padding: 15px 0;
    color: var(--yx-ivory);
    font-size: 1.1rem;
}

.yx-mobile-menu ul li a:hover {
    color: var(--yx-gold);
    padding-left: 10px;
}

/* === 通用区块 === */
.yx-section {
    padding: 80px 30px;
    max-width: 1440px;
    margin: 0 auto;
}

.yx-section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--yx-gold);
    letter-spacing: 2px;
}

.yx-section-subtitle {
    font-family: var(--yx-font-heading);
    font-size: 0.9rem;
    text-align: center;
    color: var(--yx-text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.yx-section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: rgba(245,245,241,0.8);
    font-size: 1rem;
    line-height: 1.9;
}

.yx-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--yx-gold), transparent);
    margin: 20px auto 30px;
}

/* === 首页 - 光影序幕 (Hero) === */
.yx-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--yx-dark-bg);
}

.yx-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: brightness(0.4);
}

.yx-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17,17,17,0.3) 0%, rgba(26,26,26,0.8) 100%);
}

.yx-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.yx-hero-content h1 {
    font-size: 3.5rem;
    color: var(--yx-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(212,175,55,0.4);
    letter-spacing: 6px;
}

.yx-hero-slogan {
    font-family: var(--yx-font-heading);
    font-size: 1.5rem;
    color: var(--yx-ivory);
    margin-bottom: 25px;
    letter-spacing: 3px;
    opacity: 0.9;
}

.yx-hero-desc {
    font-size: 1.05rem;
    color: rgba(245,245,241,0.8);
    line-height: 1.9;
    margin-bottom: 35px;
}

.yx-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--yx-gold);
    color: var(--yx-gold);
    font-family: var(--yx-font-body);
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all var(--yx-transition);
    cursor: pointer;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.yx-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
    transition: left 0.5s ease;
}

.yx-btn:hover {
    background: rgba(212,175,55,0.1);
    box-shadow: var(--yx-shadow-gold);
    color: var(--yx-gold-light);
}

.yx-btn:hover::before {
    left: 100%;
}

.yx-btn-solid {
    background: var(--yx-gold);
    color: var(--yx-midnight);
}

.yx-btn-solid:hover {
    background: var(--yx-gold-light);
    color: var(--yx-midnight);
}

/* === 银河巨献 (Productions) === */
.yx-productions {
    background: var(--yx-dark-bg);
    padding: 80px 0;
}

.yx-poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.yx-poster-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--yx-transition), box-shadow var(--yx-transition);
    background: var(--yx-card-bg);
}

.yx-poster-card:hover {
    transform: scale(1.05);
    box-shadow: var(--yx-shadow-gold);
}

.yx-poster-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.yx-poster-info {
    padding: 15px;
}

.yx-poster-info h3 {
    font-size: 1rem;
    color: var(--yx-ivory);
    margin-bottom: 5px;
}

.yx-poster-info p {
    font-size: 0.85rem;
    color: var(--yx-text-muted);
}

.yx-poster-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--yx-red);
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 2px;
}

/* === 新闻聚焦 (News) === */
.yx-news {
    padding: 80px 30px;
    max-width: 1440px;
    margin: 0 auto;
}

.yx-timeline {
    position: relative;
    padding-left: 40px;
}

.yx-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--yx-gold), rgba(212,175,55,0.1));
}

.yx-timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding: 25px 30px;
    background: var(--yx-card-bg);
    border-left: 3px solid var(--yx-gold);
    transition: transform var(--yx-transition);
}

.yx-timeline-item:hover {
    transform: translateX(5px);
}

.yx-timeline-item::before {
    content: '';
    position: absolute;
    left: -49px;
    top: 30px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--yx-gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
}

.yx-timeline-date {
    font-size: 0.85rem;
    color: var(--yx-gold);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.yx-timeline-item h3 {
    font-size: 1.15rem;
    color: var(--yx-ivory);
    margin-bottom: 10px;
}

.yx-timeline-item p {
    color: rgba(245,245,241,0.7);
    font-size: 0.95rem;
}

/* === 幕后英雄 (Team) === */
.yx-team {
    background: var(--yx-dark-bg);
    padding: 80px 30px;
}

.yx-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.yx-team-card {
    text-align: center;
    padding: 30px 20px;
    transition: transform var(--yx-transition);
}

.yx-team-card:hover {
    transform: translateY(-5px);
}

.yx-team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--yx-gold);
    filter: grayscale(100%);
    transition: filter var(--yx-transition);
}

.yx-team-card:hover .yx-team-photo {
    filter: grayscale(0%);
}

.yx-team-card h3 {
    font-size: 1.2rem;
    color: var(--yx-ivory);
    margin-bottom: 5px;
}

.yx-team-role {
    font-size: 0.9rem;
    color: var(--yx-gold);
    margin-bottom: 12px;
}

.yx-team-card p {
    font-size: 0.9rem;
    color: rgba(245,245,241,0.7);
    line-height: 1.7;
}

/* === 星光璀璨 (Stars) === */
.yx-stars {
    padding: 80px 30px;
    max-width: 1440px;
    margin: 0 auto;
}

.yx-stars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

.yx-star-item {
    text-align: center;
    padding: 20px;
    background: var(--yx-card-bg);
    border-radius: 4px;
    transition: all var(--yx-transition);
}

.yx-star-item:hover {
    box-shadow: var(--yx-shadow-gold);
    transform: translateY(-3px);
}

.yx-star-icon {
    font-size: 2.5rem;
    color: var(--yx-gold);
    margin-bottom: 10px;
}

.yx-star-item h4 {
    color: var(--yx-ivory);
    font-size: 1rem;
    margin-bottom: 5px;
}

.yx-star-item p {
    font-size: 0.85rem;
    color: var(--yx-text-muted);
}

/* === 荣誉殿堂 (Fame) === */
.yx-fame {
    background: var(--yx-dark-bg);
    padding: 80px 30px;
}

.yx-fame-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.yx-fame-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(212,175,55,0.05);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 4px;
    transition: all var(--yx-transition);
}

.yx-fame-card:hover {
    border-color: var(--yx-gold);
    box-shadow: var(--yx-shadow-gold);
}

.yx-fame-icon {
    font-size: 2.5rem;
    color: var(--yx-gold);
    flex-shrink: 0;
}

.yx-fame-card h4 {
    color: var(--yx-ivory);
    font-size: 1rem;
    margin-bottom: 5px;
}

.yx-fame-card p {
    font-size: 0.85rem;
    color: var(--yx-text-muted);
}

/* === 投资合作 (Investment) === */
.yx-invest {
    padding: 80px 30px;
    position: relative;
}

.yx-invest-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: brightness(0.3);
}

.yx-invest-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.yx-invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.yx-invest-card {
    padding: 30px;
    background: rgba(34,34,34,0.9);
    border: 1px solid rgba(212,175,55,0.15);
    text-align: center;
    transition: all var(--yx-transition);
}

.yx-invest-card:hover {
    border-color: var(--yx-gold);
    transform: translateY(-5px);
}

.yx-invest-card h4 {
    color: var(--yx-gold);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.yx-invest-card p {
    font-size: 0.9rem;
    color: rgba(245,245,241,0.7);
    line-height: 1.8;
}

/* === IP宝库 (IP Treasury) === */
.yx-ip {
    background: var(--yx-dark-bg);
    padding: 80px 30px;
    position: relative;
    overflow: hidden;
}

.yx-ip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.yx-ip-card {
    padding: 30px;
    background: var(--yx-card-bg);
    border-left: 3px solid var(--yx-gold);
    transition: all var(--yx-transition);
}

.yx-ip-card:hover {
    background: rgba(212,175,55,0.05);
    transform: translateX(5px);
}

.yx-ip-card h4 {
    color: var(--yx-gold);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.yx-ip-tag {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(212,175,55,0.15);
    color: var(--yx-gold);
    font-size: 0.8rem;
    border-radius: 2px;
    margin-bottom: 12px;
}

.yx-ip-card p {
    font-size: 0.9rem;
    color: rgba(245,245,241,0.7);
    line-height: 1.8;
}

/* === 加入我们 (Join) === */
.yx-join {
    padding: 80px 30px;
    position: relative;
}

.yx-job-list {
    max-width: 900px;
    margin: 0 auto;
}

.yx-job-item {
    padding: 25px 30px;
    background: var(--yx-card-bg);
    margin-bottom: 15px;
    border-left: 3px solid transparent;
    transition: all var(--yx-transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.yx-job-item:hover {
    border-left-color: var(--yx-gold);
    background: rgba(212,175,55,0.05);
}

.yx-job-item h4 {
    color: var(--yx-ivory);
    font-size: 1.05rem;
}

.yx-job-meta {
    font-size: 0.85rem;
    color: var(--yx-text-muted);
    margin-top: 5px;
}

.yx-job-meta span {
    margin-right: 15px;
}

/* === 联系银河 (Contact) === */
.yx-contact {
    background: var(--yx-dark-bg);
    padding: 80px 30px;
}

.yx-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.yx-contact-info h3 {
    font-size: 1.3rem;
    color: var(--yx-gold);
    margin-bottom: 20px;
}

.yx-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.yx-contact-icon {
    color: var(--yx-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.yx-contact-item p {
    font-size: 0.95rem;
    color: rgba(245,245,241,0.8);
    line-height: 1.7;
}

.yx-contact-form {
    background: var(--yx-card-bg);
    padding: 35px;
    border: 1px solid rgba(212,175,55,0.15);
}

.yx-form-group {
    margin-bottom: 20px;
}

.yx-form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--yx-gold);
    margin-bottom: 8px;
}

.yx-form-group input,
.yx-form-group textarea,
.yx-form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(17,17,17,0.8);
    border: 1px solid rgba(212,175,55,0.2);
    color: var(--yx-ivory);
    font-family: var(--yx-font-body);
    font-size: 0.95rem;
    transition: border-color var(--yx-transition);
    outline: none;
}

.yx-form-group input:focus,
.yx-form-group textarea:focus,
.yx-form-group select:focus {
    border-color: var(--yx-gold);
}

.yx-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* === 页脚 === */
#yx-footer {
    background: #0D0D0D;
    padding: 60px 30px 30px;
    border-top: 1px solid rgba(212,175,55,0.1);
}

.yx-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto 40px;
}

.yx-footer-col h4 {
    font-size: 1.1rem;
    color: var(--yx-gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.yx-footer-col p {
    font-size: 0.9rem;
    color: rgba(245,245,241,0.6);
    line-height: 1.8;
}

.yx-footer-links {
    list-style: none;
}

.yx-footer-links li {
    margin-bottom: 10px;
}

.yx-footer-links li a {
    color: rgba(245,245,241,0.6);
    font-size: 0.9rem;
    transition: all var(--yx-transition);
}

.yx-footer-links li a:hover {
    color: var(--yx-gold);
    padding-left: 5px;
}

.yx-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.yx-social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yx-gold);
    font-size: 0.9rem;
    transition: all var(--yx-transition);
}

.yx-social-icons a:hover {
    background: var(--yx-gold);
    color: var(--yx-midnight);
}

.yx-footer-bottom {
    border-top: 1px solid rgba(212,175,55,0.1);
    padding-top: 25px;
    text-align: center;
    max-width: 1440px;
    margin: 0 auto;
}

.yx-footer-bottom p {
    font-size: 0.85rem;
    color: rgba(245,245,241,0.5);
    margin-bottom: 8px;
    line-height: 1.8;
}

.yx-footer-bottom a {
    color: rgba(245,245,241,0.5);
    transition: color var(--yx-transition);
}

.yx-footer-bottom a:hover {
    color: var(--yx-gold);
}

.yx-footer-honor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yx-gold);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* === 内页通用 === */
.yx-page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--yx-dark-bg);
}

.yx-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.3);
}

.yx-page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 20px;
}

.yx-page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.yx-page-hero-content p {
    font-size: 1.05rem;
    color: rgba(245,245,241,0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* 内页内容区 */
.yx-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.yx-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.yx-content-card {
    background: var(--yx-card-bg);
    overflow: hidden;
    transition: all var(--yx-transition);
    border: 1px solid rgba(212,175,55,0.08);
}

.yx-content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--yx-shadow-gold);
    border-color: rgba(212,175,55,0.2);
}

.yx-content-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.yx-content-card-body {
    padding: 20px;
}

.yx-content-card-body h3 {
    font-size: 1.1rem;
    color: var(--yx-ivory);
    margin-bottom: 10px;
}

.yx-content-card-body p {
    font-size: 0.9rem;
    color: rgba(245,245,241,0.7);
    line-height: 1.7;
}

/* === 试映厅 (Screening Room) === */
.yx-screening {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.yx-screening-selector {
    margin-bottom: 40px;
}

.yx-screening-selector label {
    display: block;
    font-size: 1rem;
    color: var(--yx-gold);
    margin-bottom: 10px;
}

.yx-screening-selector select {
    width: 100%;
    max-width: 500px;
    padding: 14px 18px;
    background: var(--yx-card-bg);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--yx-ivory);
    font-size: 1rem;
    font-family: var(--yx-font-body);
    cursor: pointer;
    outline: none;
}

.yx-screening-selector select:focus {
    border-color: var(--yx-gold);
}

.yx-seat-legend {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.yx-seat-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(245,245,241,0.7);
}

.yx-seat-legend-box {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.yx-seat-legend-box.yx-available {
    background: #3A3A3A;
    border: 1px solid rgba(212,175,55,0.3);
}

.yx-seat-legend-box.yx-selected {
    background: var(--yx-gold);
}

.yx-seat-legend-box.yx-sold {
    background: var(--yx-red);
    opacity: 0.6;
}

.yx-seat-legend-box.yx-locked {
    background: #555;
}

.yx-screen-label {
    text-align: center;
    padding: 12px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
    color: var(--yx-gold);
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.yx-seat-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.yx-seat-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.yx-seat-row-label {
    width: 25px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--yx-text-muted);
}

.yx-seat {
    width: 32px;
    height: 28px;
    border-radius: 6px 6px 2px 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 0;
}

.yx-seat.yx-available {
    background: #3A3A3A;
    border: 1px solid rgba(212,175,55,0.2);
}

.yx-seat.yx-available:hover {
    background: rgba(212,175,55,0.3);
    border-color: var(--yx-gold);
}

.yx-seat.yx-selected {
    background: var(--yx-gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
}

.yx-seat.yx-sold {
    background: var(--yx-red);
    opacity: 0.5;
    cursor: not-allowed;
}

.yx-seat.yx-locked {
    background: #555;
    cursor: not-allowed;
}

.yx-booking-panel {
    background: var(--yx-card-bg);
    padding: 30px;
    border: 1px solid rgba(212,175,55,0.15);
    margin-top: 30px;
}

.yx-booking-panel h3 {
    font-size: 1.2rem;
    color: var(--yx-gold);
    margin-bottom: 20px;
}

.yx-selected-seats {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: rgba(245,245,241,0.8);
}

.yx-booking-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(212,175,55,0.05);
    border: 1px solid var(--yx-gold);
}

.yx-booking-success h3 {
    color: var(--yx-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.yx-booking-success p {
    color: rgba(245,245,241,0.8);
}

/* === APP下载页 === */
.yx-app-page {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.yx-app-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(100%) brightness(0.3);
}

.yx-app-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
    align-items: center;
}

.yx-app-mockup img {
    max-width: 350px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.yx-app-info h2 {
    font-size: 2rem;
    color: var(--yx-gold);
    margin-bottom: 15px;
}

.yx-app-info p {
    font-size: 1.05rem;
    color: rgba(245,245,241,0.8);
    line-height: 1.9;
    margin-bottom: 30px;
}

.yx-app-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.yx-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid var(--yx-gold);
    color: var(--yx-gold);
    font-size: 0.95rem;
    transition: all var(--yx-transition);
}

.yx-app-badge:hover {
    background: rgba(212,175,55,0.1);
    box-shadow: var(--yx-shadow-gold);
}

/* === 聚光灯动画 === */
@keyframes yx-spotlight {
    0% { transform: translateX(-100%) rotate(15deg); }
    100% { transform: translateX(200%) rotate(15deg); }
}

.yx-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 30%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.05), transparent);
    transform: rotate(15deg);
    animation: yx-spotlight 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 5;
}

/* === 响应式 === */

/* 1440px */
@media (max-width: 1440px) {
    .yx-section {
        padding: 70px 25px;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .yx-hero-content h1 {
        font-size: 2.8rem;
    }

    .yx-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .yx-contact-grid {
        grid-template-columns: 1fr;
    }

    .yx-app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .yx-app-mockup img {
        max-width: 280px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .yx-nav-menu {
        display: none;
    }

    .yx-hamburger {
        display: flex;
    }

    .yx-mobile-overlay {
        display: block;
        pointer-events: none;
    }

    .yx-mobile-overlay.yx-show {
        pointer-events: auto;
    }

    .yx-hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .yx-hero-slogan {
        font-size: 1.2rem;
    }

    .yx-section-title {
        font-size: 1.8rem;
    }

    .yx-poster-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .yx-footer-grid {
        grid-template-columns: 1fr;
    }

    .yx-page-hero-content h1 {
        font-size: 2rem;
    }

    .yx-content-grid {
        grid-template-columns: 1fr;
    }

    .yx-seat {
        width: 26px;
        height: 22px;
    }
}

/* 360px */
@media (max-width: 400px) {
    .yx-hero-content h1 {
        font-size: 1.8rem;
    }

    .yx-section {
        padding: 50px 15px;
    }

    .yx-section-title {
        font-size: 1.5rem;
    }

    .yx-poster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .yx-team-grid {
        grid-template-columns: 1fr;
    }

    .yx-fame-grid {
        grid-template-columns: 1fr;
    }

    .yx-seat {
        width: 22px;
        height: 18px;
    }

    .yx-seat-row {
        gap: 3px;
    }
}
