﻿/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #191422;
    --accent-gold: #d7b496;
    --bg-dark: #150e1b;
    --secondary-dark: #65454a;
    --mid-purple: #2f2e46;
    --accent-purple: #695f9f;
    --text-light: #ffffff;
    --text-muted: #b8b8b8;
    --gradient-primary: linear-gradient(135deg, #191422 0%, #2f2e46 50%, #695f9f 100%);
    --gradient-accent: linear-gradient(45deg, #d7b496 0%, #65454a 100%);
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(25, 20, 34, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.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;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-logo img {
    width: 32px;
    height: 32px;
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== 英雄区域重构 ===== */

/* 主容器 */
.hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0 40px;
    overflow: hidden;
}

/* 背景层 */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--primary-dark) 0%, 
        var(--mid-purple) 40%, 
        var(--accent-purple) 80%, 
        var(--secondary-dark) 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(215, 180, 150, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(105, 95, 159, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(215, 180, 150, 0.1) 0%, transparent 40%);
    animation: backgroundFloat 8s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) scale(1.05);
        opacity: 0.8;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(21, 14, 27, 0.3) 70%, 
        rgba(21, 14, 27, 0.6) 100%);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: 
        radial-gradient(2px 2px at 20% 30%, rgba(215, 180, 150, 0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(105, 95, 159, 0.2), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(215, 180, 150, 0.4), transparent),
        radial-gradient(1px 1px at 60% 10%, rgba(105, 95, 159, 0.3), transparent);
    background-size: 100px 100px, 150px 150px, 80px 80px, 120px 120px;
    animation: sparkle 6s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

/* 内容容器 */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 版本信息 */
.version-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0.5rem;
    animation: versionSlideIn 0.8s ease-out 0.1s both;
}

@keyframes versionSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.version-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.2) 0%, 
        rgba(105, 95, 159, 0.3) 100%);
    border: 1px solid rgba(215, 180, 150, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.release-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 标题区域 */
.title-module {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: titleSlideIn 0.8s ease-out 0.2s both;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, 
        var(--accent-gold) 0%, 
        #f4d03f  30%, 
        var(--accent-gold) 60%, 
        #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 4px 20px rgba(215, 180, 150, 0.3);
    letter-spacing: -0.02em;
}

.sub-title {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--accent-gold);
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* 核心定位 */
.core-positioning {
    animation: positioningSlideIn 0.8s ease-out 0.3s both;
}

@keyframes positioningSlideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.positioning-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--accent-gold);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.positioning-subtitle {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    text-align: center;
    font-weight: 300;
    opacity: 0.9;
}

/* 主要卖点 */
.key-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0;
    animation: featuresSlideIn 0.8s ease-out 0.4s both;
}

@keyframes featuresSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.key-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.1) 0%, 
        rgba(105, 95, 159, 0.2) 100%);
    border: 1px solid rgba(215, 180, 150, 0.3);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.key-features .feature-item:hover {
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.2) 0%, 
        rgba(105, 95, 159, 0.3) 100%);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(215, 180, 150, 0.2);
}

.key-features .feature-item i {
    font-size: 1rem;
    color: var(--accent-gold);
}

/* 游戏信息 */
.game-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0;
    animation: gameInfoSlideIn 0.8s ease-out 0.5s both;
}

@keyframes gameInfoSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, 
        rgba(47, 46, 70, 0.6) 0%, 
        rgba(105, 95, 159, 0.3) 100%);
    border: 1px solid rgba(105, 95, 159, 0.4);
    padding: 0.6rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.game-info .info-item:hover {
    background: linear-gradient(135deg, 
        rgba(105, 95, 159, 0.4) 0%, 
        rgba(47, 46, 70, 0.7) 100%);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(105, 95, 159, 0.2);
}

.game-info .info-item i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* 下载按钮区域 */
.download-section {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: downloadSlideIn 0.8s ease-out 0.6s both;
}

@keyframes downloadSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 35px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, 
        var(--accent-gold) 0%, 
        #f4d03f 50%, 
        var(--accent-gold) 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(215, 180, 150, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(215, 180, 150, 0.4);
    background: linear-gradient(135deg, 
        #f4d03f 0%, 
        var(--accent-gold) 50%, 
        #d4af37 100%);
}

.btn-outline {
    background: linear-gradient(135deg, 
        rgba(105, 95, 159, 0.1) 0%, 
        rgba(47, 46, 70, 0.2) 100%);
    color: var(--accent-gold);
    border: 2px solid rgba(215, 180, 150, 0.4);
    backdrop-filter: blur(15px);
}

.btn-outline:hover {
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.15) 0%, 
        rgba(105, 95, 159, 0.2) 100%);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(215, 180, 150, 0.2);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: 40px;
}

/* 按钮样式增强 */
.btn-download {
    position: relative;
    overflow: hidden;
}

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

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    backdrop-filter: blur(10px);
}

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

.btn i {
    margin-right: 0.5rem;
}



/* ===== 滚动提示模块 ===== */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    cursor: pointer;
    animation: scrollPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

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

@keyframes scrollPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* 通用样式 */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-gold);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
}

/* 游戏概览 */
.overview {
    padding: 80px 0;
    background: var(--primary-dark);
}

/* 主要概览介绍区域 */
.overview-hero {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.overview-content-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-subtitle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.overview-subtitle i {
    font-size: 1.3rem;
}

.overview-description {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.overview-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.overview-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(215, 180, 150, 0.1);
    border: 1px solid rgba(215, 180, 150, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.overview-tag:hover {
    background: rgba(215, 180, 150, 0.2);
    transform: translateY(-2px);
}

.overview-tag i {
    font-size: 0.8rem;
}

/* 视觉卡片 */
.visual-card {
    background: rgba(25, 20, 34, 0.8);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.visual-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.visual-content h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.visual-content p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* 核心优势 */
.game-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.advantage-card {
    position: relative;
    background: rgba(47, 46, 70, 0.5);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.advantage-icon {
    width: 60px;
    height: 60px;
    background: rgba(215, 180, 150, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: rgba(215, 180, 150, 0.3);
    transform: scale(1.1);
}

.advantage-content h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.advantage-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.advantage-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* 数据展示 */
.game-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: rgba(25, 20, 34, 0.6);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.metric-item {
    position: relative;
}

.metric-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(105, 95, 159, 0.3);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

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

/* 角色介绍 */
.characters {
    padding: 80px 0;
    background: var(--bg-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.character-card {
    background: rgba(25, 20, 34, 0.8);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
    border: 1px solid rgba(105, 95, 159, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.character-card:hover {
    transform: translateY(-10px);
}

.character-image {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    position: relative;
}

.character-avatar {
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
    opacity: 0.8;
}

.character-info {
    flex: 1;
}

.character-info h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.character-cv {
    color: var(--accent-purple);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.character-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.character-traits {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trait {
    background: rgba(215, 180, 150, 0.1);
    border: 1px solid rgba(215, 180, 150, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 500;
}

/* 核心特色 */
.features {
    padding: 80px 0;
    background: var(--bg-dark);
}

.features-showcase {
    margin-bottom: 4rem;
}

.feature-highlight {
    background: rgba(47, 46, 70, 0.3);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    background: rgba(47, 46, 70, 0.5);
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.feature-content .feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(215, 180, 150, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

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

.feature-item {
    background: rgba(47, 46, 70, 0.5);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: var(--text-light);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.feature-icon i {
    display: block;
}

.feature-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-muted);
}

/* 视觉展示 */
.gallery {
    padding: 80px 0;
    background: var(--primary-dark);
}

.gallery-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gallery-main {
    margin-bottom: 2rem;
}

.gallery-item.featured {
    max-width: 600px;
    margin: 0 auto;
}

.gallery-item.featured .gallery-placeholder {
    min-height: 300px;
    padding: 4rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-placeholder {
    background: linear-gradient(135deg, 
        rgba(47, 46, 70, 0.8) 0%, 
        rgba(105, 95, 159, 0.3) 100%);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder:hover {
    background: linear-gradient(135deg, 
        rgba(105, 95, 159, 0.4) 0%, 
        rgba(47, 46, 70, 0.6) 100%);
    border-color: var(--accent-gold);
}

.gallery-placeholder i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.gallery-placeholder h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.gallery-placeholder p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 文章资讯 */
.articles {
    padding: 80px 0;
    background: var(--bg-dark);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: rgba(25, 20, 34, 0.8);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(215, 180, 150, 0.2);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(47, 46, 70, 0.8) 0%, 
        rgba(105, 95, 159, 0.5) 100%);
}

.article-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--accent-gold);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.article-card:hover .article-placeholder {
    transform: scale(1.1);
    opacity: 0.8;
}

.article-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.9) 0%, 
        rgba(215, 180, 150, 0.95) 100%);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-title {
    color: var(--accent-gold);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-card:hover .article-title {
    color: #f4d03f;
}

.article-excerpt {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(105, 95, 159, 0.3);
}

.article-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.article-date i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.article-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 5px;
}

.article-link:hover {
    gap: 0.8rem;
    color: #f4d03f;
}

.article-link i {
    transition: transform 0.3s ease;
}

.article-link:hover i {
    transform: translateX(5px);
}

.articles-footer {
    text-align: center;
    margin-top: 2rem;
}

/* 立即体验 */
.download {
    padding: 80px 0;
    background: var(--primary-dark);
}

.download-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.download-hero {
    background: rgba(25, 20, 34, 0.8);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid rgba(105, 95, 159, 0.3);
}

.download-content h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.download-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.download-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.download-feature i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.download-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.download-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.download-size,
.download-platform {
    background: rgba(105, 95, 159, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.system-requirements {
    background: rgba(47, 46, 70, 0.5);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(105, 95, 159, 0.3);
}

.system-requirements h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(25, 20, 34, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(105, 95, 159, 0.2);
}

.req-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.req-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.req-content strong {
    color: var(--text-light);
    font-size: 0.9rem;
}

.req-content span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, 
        var(--primary-dark) 0%, 
        var(--mid-purple) 50%, 
        var(--secondary-dark) 100%);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(105, 95, 159, 0.3);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(215, 180, 150, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(105, 95, 159, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.footer-social {
    margin-top: 2rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.1) 0%, 
        rgba(105, 95, 159, 0.2) 100%);
    border: 1px solid rgba(215, 180, 150, 0.3);
    border-radius: 50%;
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.2) 0%, 
        rgba(105, 95, 159, 0.3) 100%);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(215, 180, 150, 0.2);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section-title {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 15px;
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(105, 95, 159, 0.2);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-copyright p {
    margin: 0;
    line-height: 1.5;
}

.footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.legal-link:hover {
    color: var(--accent-gold);
}

.legal-link:hover::after {
    width: 100%;
}

/* 404错误页面 */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, 
        var(--primary-dark) 0%, 
        var(--mid-purple) 40%, 
        var(--accent-purple) 80%, 
        var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(215, 180, 150, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(105, 95, 159, 0.1) 0%, transparent 60%);
    animation: backgroundFloat 8s ease-in-out infinite;
}

.error-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.error-visual {
    margin-bottom: 3rem;
    animation: errorFadeIn 1s ease-out;
}

@keyframes errorFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.2) 0%, 
        rgba(105, 95, 159, 0.3) 100%);
    border: 2px solid rgba(215, 180, 150, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-gold);
    backdrop-filter: blur(10px);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(215, 180, 150, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(215, 180, 150, 0.5);
    }
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        var(--accent-gold) 0%, 
        #f4d03f 50%, 
        var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(215, 180, 150, 0.3);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-text {
    margin-bottom: 3rem;
    animation: textSlideIn 1s ease-out 0.3s both;
}

@keyframes textSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-title {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.error-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-suggestion {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: actionsSlideIn 1s ease-out 0.6s both;
}

@keyframes actionsSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: featuresSlideIn 1s ease-out 0.9s both;
}

@keyframes featuresSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-suggestion {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.1) 0%, 
        rgba(105, 95, 159, 0.2) 100%);
    border: 1px solid rgba(215, 180, 150, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    color: var(--accent-gold);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-suggestion:hover {
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.2) 0%, 
        rgba(105, 95, 159, 0.3) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(215, 180, 150, 0.2);
}

.feature-suggestion i {
    font-size: 1.2rem;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border: none;
    border-radius: 50%;
    color: var(--primary-dark);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.back-to-top:hover {
    background: #f4d03f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 90px 0 30px;
        min-height: 50vh;
    }

    .hero-container {
        gap: 1rem;
        padding: 0 1.5rem;
        max-width: 90%;
    }
    
    .version-info {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .version-badge,
    .release-date {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .main-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        line-height: 1.1;
    }
    
    .sub-title {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }
    
    .positioning-text {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .positioning-subtitle {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    }
    
    .key-features {
        gap: 0.8rem;
        justify-content: center;
    }

    .key-features .feature-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 15px;
    }

    .key-features .feature-item i {
        font-size: 0.9rem;
    }
    
    .game-info {
        gap: 0.8rem;
        justify-content: center;
    }
    
    .game-info .info-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .download-section {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 220px;
        justify-content: center;
    }
    
    .scroll-hint {
        bottom: 1.5rem;
    }
    
    .overview {
        padding-top: 80px;
    }
    
    .overview-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-advantages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .metric-item:nth-child(2)::after {
        display: none;
    }
    
    .metric-item:nth-child(odd)::after {
        display: block;
    }
    
    .metric-item:last-child::after {
        display: none;
    }
    
    .feature-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .download-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-features {
        grid-template-columns: 1fr;
    }
    
    .characters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-card {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .download-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-buttons {
        align-items: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* 404页面响应式 */
    .error-page {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    .error-content {
        padding: 0 1.5rem;
    }
    
    .error-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1.1rem;
    }
    
    .error-suggestion {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .error-features {
        gap: 1rem;
    }
    
    .feature-suggestion {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 20px;
        min-height: 45vh;
    }

    .hero-container {
        padding: 0 1rem;
        gap: 0.8rem;
        max-width: 95%;
    }
    
    .version-info {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }
    
    .version-badge,
    .release-date {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .main-title {
        font-size: clamp(2rem, 12vw, 2.8rem);
        line-height: 1.1;
    }
    
    .sub-title {
        font-size: clamp(0.8rem, 3.5vw, 1rem);
    }
    
    .positioning-text {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }
    
    .positioning-subtitle {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }
    
    .key-features {
        gap: 0.6rem;
        justify-content: center;
    }

    .key-features .feature-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        border-radius: 12px;
    }

    .key-features .feature-item i {
        font-size: 0.8rem;
    }
    
    .game-info {
        gap: 0.6rem;
        justify-content: center;
    }
    
    .game-info .info-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .download-section {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .scroll-hint {
        bottom: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .overview-subtitle {
        font-size: 1.3rem;
    }
    
    .overview-description {
        font-size: 1rem;
    }
    
    .visual-card {
        padding: 2rem;
    }
    
    .visual-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .game-metrics {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .metric-item::after {
        display: none !important;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .characters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-card {
        max-width: 100%;
    }
    
    .article-image {
        height: 180px;
    }
    
    .article-placeholder {
        font-size: 2.5rem;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .feature-item,
    .character-card {
        padding: 1rem;
    }
    
    .download-card {
        padding: 2rem;
    }
    
    .version-info {
        justify-content: center;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    /* 404页面小屏幕响应式 */
    .error-page {
        padding: 80px 0 40px;
        min-height: 85vh;
    }
    
    .error-content {
        padding: 0 1rem;
    }
    
    .error-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .error-number {
        font-size: 4.5rem;
    }
    
    .error-title {
        font-size: 1.8rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-suggestion {
        font-size: 0.95rem;
    }
    
    .error-actions {
        gap: 0.8rem;
    }
    
    .error-features {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-suggestion {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: 200px;
        justify-content: center;
    }
}

/* 政策页面样式 */
.policy-page {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--bg-dark);
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: heroFadeIn 1s ease-out;
}

.policy-header h1 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, 
        var(--accent-gold) 0%, 
        #f4d03f 50%, 
        var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: rgba(25, 20, 34, 0.6);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.policy-section:hover {
    border-color: rgba(215, 180, 150, 0.4);
    background: rgba(25, 20, 34, 0.8);
}

.policy-section h2 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.policy-section h2 i {
    font-size: 1.5rem;
}

.policy-section h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-section strong {
    color: var(--text-light);
    font-weight: 600;
}

.policy-section a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.policy-section a:hover {
    border-bottom-color: var(--accent-gold);
}

.policy-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(105, 95, 159, 0.3);
}

/* 联系我们页面样式 */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(25, 20, 34, 0.6);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    background: rgba(25, 20, 34, 0.8);
    box-shadow: 0 10px 30px rgba(215, 180, 150, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.2) 0%, 
        rgba(105, 95, 159, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.3) 0%, 
        rgba(105, 95, 159, 0.4) 100%);
}

.contact-card h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card > p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 1rem;
}

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

.social-item {
    text-align: center;
    background: rgba(47, 46, 70, 0.5);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.social-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    background: rgba(47, 46, 70, 0.7);
}

.social-icon-large {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.2) 0%, 
        rgba(105, 95, 159, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.social-item:hover .social-icon-large {
    transform: scale(1.1);
}

.social-item h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.social-item p {
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.social-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(47, 46, 70, 0.3);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(215, 180, 150, 0.4);
    background: rgba(47, 46, 70, 0.5);
}

.faq-item h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h4 i {
    font-size: 0.8rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.office-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.office-item {
    background: rgba(47, 46, 70, 0.3);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
}

.office-item h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0.3rem 0;
}

.office-note {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
}

.contact-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(105, 95, 159, 0.3);
}

.contact-cta {
    margin-bottom: 2rem;
}

.contact-cta h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* 政策页面响应式 */
@media (max-width: 768px) {
    .policy-page {
        padding: 100px 0 60px;
    }
    
    .policy-header h1 {
        font-size: 2.2rem;
    }
    
    .policy-section {
        padding: 1.8rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .office-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .policy-page {
        padding: 90px 0 50px;
    }
    
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-date {
        font-size: 1rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-cta h3 {
        font-size: 1.6rem;
    }
}

/* 文章页面样式 */
.article-page {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--bg-dark);
}

.article-header {
    margin-bottom: 3rem;
    animation: heroFadeIn 1s ease-out;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.article-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
    color: var(--accent-gold);
}

.article-breadcrumb i {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.article-breadcrumb span {
    color: var(--accent-gold);
}

.article-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.2) 0%, 
        rgba(105, 95, 159, 0.3) 100%);
    color: var(--accent-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(215, 180, 150, 0.4);
    margin-bottom: 1.5rem;
}

.article-main-title {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(135deg, 
        var(--accent-gold) 0%, 
        #f4d03f 50%, 
        var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-info-bar {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.article-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-info-item i {
    color: var(--accent-gold);
}

.article-featured-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
}

.featured-placeholder {
    background: linear-gradient(135deg, 
        rgba(47, 46, 70, 0.8) 0%, 
        rgba(105, 95, 159, 0.5) 100%);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.featured-placeholder i {
    font-size: 4rem;
    color: var(--accent-gold);
}

.featured-placeholder p {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.article-body {
    max-width: 900px;
    margin: 0 auto;
}

.article-section {
    background: rgba(25, 20, 34, 0.6);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.article-section:hover {
    border-color: rgba(215, 180, 150, 0.4);
    background: rgba(25, 20, 34, 0.8);
}

.article-section h2 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.article-section h2 i {
    font-size: 1.5rem;
}

.article-section h3 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.article-section h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.article-section p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.article-section ul,
.article-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.article-section li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.article-section strong {
    color: var(--text-light);
    font-weight: 600;
}

.article-section a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.article-section a:hover {
    border-bottom-color: var(--accent-gold);
}

.article-section blockquote {
    background: rgba(47, 46, 70, 0.5);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.article-section blockquote p {
    margin: 0 0 1rem 0;
    font-style: italic;
}

.article-section blockquote cite {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.update-highlight,
.design-concept,
.gameplay-section,
.route-guide,
.gift-guide,
.design-process,
.scene-design,
.tech-art-balance,
.emotional-design,
.team-credits,
.contest-category,
.prize-section,
.rules-list,
.tips-list,
.character-relationship,
.hidden-plot,
.route-connection,
.voice-actor-profile,
.studio-story,
.voice-art,
.voice-message,
.audio-production {
    margin: 1.5rem 0;
}

.update-highlight h3,
.design-concept h3,
.design-process h4,
.contest-category h3,
.character-relationship h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bug-fixes,
.download-info-box,
.controls-guide,
.requirements-table,
.timeline,
.prize-tier,
.faq-section {
    margin: 1.5rem 0;
}

.requirements-table {
    background: rgba(47, 46, 70, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.req-row {
    display: flex;
    border-bottom: 1px solid rgba(105, 95, 159, 0.2);
    padding: 1rem;
}

.req-row:last-child {
    border-bottom: none;
}

.req-label {
    flex: 0 0 150px;
    color: var(--accent-gold);
    font-weight: 600;
}

.req-value {
    flex: 1;
    color: var(--text-muted);
}

.timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background: rgba(215, 180, 150, 0.3);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    flex: 0 0 40px;
    height: 40px;
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.2) 0%, 
        rgba(105, 95, 159, 0.3) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.timeline-content h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin-bottom: 0.5rem;
}

.prize-tier {
    background: rgba(47, 46, 70, 0.3);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.prize-tier:hover {
    border-color: rgba(215, 180, 150, 0.4);
    transform: translateY(-3px);
}

.prize-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.prize-icon.gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
}

.prize-icon.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #000;
}

.prize-icon.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #e9a861 100%);
    color: #000;
}

.prize-icon.participation {
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.3) 0%, 
        rgba(105, 95, 159, 0.4) 100%);
    color: var(--accent-gold);
}

.prize-tier h3 {
    text-align: center;
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.voice-actor-profile {
    background: rgba(47, 46, 70, 0.3);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.va-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(105, 95, 159, 0.3);
}

.va-icon {
    font-size: 3rem;
    color: var(--accent-gold);
}

.va-info h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.va-role {
    color: var(--text-muted);
    font-size: 1rem;
}

.va-content h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(105, 95, 159, 0.3);
    text-align: right;
    color: var(--text-muted);
    font-style: italic;
}

.article-footer-nav {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.related-articles {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(105, 95, 159, 0.3);
}

.related-articles h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(47, 46, 70, 0.3);
    border: 1px solid rgba(105, 95, 159, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(215, 180, 150, 0.2);
}

.related-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(215, 180, 150, 0.2) 0%, 
        rgba(105, 95, 159, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.related-content h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.related-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.cta-section {
    text-align: center;
    margin: 2rem 0;
}

/* 文章页面响应式 */
@media (max-width: 768px) {
    .article-page {
        padding: 100px 0 60px;
    }
    
    .article-main-title {
        font-size: 2rem;
    }
    
    .article-section {
        padding: 1.8rem;
    }
    
    .article-section h2 {
        font-size: 1.5rem;
    }
    
    .article-footer-nav {
        flex-direction: column;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .va-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .article-page {
        padding: 90px 0 50px;
    }
    
    .article-main-title {
        font-size: 1.6rem;
    }
    
    .article-section {
        padding: 1.5rem;
    }
    
    .article-section h2 {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .featured-placeholder {
        min-height: 200px;
    }
    
    .featured-placeholder i {
        font-size: 3rem;
    }
    
    .featured-placeholder p {
        font-size: 1.2rem;
    }
    
    .related-card {
        flex-direction: column;
        text-align: center;
    }
} 