/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Squada One', sans-serif;
    background: #010214;
    color: white;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}
section {
    width: 100%;
    height: 100vh;
    position: relative;
}

/* Remove all other font-family declarations since they're now inherited from body */
.hero-text h1,
.hero-text h2,
.tab-btn,
.section-title2,
.section-title,
.new-release,
p,
a {
    font-family: inherit;
}

.w100 {
  width: 100% !important;
}

/* index 页面loding */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.loading-gif {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .loading-gif {
        width: 96px;
        height: 96px;
    }
} 

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(133, 46, 255, 0.8);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

/* Swiper section */
.swiper {
    width: 100%;
    display: none;
    overflow: visible !important;
}
.swiper.active {
    display: block;
}

.swiper-wrapper {
    display: flex;
}
.swiper-slide {
    /* width: 2.74rem !important; */
    /* height: 3.85rem !important; */
    user-select: none;
}
.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
    pointer-events: none;
}
.swiper-slide:hover img {
    transform: scale(1.05);
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(133, 46, 255, 0.8);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

/* 移除重複的樣式 */
.swiper-container,
.swiper-container.active {
    display: none;
}