.option .positi a:hover span {
    color: white;
}

/* Happy New Year Popup */
.newyear-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.newyear-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.newyear-popup-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: url('/st/icon/popup_happynewyear2026.png') no-repeat center center;
    background-size: 100% 100%;
    padding: 60px 40px;
    text-align: center;
    animation: popupBounce 0.5s ease;
}

@keyframes popupBounce {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.newyear-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #ff0000;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #ff0000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.newyear-popup-close:hover {
    background: #ff0000;
    color: #fff;
    transform: rotate(90deg);
}

.newyear-popup-content {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.newyear-popup-btn {
    margin-top: 20px;
    padding: 15px 50px;
    background: linear-gradient(135deg, #ff6b6b, #ff0000);
    color: #fff;
    border: 3px solid #ffd700;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.newyear-popup-btn:hover {
    background: linear-gradient(135deg, #ff8888, #ff2222);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
    color: #fff;
    text-decoration: none;
}

/* Swiper Banner */
.banner {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.banner .swiper {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.banner .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .swiper-slide a {
    display: block;
    width: 100%;
    line-height: 0;
}

.banner .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
    color: #ffd700;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.banner .swiper-button-next:after,
.banner .swiper-button-prev:after {
    font-size: 20px;
}

.banner .swiper-pagination-bullet {
    background: #ffd700;
}

.banner .swiper-pagination-bullet-active {
    background: #ff0000;
}