/* 像素风格字体 */
.font-pixel {
    font-family: 'Press Start 2P', cursive;
}

/* 游戏容器样式 */
.game-container {
    background: #1a1a1a;
    border: 4px solid #333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* 卡片样式 */
.screenshot-card, .feature-card, .review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.screenshot-card:hover, .feature-card:hover, .review-card:hover {
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .game-container {
        height: 400px;
    }
    
    .font-pixel {
        font-size: 0.8em;
    }
}

/* 全屏按钮样式 */
#fullscreenBtn {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    border: 2px solid #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#fullscreenBtn:hover {
    background: linear-gradient(45deg, #357abd, #4a90e2);
}

/* 动画效果 */
@keyframes pixel-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.font-pixel {
    animation: pixel-pulse 2s infinite;
}

/* 语言选择器样式 */
#languageSelector {
    border: 2px solid #fff;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

/* 链接样式 */
a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #357abd;
}

/* 评论卡片样式 */
.review-card {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #4a90e2;
}

/* 特性卡片样式 */
.feature-card {
    text-align: center;
    padding: 2rem;
}

/* 截图卡片样式 */
.screenshot-card img {
    transition: transform 0.3s ease;
}

.screenshot-card:hover img {
    transform: scale(1.05);
}

/* 团队卡片样式 */
.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

/* 时间线样式 */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #4a90e2;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 2px solid #333;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #4a90e2;
    border-radius: 50%;
}

/* 攻略卡片样式 */
.guide-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

.guide-card ul {
    list-style-type: none;
    padding: 0;
}

.guide-card li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.guide-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4a90e2;
}

/* 喜爱原因卡片样式 */
.love-card, .reason-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.love-card:hover, .reason-card:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        margin-left: 40px;
    }
    
    .timeline-item::before {
        left: -30px;
    }
    
    .team-card, .guide-card, .love-card, .reason-card {
        padding: 1.5rem;
    }
} 