@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/fivepicf3ccdd27d2000e3f9255a7e3e2c488001768808492.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);
}

/* 轮播图样式 */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.carousel {
    display: flex;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    transform: scale(1.1);
}

.carousel-dot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: #7B68EE;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-bg {
        background-position: center;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    p {
        font-size: 1rem;
    }
}