/* ===== 全局样式 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c9a84c;
    --primary-dark: #8b6914;
    --primary-light: #e8d5a3;
    --secondary-color: #d4a853;
    --accent-color: #c41e3a;
    --accent-light: #e74c3c;
    --bg-color: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(20, 20, 30, 0.8);
    --text-color: #f5f5dc;
    --text-dark: #ffffff;
    --text-gray: #a0a0a0;
    --light-text: #808080;
    --white: #f5f5dc;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.3);
    --glow: 0 0 10px rgba(201, 168, 76, 0.5);
    --transition: all 0.3s ease;
    --gradient-gold: linear-gradient(135deg, #c9a84c, #8b6914);
    --gradient-fire: linear-gradient(135deg, #c9a84c, #d4a853);
    --glass-bg: rgba(20, 20, 30, 0.6);
    --glass-border: rgba(201, 168, 76, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'LXGW WenKai', 'Microsoft YaHei', 'PingFang SC', serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* ===== 导航栏 ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-gold);
    background: rgba(10, 10, 15, 0.95);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: var(--glow);
}

.login-btn {
    background: var(--gradient-gold);
    padding: 8px 24px;
    border-radius: 25px;
    color: #000 !important;
    font-weight: 500;
    box-shadow: var(--shadow-gold);
}

.login-btn:hover {
    background: linear-gradient(135deg, #d4a853, #c9a84c);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== 英雄区域 ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.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: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.8) 0%,
        rgba(20, 15, 5, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: var(--white);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: var(--gradient-gold);
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    letter-spacing: 2px;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #d4a853, #c9a84c);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.5);
}

/* 轮播图控制已移除 - 使用视频背景 */

/* ===== 简介区域 ===== */
.intro-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.intro-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-gold);
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse 2s infinite;
}

.card-icon i {
    font-size: 2rem;
    color: #000;
}

.intro-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.intro-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== 角色展示 ===== */
.characters-preview {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
}

.characters-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.character-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

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

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image.placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.card-image.placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.card-image.placeholder p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.character-title {
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.character-desc {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.detail-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.detail-link:hover {
    color: var(--primary-light);
    gap: 12px;
    text-shadow: var(--glow);
}

.view-all-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 15px 40px;
    background: var(--gradient-gold);
    color: #000;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 2px;
    box-shadow: var(--shadow-gold);
}

.view-all-btn:hover {
    background: linear-gradient(135deg, #d4a853, #c9a84c);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.5);
}

/* ===== 剧情亮点 ===== */
.highlights-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark), transparent);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px;
}

.timeline-item.left {
    left: 0;
    padding-right: 50px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 50px;
}

.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-gold);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-gold);
}

.timeline-icon i {
    font-size: 1.5rem;
    color: #000;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--light-text);
    margin-bottom: 15px;
}

/* ===== 音乐播放器 ===== */
.music-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    color: var(--white);
    position: relative;
}

.music-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.music-player {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-gold);
}

.player-info {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.album-cover {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.album-cover.placeholder {
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.album-cover.placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.album-cover.placeholder p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.song-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.song-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.song-artist {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.song-album {
    opacity: 0.6;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.control-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    background: var(--gradient-gold);
    color: #000;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.play-btn {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
}

.progress-container {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(201, 168, 76, 0.2);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
    width: 0;
    transition: width 0.1s linear;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.7;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.volume-control i {
    font-size: 1.2rem;
}

.volume-control input {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    outline: none;
}

.volume-control input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
}

.lyrics-container {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 20px;
    height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 168, 76, 0.3) transparent;
    position: relative;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.lyrics-container::-webkit-scrollbar {
    width: 6px;
}

.lyrics-container::-webkit-scrollbar-track {
    background: transparent;
}

.lyrics-container::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.3);
    border-radius: 3px;
}

.lyrics-content {
    text-align: center;
    padding: 20px 0;
}

.lyrics-line {
    padding: 12px 0;
    opacity: 0.4;
    transition: all 0.5s ease;
    font-size: 1rem;
    cursor: pointer;
}

.lyrics-line:hover {
    opacity: 0.7;
}

.lyrics-line.active {
    opacity: 1;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
    transform: scale(1.05);
}

.lyrics-line.past {
    opacity: 0.6;
    color: var(--text-gray);
}

.lyrics-placeholder {
    opacity: 0.5;
    padding: 40px 0;
}

/* ===== 名场面展示 ===== */
.scenes-section {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
}

.scenes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.scenes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.scene-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.scene-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.scene-image {
    width: 100%;
    height: 100%;
}

.scene-image.placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.scene-image.placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.scene-image.placeholder p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.scene-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 10, 15, 0.95));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.scene-card:hover .scene-overlay {
    transform: translateY(0);
}

.scene-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.scene-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.scene-link {
    color: var(--accent-color);
    font-weight: 600;
}

/* ===== 页脚 ===== */
.footer {
    background: linear-gradient(180deg, var(--bg-secondary), #0a0a0f);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
    text-shadow: var(--glow);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--gradient-gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* ===== 返回顶部 ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #d4a853, #c9a84c);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.5);
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(201, 168, 76, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(201, 168, 76, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(201, 168, 76, 0.5);
    }
}

/* ===== 响应式设计 ===== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .intro-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .characters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
    }

    .timeline-item.right {
        left: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .characters-grid {
        grid-template-columns: 1fr;
    }

    .scenes-grid {
        grid-template-columns: 1fr;
    }

    .player-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .album-cover {
        width: 150px;
        height: 150px;
    }

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .slider-btn {
        padding: 10px;
        font-size: 1rem;
    }

    .music-player {
        padding: 20px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}
/* 手机端响应式 - 角色图鉴卡片 */
@media (max-width: 768px) {
  .characters-grid,
  .characters-section .characters-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 15px !important;
  }
  
  .character-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px !important;
  }
  
  .character-card img {
    width: 100% !important;
    height: auto !important;
  }
}
