/* ========================================
   微电影工坊 - 主样式表
   CSS前缀: short-
   设计风格: 独立工作室Loft风
   ======================================== */

/* === Google Fonts 本地化替代 === */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

/* === CSS Variables === */
:root {
    --short-primary: #2C2C2C;
    --short-secondary: #D9A441;
    --short-accent: #A63F3F;
    --short-text: #F2F2F2;
    --short-link: #D9A441;
    --short-bg-dark: #1A1A1A;
    --short-bg-card: #333333;
    --short-border: #444444;
    --short-font-heading: 'Josefin Sans', sans-serif;
    --short-font-body: 'Noto Sans SC', sans-serif;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--short-font-body);
    background-color: var(--short-bg-dark);
    color: var(--short-text);
    line-height: 1.8;
    overflow-x: hidden;
}

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

a {
    color: var(--short-link);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: #f0c060;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--short-font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--short-text);
}

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

/* === 导航栏 === */
#short-header {
    width: 100%;
    background: rgba(44, 44, 44, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(217, 164, 65, 0.15);
}

.short-nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 72px;
}

.short-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.short-logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.short-logo-icon svg {
    width: 100%;
    height: 100%;
}

.sp-logo-text {
    font-family: var(--short-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--short-secondary);
    letter-spacing: 1px;
}

.short-nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.short-nav-links li a {
    display: block;
    padding: 0.5rem 1.15rem;
    font-family: var(--short-font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--short-secondary);
    position: relative;
    letter-spacing: 0.5px;
}

.short-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--short-secondary);
    transition: width 0.3s ease;
}

.short-nav-links li a:hover::after,
.short-nav-links li a.short-active::after {
    width: 70%;
}

/* 汉堡菜单 */
.short-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.short-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--short-secondary);
    transition: all 0.3s ease;
}

.short-hamburger.short-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.short-hamburger.short-active span:nth-child(2) {
    opacity: 0;
}

.short-hamburger.short-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* 移动端菜单 */
.short-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.98), rgba(26, 26, 26, 0.98));
    z-index: 1050;
    transition: left 0.4s ease;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.short-mobile-menu.short-open {
    left: 0;
}

.short-mobile-menu a {
    font-family: var(--short-font-heading);
    font-size: 1.5rem;
    color: var(--short-secondary);
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(217, 164, 65, 0.2);
}

/* === Hero / 聚光灯计划 === */
.short-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.short-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.7) 100%);
    z-index: 1;
}

.short-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: short-fadeInUp 1.2s ease-out;
}

.short-hero-content h1 {
    font-size: 3.5rem;
    color: var(--short-secondary);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.short-hero-tagline {
    font-size: 1.25rem;
    color: var(--short-text);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.short-hero-slogan {
    font-family: var(--short-font-heading);
    font-size: 1.6rem;
    color: var(--short-secondary);
    font-style: italic;
    margin-bottom: 2.5rem;
}

/* === 通用按钮 === */
.short-btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    font-family: var(--short-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--short-text);
    background: var(--short-accent);
    border: 2px solid var(--short-accent);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.short-btn:hover {
    background: transparent;
    border-color: var(--short-secondary);
    color: var(--short-secondary);
    box-shadow: 0 0 20px rgba(217, 164, 65, 0.3);
}

.short-btn-gold {
    background: var(--short-secondary);
    border-color: var(--short-secondary);
    color: var(--short-primary);
}

.short-btn-gold:hover {
    background: transparent;
    color: var(--short-secondary);
}

/* === 通用Section === */
.short-section {
    padding: 5rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.short-section-title {
    font-family: var(--short-font-heading);
    font-size: 2rem;
    color: var(--short-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.short-section-title::before {
    content: '>';
    margin-right: 0.75rem;
    color: var(--short-accent);
    font-weight: 700;
}

.short-section-subtitle {
    font-size: 1rem;
    color: rgba(242, 242, 242, 0.6);
    margin-bottom: 3rem;
    max-width: 700px;
}

.short-section-divider {
    width: 60px;
    height: 3px;
    background: var(--short-secondary);
    margin: 1rem 0 2rem;
}

/* === 本周佳作 - 横向滚动卡片 === */
.short-weekly-best {
    padding: 5rem 0;
    background: var(--short-primary);
}

.short-weekly-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.short-scroll-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.short-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.short-scroll-container::-webkit-scrollbar-track {
    background: var(--short-bg-dark);
    border-radius: 3px;
}

.short-scroll-container::-webkit-scrollbar-thumb {
    background: var(--short-secondary);
    border-radius: 3px;
}

/* === 胶片风格卡片 === */
.short-film-card {
    flex: 0 0 280px;
    background: var(--short-bg-card);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--short-border);
}

.short-film-card::before,
.short-film-card::after {
    content: '';
    position: absolute;
    top: 0;
    width: 12px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 8px,
        rgba(217, 164, 65, 0.15) 8px,
        rgba(217, 164, 65, 0.15) 12px
    );
    z-index: 2;
}

.short-film-card::before { left: 0; }
.short-film-card::after { right: 0; }

.short-film-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(217, 164, 65, 0.15);
}

.short-card-badge {
    position: absolute;
    top: 12px;
    right: 24px;
    background: var(--short-secondary);
    color: var(--short-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    z-index: 3;
    font-family: var(--short-font-body);
}

.short-card-poster {
    width: 100%;
    height: 360px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.short-card-poster.short-loaded {
    opacity: 1;
}

.short-card-info {
    padding: 1.25rem 1.5rem;
}

.short-card-title {
    font-family: var(--short-font-heading);
    font-size: 1.1rem;
    color: var(--short-text);
    margin-bottom: 0.5rem;
}

.short-card-director {
    font-size: 0.85rem;
    color: rgba(242, 242, 242, 0.5);
    margin-bottom: 0.5rem;
}

.short-card-desc {
    font-size: 0.85rem;
    color: rgba(242, 242, 242, 0.7);
    line-height: 1.6;
}

/* === 创作人故事 === */
.short-creator-story {
    background: var(--short-bg-dark);
    padding: 5rem 2rem;
}

.short-story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.short-story-image {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--short-border);
}

.short-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.short-story-image img.short-loaded {
    opacity: 1;
}

.short-story-text blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--short-secondary);
    border-left: 3px solid var(--short-secondary);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.short-story-text p {
    color: rgba(242, 242, 242, 0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* === 幕后直击 - 瀑布流 === */
.short-bts {
    background: var(--short-primary);
    padding: 5rem 2rem;
}

.short-masonry {
    max-width: 1200px;
    margin: 0 auto;
    columns: 3;
    column-gap: 1.5rem;
}

.short-masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--short-border);
    transition: transform 0.3s ease;
}

.short-masonry-item:hover {
    transform: scale(1.02);
}

.short-masonry-item img {
    width: 100%;
    display: block;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.short-masonry-item img.short-loaded {
    opacity: 1;
}

/* === 器材评测 === */
.short-gear-review {
    background: var(--short-bg-dark);
    padding: 5rem 2rem;
}

.short-gear-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.short-gear-image {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--short-border);
}

.short-gear-image img {
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.short-gear-image img.short-loaded {
    opacity: 1;
}

.short-gear-text h3 {
    font-family: var(--short-font-heading);
    font-size: 1.4rem;
    color: var(--short-secondary);
    margin-bottom: 1rem;
}

.short-gear-text p {
    color: rgba(242, 242, 242, 0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.short-gear-specs {
    list-style: none;
    margin-top: 1rem;
}

.short-gear-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--short-border);
    font-size: 0.9rem;
    color: rgba(242, 242, 242, 0.7);
}

.short-gear-specs li strong {
    color: var(--short-secondary);
    margin-right: 0.5rem;
}

/* === 灵感资料库 === */
.short-inspiration {
    background: var(--short-primary);
    padding: 5rem 2rem;
}

.short-inspire-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.short-inspire-card {
    background: var(--short-bg-card);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--short-border);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.short-inspire-card:hover {
    border-color: var(--short-secondary);
    box-shadow: 0 0 20px rgba(217, 164, 65, 0.1);
}

.short-inspire-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--short-secondary);
}

.short-inspire-card h3 {
    font-family: var(--short-font-heading);
    font-size: 1.15rem;
    color: var(--short-text);
    margin-bottom: 0.75rem;
}

.short-inspire-card p {
    font-size: 0.9rem;
    color: rgba(242, 242, 242, 0.6);
    line-height: 1.6;
}

/* === 剧本交易角 === */
.short-script-corner {
    background: var(--short-bg-dark);
    padding: 5rem 2rem;
}

.short-script-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.short-script-image {
    border-radius: 8px;
    overflow: hidden;
}

.short-script-image img {
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.short-script-image img.short-loaded {
    opacity: 1;
}

.short-script-list {
    list-style: none;
}

.short-script-item {
    background: var(--short-bg-card);
    border: 1px solid var(--short-border);
    border-radius: 6px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.short-script-item:hover {
    border-color: var(--short-secondary);
}

.short-script-item h4 {
    font-family: var(--short-font-heading);
    color: var(--short-text);
    margin-bottom: 0.5rem;
}

.short-script-item .short-script-meta {
    font-size: 0.8rem;
    color: var(--short-secondary);
    margin-bottom: 0.5rem;
}

.short-script-item p {
    font-size: 0.85rem;
    color: rgba(242, 242, 242, 0.6);
    line-height: 1.6;
}

/* === 线上放映会 === */
.short-screening {
    background: var(--short-primary);
    padding: 5rem 2rem;
    position: relative;
}

.short-screening-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.short-screening-image {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--short-border);
}

.short-screening-image img {
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.short-screening-image img.short-loaded {
    opacity: 1;
}

.short-screening-info h3 {
    font-family: var(--short-font-heading);
    font-size: 1.4rem;
    color: var(--short-secondary);
    margin-bottom: 1rem;
}

.short-screening-info p {
    color: rgba(242, 242, 242, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.short-countdown {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.short-countdown-item {
    text-align: center;
    background: var(--short-bg-card);
    padding: 1rem 1.25rem;
    border-radius: 6px;
    border: 1px solid var(--short-border);
    min-width: 70px;
}

.short-countdown-num {
    font-family: var(--short-font-heading);
    font-size: 1.8rem;
    color: var(--short-secondary);
    font-weight: 700;
}

.short-countdown-label {
    font-size: 0.75rem;
    color: rgba(242, 242, 242, 0.5);
    margin-top: 0.25rem;
}

/* === 行业资讯 === */
.short-news {
    background: var(--short-bg-dark);
    padding: 5rem 2rem;
}

.short-news-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.short-news-card {
    background: var(--short-bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--short-border);
    transition: transform 0.3s ease;
}

.short-news-card:hover {
    transform: translateY(-5px);
}

.short-news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.short-news-card img.short-loaded {
    opacity: 1;
}

.short-news-body {
    padding: 1.25rem;
}

.short-news-date {
    font-size: 0.8rem;
    color: var(--short-secondary);
    margin-bottom: 0.5rem;
}

.short-news-body h3 {
    font-family: var(--short-font-heading);
    font-size: 1.05rem;
    color: var(--short-text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.short-news-body p {
    font-size: 0.85rem;
    color: rgba(242, 242, 242, 0.6);
    line-height: 1.6;
}

/* === 加入我们 CTA === */
.short-cta {
    background: linear-gradient(135deg, var(--short-accent), #8B2E2E);
    padding: 5rem 2rem;
    text-align: center;
}

.short-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.short-cta h2 {
    font-family: var(--short-font-heading);
    font-size: 2.5rem;
    color: var(--short-text);
    margin-bottom: 1.5rem;
}

.short-cta p {
    font-size: 1.1rem;
    color: rgba(242, 242, 242, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.short-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === 页脚 === */
#short-footer {
    background: var(--short-primary);
    border-top: 1px solid var(--short-border);
}

.short-footer-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
}

.short-footer-col h4 {
    font-family: var(--short-font-heading);
    font-size: 1.1rem;
    color: var(--short-secondary);
    margin-bottom: 1.5rem;
    position: relative;
}

.short-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--short-secondary);
}

.short-footer-col p {
    font-size: 0.9rem;
    color: rgba(242, 242, 242, 0.6);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

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

.short-footer-links li {
    margin-bottom: 0.75rem;
}

.short-footer-links li a {
    font-size: 0.9rem;
    color: rgba(242, 242, 242, 0.6);
    transition: color 0.3s ease;
}

.short-footer-links li a:hover {
    color: var(--short-secondary);
}

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

.short-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--short-border);
    border-radius: 50%;
    color: rgba(242, 242, 242, 0.6);
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.short-footer-social a:hover {
    border-color: var(--short-secondary);
    color: var(--short-secondary);
}

.short-footer-bottom {
    border-top: 1px solid var(--short-border);
    padding: 1.5rem 2rem;
    text-align: center;
    max-width: 1440px;
    margin: 0 auto;
}

.short-footer-bottom p {
    font-size: 0.8rem;
    color: rgba(242, 242, 242, 0.4);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.short-footer-bottom a {
    color: rgba(242, 242, 242, 0.5);
    font-size: 0.8rem;
}

.short-footer-bottom a:hover {
    color: var(--short-secondary);
}

.short-honor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(217, 164, 65, 0.3);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--short-secondary);
}

/* === 栏目页通用 Banner === */
.short-page-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.short-page-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.short-page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.short-page-banner h1 {
    font-size: 2.8rem;
    color: var(--short-secondary);
    margin-bottom: 1rem;
}

.short-page-banner p {
    font-size: 1.1rem;
    color: rgba(242, 242, 242, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* === 栏目页内容区 === */
.short-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.short-page-content h2 {
    font-family: var(--short-font-heading);
    font-size: 1.6rem;
    color: var(--short-secondary);
    margin-bottom: 1.5rem;
}

.short-page-content p {
    color: rgba(242, 242, 242, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.short-page-content img {
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid var(--short-border);
}

/* === 视频网格 === */
.short-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.short-video-card {
    background: var(--short-bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--short-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.short-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(217, 164, 65, 0.1);
}

.short-video-thumb {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.short-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    border: none;
}

.short-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(217, 164, 65, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.short-play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 16px solid var(--short-primary);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

.short-video-info {
    padding: 1.25rem;
}

.short-video-info h3 {
    font-family: var(--short-font-heading);
    font-size: 1rem;
    color: var(--short-text);
    margin-bottom: 0.5rem;
}

.short-video-meta {
    font-size: 0.8rem;
    color: rgba(242, 242, 242, 0.5);
    margin-bottom: 0.5rem;
}

.short-video-info p {
    font-size: 0.85rem;
    color: rgba(242, 242, 242, 0.6);
    line-height: 1.5;
    margin-bottom: 0;
}

/* === 参赛厅 === */
.short-competition {
    background: var(--short-bg-dark);
}

.short-comp-countdown {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0 3rem;
}

.short-form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.short-form-section h2 {
    font-family: var(--short-font-heading);
    font-size: 1.6rem;
    color: var(--short-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

.short-form-group {
    margin-bottom: 1.5rem;
}

.short-form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--short-text);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.short-form-group input,
.short-form-group textarea,
.short-form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--short-bg-card);
    border: 1px solid var(--short-border);
    border-radius: 6px;
    color: var(--short-text);
    font-family: var(--short-font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.short-form-group input:focus,
.short-form-group textarea:focus {
    outline: none;
    border-color: var(--short-secondary);
}

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

.short-upload-area {
    border: 2px dashed var(--short-border);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.short-upload-area:hover {
    border-color: var(--short-secondary);
    background: rgba(217, 164, 65, 0.05);
}

.short-upload-area p {
    color: rgba(242, 242, 242, 0.6);
    margin-bottom: 0.5rem;
}

.short-upload-area .short-upload-hint {
    font-size: 0.8rem;
    color: rgba(242, 242, 242, 0.4);
}

.short-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--short-bg-card);
    border-radius: 3px;
    margin-top: 1rem;
    overflow: hidden;
    display: none;
}

.short-progress-fill {
    height: 100%;
    background: var(--short-secondary);
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
}

.short-submit-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
}

.short-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === 参赛记录表格 === */
.short-records-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.short-records-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.short-records-table th,
.short-records-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--short-border);
    font-size: 0.9rem;
}

.short-records-table th {
    color: var(--short-secondary);
    font-family: var(--short-font-heading);
    font-weight: 600;
    background: var(--short-bg-card);
}

.short-records-table td {
    color: rgba(242, 242, 242, 0.7);
}

.short-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.short-status-pending {
    background: rgba(217, 164, 65, 0.15);
    color: var(--short-secondary);
}

.short-status-nominated {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
}

.short-status-rejected {
    background: rgba(166, 63, 63, 0.15);
    color: var(--short-accent);
}

.short-status-winner {
    background: rgba(217, 164, 65, 0.25);
    color: var(--short-secondary);
    font-weight: 700;
}

/* === APP下载页 === */
.short-app-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.short-app-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 2rem;
}

.short-app-content h1 {
    font-size: 3rem;
    color: var(--short-secondary);
    margin-bottom: 1.5rem;
}

.short-app-content p {
    font-size: 1.1rem;
    color: rgba(242, 242, 242, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.short-app-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.short-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    background: var(--short-bg-card);
    border: 2px solid var(--short-secondary);
    border-radius: 8px;
    color: var(--short-text);
    font-family: var(--short-font-heading);
    transition: all 0.3s ease;
}

.short-app-btn:hover {
    background: var(--short-secondary);
    color: var(--short-primary);
}

.short-app-btn-icon {
    font-size: 1.5rem;
}

.short-app-btn-text {
    text-align: left;
}

.short-app-btn-text small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
}

.short-app-btn-text strong {
    font-size: 1rem;
}

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

.short-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.short-animate.short-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === 文章内容页 === */
.short-article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.short-article-content h2 {
    font-size: 1.5rem;
    color: var(--short-secondary);
    margin: 2rem 0 1rem;
}

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

.short-article-content p {
    color: rgba(242, 242, 242, 0.8);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.short-article-content img {
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid var(--short-border);
}

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

/* 1440px */
@media (max-width: 1440px) {
    .short-hero-content h1 {
        font-size: 3rem;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .short-story-grid,
    .short-gear-grid,
    .short-script-grid,
    .short-screening-content {
        grid-template-columns: 1fr;
    }

    .short-masonry {
        columns: 2;
    }

    .short-inspire-grid,
    .short-news-grid,
    .short-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .short-hero-content h1 {
        font-size: 2.5rem;
    }
}

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

    .short-hamburger {
        display: flex;
    }

    .short-mobile-menu {
        display: flex;
    }

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

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

    .short-section {
        padding: 3rem 1.5rem;
    }

    .short-masonry {
        columns: 1;
    }

    .short-inspire-grid,
    .short-news-grid,
    .short-video-grid {
        grid-template-columns: 1fr;
    }

    .short-footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .short-page-banner h1 {
        font-size: 2rem;
    }

    .short-cta h2 {
        font-size: 1.8rem;
    }

    .short-app-content h1 {
        font-size: 2rem;
    }

    .short-comp-countdown {
        flex-wrap: wrap;
    }

    .short-records-table {
        font-size: 0.8rem;
    }

    .short-records-table th,
    .short-records-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* 360px */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }

    .short-hero-content h1 {
        font-size: 1.6rem;
    }

    .short-nav-container {
        padding: 0 1rem;
    }

    .short-section {
        padding: 2.5rem 1rem;
    }

    .short-film-card {
        flex: 0 0 240px;
    }

    .short-countdown {
        gap: 0.5rem;
    }

    .short-countdown-item {
        padding: 0.75rem;
        min-width: 55px;
    }

    .short-countdown-num {
        font-size: 1.4rem;
    }
}
