/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 神话战争主题配色 - 金色、红色、黑色 */
    --primary-gradient: linear-gradient(135deg, #d4af37 0%, #ffb347 100%);
    --secondary-gradient: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    --accent-gradient: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
    --dark-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --war-gradient: linear-gradient(135deg, #2c1810 0%, #8b0000 50%, #0a0a0a 100%);
    
    /* 文字颜色 */
    --text-primary: #f5deb3;
    --text-secondary: rgba(245, 222, 179, 0.9);
    --text-muted: rgba(245, 222, 179, 0.7);
    --text-gold: #d4af37;
    --text-fire: #ff4500;
    
    /* 背景色 */
    --bg-primary: #0a0a0a;
    --bg-secondary: rgba(44, 24, 16, 0.9);
    --bg-card: rgba(139, 0, 0, 0.1);
    --bg-glass: rgba(212, 175, 55, 0.05);
    --bg-war: rgba(44, 24, 16, 0.8);
    
    /* 阴影和边框 */
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.3);
    --shadow-fire: 0 8px 32px rgba(255, 69, 0, 0.3);
    --shadow-heavy: 0 16px 64px rgba(0, 0, 0, 0.6);
    --border-radius: 16px;
    --border-gold: rgba(212, 175, 55, 0.3);
    --border-fire: rgba(255, 69, 0, 0.3);
    
    /* 动画时长 */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(90deg, rgba(44, 24, 16, 0.95) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(44, 24, 16, 0.95) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--border-gold);
    transition: var(--transition-smooth);
    box-shadow: 
        0 4px 40px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37 0%, #ffb347 50%, #ff4500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(255, 69, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.3),
        1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--text-primary);
    text-shadow: 
        0 0 15px rgba(212, 175, 55, 0.8),
        0 0 25px rgba(255, 69, 0, 0.6),
        1px 1px 3px rgba(0, 0, 0, 0.9);
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* 首页全屏视频英雄区域 */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px; /* 为导航栏留出空间 */
}

/* 视频背景容器 */
.hero-video-background {
    position: absolute;
    top: 70px; /* 向下偏移避开导航栏 */
    left: 0;
    width: 100%;
    height: calc(100% - 70px); /* 调整高度 */
    z-index: 1;
}

/* 视频容器优化 */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    will-change: transform; /* 优化动画性能 */
}

/* 视频元素优化 */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    will-change: opacity; /* 优化动画性能 */
}

.hero-video.loaded {
    opacity: 1;
}

/* 视频遮罩层 */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(44, 24, 16, 0.3) 25%,
        rgba(139, 0, 0, 0.2) 50%,
        rgba(44, 24, 16, 0.3) 75%,
        rgba(10, 10, 10, 0.4) 100%
    );
    z-index: 2;
}

/* 火星子动效容器 */
.sparks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

/* 火星子动效 */
.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ff6b35 0%, #ff4500 40%, transparent 70%);
    border-radius: 50%;
    box-shadow: 
        0 0 8px #ff4500,
        0 0 16px #ff6b35,
        0 0 24px rgba(255, 69, 0, 0.5);
    animation: sparkFloat 8s infinite linear;
}

.spark:nth-child(1) { 
    left: 10%; 
    animation-delay: 0s; 
    animation-duration: 12s;
}
.spark:nth-child(2) { 
    left: 20%; 
    animation-delay: -2s; 
    animation-duration: 15s;
}
.spark:nth-child(3) { 
    left: 30%; 
    animation-delay: -4s; 
    animation-duration: 10s;
}
.spark:nth-child(4) { 
    left: 40%; 
    animation-delay: -1s; 
    animation-duration: 18s;
}
.spark:nth-child(5) { 
    left: 50%; 
    animation-delay: -3s; 
    animation-duration: 14s;
}
.spark:nth-child(6) { 
    left: 60%; 
    animation-delay: -5s; 
    animation-duration: 11s;
}
.spark:nth-child(7) { 
    left: 70%; 
    animation-delay: -1.5s; 
    animation-duration: 16s;
}
.spark:nth-child(8) { 
    left: 80%; 
    animation-delay: -2.5s; 
    animation-duration: 13s;
}
.spark:nth-child(9) { 
    left: 90%; 
    animation-delay: -4.5s; 
    animation-duration: 17s;
}
.spark:nth-child(10) { 
    left: 15%; 
    animation-delay: -6s; 
    animation-duration: 19s;
}
.spark:nth-child(11) { 
    left: 25%; 
    animation-delay: -1.2s; 
    animation-duration: 9s;
}
.spark:nth-child(12) { 
    left: 35%; 
    animation-delay: -3.8s; 
    animation-duration: 21s;
}
.spark:nth-child(13) { 
    left: 45%; 
    animation-delay: -0.5s; 
    animation-duration: 8s;
}
.spark:nth-child(14) { 
    left: 55%; 
    animation-delay: -7s; 
    animation-duration: 22s;
}
.spark:nth-child(15) { 
    left: 65%; 
    animation-delay: -2.8s; 
    animation-duration: 7s;
}
.spark:nth-child(16) { 
    left: 75%; 
    animation-delay: -4.2s; 
    animation-duration: 20s;
}
.spark:nth-child(17) { 
    left: 85%; 
    animation-delay: -6.5s; 
    animation-duration: 12s;
}
.spark:nth-child(18) { 
    left: 95%; 
    animation-delay: -1.8s; 
    animation-duration: 15s;
}
.spark:nth-child(19) { 
    left: 5%; 
    animation-delay: -5.2s; 
    animation-duration: 23s;
}
.spark:nth-child(20) { 
    left: 12%; 
    animation-delay: -3.5s; 
    animation-duration: 6s;
}

@keyframes sparkFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
        filter: blur(2px);
    }
    10% {
        opacity: 1;
    }
    20% {
        transform: translateY(80vh) translateX(20px) rotate(45deg);
        filter: blur(0px);
    }
    40% {
        transform: translateY(60vh) translateX(-15px) rotate(90deg);
        opacity: 0.8;
    }
    60% {
        transform: translateY(40vh) translateX(30px) rotate(180deg);
        opacity: 0.6;
        filter: blur(1px);
    }
    80% {
        transform: translateY(20vh) translateX(-10px) rotate(270deg);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-10vh) translateX(0) rotate(360deg);
        opacity: 0;
        filter: blur(3px);
    }
}

/* 英雄内容区域 */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-content {
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

/* 英雄区域徽章 */
.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 69, 0, 0.2) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 30px;
    margin-bottom: 20px;
    animation: badgeGlow 3s ease-in-out infinite;
}

.hero-badge span {
    color: var(--text-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        border-color: var(--border-gold);
    }
    50% { 
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
        border-color: rgba(212, 175, 55, 0.8);
    }
}

@keyframes characterFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-15px) rotate(1deg) scale(1.02); 
    }
    50% { 
        transform: translateY(-25px) rotate(-1deg) scale(1.05); 
    }
    75% { 
        transform: translateY(-10px) rotate(0.5deg) scale(1.02); 
    }
}

@keyframes warGlow {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1); 
        filter: blur(25px) hue-rotate(0deg);
    }
    33% { 
        opacity: 0.9; 
        transform: scale(1.1); 
        filter: blur(20px) hue-rotate(15deg);
    }
    66% { 
        opacity: 0.8; 
        transform: scale(1.05); 
        filter: blur(30px) hue-rotate(-10deg);
    }
}

/* 英雄区域副标题 */
.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* 英雄区域描述 */
.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

/* 感谢信息 */
.hero-thanks {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-style: italic;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--text-gold) 30%, #fff 70%, var(--text-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: epicTitle 4s ease-in-out infinite;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(255, 69, 0, 0.6),
        0 0 60px rgba(139, 0, 0, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8),
        -2px -2px 4px rgba(0, 0, 0, 0.8),
        2px -2px 4px rgba(0, 0, 0, 0.8),
        -2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    position: relative;
    filter: brightness(1.2) contrast(1.1);
}

.hero-title::before {
    content: '众神之战';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes epicTitle {
    0%, 100% { 
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8)) 
                drop-shadow(0 0 30px rgba(255, 69, 0, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 1)) 
                drop-shadow(0 0 50px rgba(255, 69, 0, 0.8))
                drop-shadow(0 0 75px rgba(139, 0, 0, 0.6));
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 400;
}

/* 统计数据样式 */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
    padding: 30px 0;
    position: relative;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: var(--primary-gradient);
    opacity: 0.5;
}

.hero-stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: var(--primary-gradient);
    opacity: 0.5;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: var(--text-gold);
    margin-bottom: 8px;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(255, 69, 0, 0.5);
    animation: statGlow 2s ease-in-out infinite;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@keyframes statGlow {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 
            0 0 10px rgba(212, 175, 55, 0.8),
            0 0 20px rgba(255, 69, 0, 0.5);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 
            0 0 15px rgba(212, 175, 55, 1),
            0 0 30px rgba(255, 69, 0, 0.8);
    }
}

/* 行动按钮 */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #000;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-gold);
    border: 2px solid var(--border-gold);
}

.btn-secondary:hover {
    background: var(--bg-glass);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-secondary);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* 通用区域样式 */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 项目介绍区域 */
.about-section {
    padding: 120px 0 100px 0;
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.about-card {
    background: linear-gradient(145deg, rgba(44, 24, 16, 0.8) 0%, rgba(139, 0, 0, 0.6) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-smooth);
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--border-gold);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
}

.about-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 创作团队区域 */
.creators-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(44, 24, 16, 0.8) 50%, rgba(10, 10, 10, 0.9) 100%);
    position: relative;
}

.creators-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.creator-card {
    background: linear-gradient(145deg, rgba(44, 24, 16, 0.8) 0%, rgba(139, 0, 0, 0.6) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(212, 175, 55, 0.2);
}

.creator-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(212, 175, 55, 0.5),
        0 0 60px rgba(255, 69, 0, 0.3);
    border-color: var(--text-fire);
}

.creator-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    overflow: hidden;
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.creator-role {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* 播放平台区域 */
.platforms-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(44, 24, 16, 0.8) 50%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    position: relative;
}

.platforms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 60% 40%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* 播放平台容器 */
.platforms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 平台项目 */
.platform-item {
    background: linear-gradient(145deg, rgba(44, 24, 16, 0.8) 0%, rgba(139, 0, 0, 0.6) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.platform-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.6);
}

/* 平台图标容器 */
.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.platform-icon:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

/* 平台图标 */
.platform-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.platform-icon img:hover {
    filter: brightness(1.1);
}

/* 平台信息区域 */
.platform-info {
    flex: 1;
}

.platform-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.platform-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.4;
}

/* 平台按钮 */
.platform-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* 奖项区域 */
.awards-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(44, 24, 16, 0.8) 50%, rgba(10, 10, 10, 0.9) 100%);
    position: relative;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.award-card {
    background: linear-gradient(145deg, rgba(44, 24, 16, 0.8) 0%, rgba(139, 0, 0, 0.6) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.award-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(212, 175, 55, 0.6),
        0 0 80px rgba(255, 69, 0, 0.4);
    border-color: var(--text-fire);
}

.award-icon {
    font-size: 64px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px rgba(245, 87, 108, 0.5));
}

.award-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.award-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.award-year {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--secondary-gradient);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* 联系我们区域 */
.contact-section {
    padding: 120px 0;
    background: var(--dark-gradient);
    text-align: center;
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-light);
}

.contact-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

/* 页脚 */
.footer {
    background: linear-gradient(180deg, rgba(44, 24, 16, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 60px 0 30px;
    border-top: 2px solid var(--border-gold);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* 模态框 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, rgba(44, 24, 16, 0.95) 0%, rgba(139, 0, 0, 0.9) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid var(--border-gold);
    border-radius: 20px;
    padding: 0;
    max-width: 420px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -70%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-gold);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-gold);
}

.close:hover {
    color: #fff;
    background: var(--primary-gradient);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* 游戏风格的竖向卡片布局 */
.creator-detail {
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
    min-height: 450px;
    text-align: center;
    position: relative;
}

/* 头像区域 */
.creator-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
    margin: 0 auto 20px;
    border: 3px solid var(--border-gold);
    box-shadow: 
        0 0 25px rgba(212, 175, 55, 0.6),
        inset 0 0 15px rgba(255, 69, 0, 0.3);
    position: relative;
}

.creator-avatar-large::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: conic-gradient(from 0deg, transparent, var(--border-gold), transparent, var(--border-fire), transparent);
    border-radius: 50%;
    z-index: -1;
    animation: avatarRotate 6s linear infinite;
}

@keyframes avatarRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.creator-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* 信息区域 */
.creator-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.creator-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-gold);
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(255, 69, 0, 0.4);
    margin-bottom: 5px;
}

.creator-role-badge {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.8) 0%, rgba(139, 0, 0, 0.8) 100%);
    border: 1px solid var(--border-fire);
    border-radius: 15px;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* 擅长技能 */
.creator-specialties {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-gold);
    margin-bottom: 15px;
}

.creator-specialties h4 {
    font-size: 14px;
    color: var(--text-gold);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.specialty-tag {
    padding: 3px 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 69, 0, 0.2) 100%);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* 成就区域 */
.creator-achievements {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-fire);
    text-align: left;
}

.creator-achievements h4 {
    font-size: 14px;
    color: var(--text-fire);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.achievements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.achievements-list li {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
}

.achievements-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--text-fire);
    font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-main-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 40px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .creators-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .creator-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .video-loading {
        padding: 1rem;
    }
    
    .loading-spinner {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }
    
    .video-loading p {
        font-size: 0.9rem;
    }
    
    /* 移动设备视频优化 */
    .hero-video {
        object-position: center center;
    }
    
    /* 移动端平台图标优化已移至下方统一处理 */
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .platforms-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .platform-item {
        padding: 20px 16px;
    }
    
    .platform-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }
    
    .platform-icon img {
        width: 64px;
        height: 64px;
    }
    
    .platform-name {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .platform-desc {
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .platform-btn {
        padding: 6px 16px;
        font-size: 13px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .video-loading {
        gap: 0.5rem;
    }
    
    .loading-spinner {
        width: 25px;
        height: 25px;
    }
    
    .video-loading p {
        font-size: 0.8rem;
    }
}

/* 从视频区域移过来的样式 */
.about-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.about-section .hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 69, 0, 0.15) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 30px;
    margin-bottom: 30px;
    animation: badgeGlow 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.about-section .hero-badge span {
    color: var(--text-gold);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-section .hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(
        45deg,
        #d4af37 0%,
        #ffb347 20%,
        #ff4500 40%,
        #dc143c 60%,
        #d4af37 80%,
        #ffb347 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: epicTitle 4s ease-in-out infinite, shimmer 3s linear infinite;
    position: relative;
    letter-spacing: 2px;
    text-shadow: 
        2px 2px 0px rgba(212, 175, 55, 0.3),
        4px 4px 0px rgba(139, 0, 0, 0.2);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.about-section .hero-title::before {
    content: '众神之战';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    z-index: -1;
}

.about-section .hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.about-section .hero-description {
    font-size: 18px;
    color: var(--text-gold);
    margin-bottom: 10px;
    font-weight: 500;
}

.about-section .hero-thanks {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.about-section .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.about-section .stat-item {
    text-align: center;
    position: relative;
}

.about-section .stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: statGlow 2s ease-in-out infinite alternate;
}

.about-section .stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 1px;
}

/* 视频loading状态样式 */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.video-loading.hidden {
    display: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-loading p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* 视频占位图样式 */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-size: 400% 400%;
    animation: gradientShift 3s ease-in-out infinite;
    z-index: 2;
    transition: opacity 0.5s ease-out;
}

.video-placeholder.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

 