@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');

body {
    font-family: 'Noto Sans SC', sans-serif;
}

.hero-bg {
    background-image: url('https://static.app.985sy.com/admin-fast-system/gamedata/20260119/gamemap/fivepic799bad5a3b514f096e69bbc4a7896cd91768808501.jpg');
    background-size: cover;
    background-position: center;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-hover {
    transition: all 0.3s ease;
}

.btn-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 攻略步骤样式 */
.guide-step {
    counter-increment: step;
    margin-bottom: 2rem;
}

.guide-step::before {
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #7B68EE;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 12px;
}

/* 活动卡片样式 */
.activity-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 常见问题样式 */
.faq-item {
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    background-color: #f9fafb;
    padding: 1.5rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-bg {
        background-position: center;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .guide-step::before {
        width: 28px;
        height: 28px;
    }
}