.banner {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.swiper {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.swiper-slide:hover {
    transform: scale(1.02);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 25px !important;
    color: #fff;
    transition: all 0.3s ease;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    transform: scale(1.2);
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.6) !important;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #2FCD79 !important;
    width: 24px;
    border-radius: 10px;
}

.b-box {
    width: 96%;
    padding: 40px 2% 20px;
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
    border-radius: 0px 0px 12px 12px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%, rgba(0, 0, 0, 1) 100%);
}

.b-box::after {
    content: "Play Now";
    font-size: 14px;
    color: #fff;
    border-radius: 20px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #2FCD79 0%, #13A174 100%);
    position: absolute;
    bottom: 35px;
    right: 15px;
    box-shadow: 0 4px 15px rgba(47, 205, 121, 0.4);
    transition: all 0.3s ease;
}

.b-box:hover::after {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(47, 205, 121, 0.6);
}

.b-box img {
    width: 80px;
    height: 80px;
    display: block;
    object-fit: contain;
    border-radius: 16px;
    margin-right: 20px;
    box-shadow: 0px 5px 20px rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
}

.b-box:hover img {
    transform: rotate(-5deg) scale(1.05);
}

.b-text {
    width: 57%;
    color: #fff;
    text-align: left;
}

.b-text p:nth-of-type(1),
.b-text p:nth-of-type(2) {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.b-text p:nth-of-type(2) {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    opacity: 0.95;
}

.b-btn {
    padding: 0px 10px;
    font-size: 15px;
    line-height: 27px;
    color: #3a82f7;
    background-color: #b7b8be;
    border-radius: 10px;
}

@media (max-width:750px) {
    .banner {
        width: 100%;
        margin: auto;
    }

    .swiper {
        height: 300px;
    }

    .b-box img {
        width: 70px;
        height: 70px;
    }

    .b-text {
        width: 53%;
    }
    
    .b-text p:nth-of-type(1) {
        font-size: 18px;
    }
    
    .b-text p:nth-of-type(2) {
        font-size: 14px;
    }
    
    .b-box::after {
        padding: 7px 15px;
        font-size: 12px;
    }
}