.home-banner {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

.home-banner::before {
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to top, #eae2ef 0%, rgba(252, 148, 184, 0) 100%);
    content: '';
    z-index: 2;
    height: 10%;
    width: 100%;
}

    .banner-image {
        width: 100%;
        height: auto;
        display: block;
    }

    .banner-content {
        position: absolute;
        top: 17%;
        left: calc(calc(100vw - 85.875rem) / 2);
        max-width: 43.26rem;
        color: #000;
    }

    .play-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        overflow: hidden;
    }

    .banner-pretitle {
        margin-top: 20px;
        font-size: 50px;
        font-family: 'UVN Ben Xuan';
        margin-bottom: 0;
        color: #0D4E91ff;
    }

    .banner-title {
        font-size: 55px;
        font-weight: bold;
        margin-top: 0px;
        margin-bottom : 0;
        color: #d72262;
    }

    .banner-desc {
        margin-top: 15px;
        font-size: 18px;
        line-height: 1.7;
    }

    .banner-video {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.8);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    .video-wrap {
        position: relative;
        width: 80%;
        max-width: 900px;
        aspect-ratio: 16/9;
    }

    .video-wrap iframe {
        width: 100%;
        height: 100%;
    }

.video-close {
    position: fixed;
    top: 20px;
    right: 0px;
    font-size: 28px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.banner-pagination {
    position: absolute;
    top: 70% !important;
    left: 20px !important; 
    transform: translateY(-50%); 
    display: flex;
    flex-direction: column; 
    gap: 15px; 
}


.banner-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1; 
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}


.banner-pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.3);
}

/* --- Vùng chứa toàn bộ nút + text --- */
.video-live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* khoảng cách giữa nút play và text */
  position: relative;
  z-index: 2;
}

/* --- Nút play --- */
.play-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Hiệu ứng toả sáng lan rộng --- */
.play-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fc94b8;
  transform: scale(1);
  opacity: 0.8;
  animation: pulseWave 2s ease-out infinite;
  z-index: -1;
  pointer-events: none;
}

/* --- Hiệu ứng phập phồng mềm mượt --- */
@keyframes pulseWave {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* --- Text hiển thị trạng thái & thời gian --- */
.play-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.play-info .status {
  color: #d72262;
  font-weight: 600;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.play-info .countdown {
  font-size: 18px;
  color: #0D4E91ff;
  font-weight: 700;
}

/* --- Tuỳ chọn thêm: làm cho hiệu ứng không bị cắt --- */
.play-btn {
  overflow: visible;
}

.play-wrapper {
    display: flex;
}

.live-dot {
    display: inline-block;
    animation: pulse 1s infinite ease-in-out;
    font-size: 16px; /* bạn có thể tăng/giảm nếu muốn to hơn hoặc nhỏ hơn */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2); /* giảm từ 1.5 → 1.2 cho nhẹ hơn */
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.countdown {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
}

.countdown-box {
  background: #fff;
  border: 2px solid #d72262;
  border-radius: 8px;
  width: 60px;
  height: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.countdown-box .number {
  font-size: 20px;
  font-weight: 700;
  color: #0D4E91ff;
  line-height: 1;
}

.countdown-box .label {
  font-size: 13px;
  font-weight: 600;
  color: #d72262;
  text-transform: uppercase;
  margin-top: 2px;
}


@media (max-width: 768px) {
    .banner-content {
        position: absolute;
        top: 12%;      /* đẩy lên cao hơn một chút */
        left: 5%;      /* dính sát trái */
        transform: none; /* bỏ translateX */
        max-width: 190px;
        z-index: 2;    /* đảm bảo nằm trên ảnh */
    }

    .banner-pretitle {
        font-size: 15px;
        margin-top: 5px;
    }

    .banner-title {
        font-size: 16px;
        margin-top: 0px;
    }

    .banner-desc {
        font-size: 10px;
        margin-top: 8px;
        max-height: 105px;
        overflow: hidden;
        text-align: justify;
        padding-right : 25px;
    }

    .play-btn {
        width: 70px;
        height: 70px;
    }

    .play-wrapper {
        display: block;
    }

    .play-info .status {
        font-size: 12px;
    }

    .play-info .countdown {
        font-size: 14px;
    }

    .banner-image {
        height: 500px;
        /* object-fit: cover; */
    }

    .banner-pagination {
        flex-direction: unset;
        top: auto !important;
    }

    .banner-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .countdown {
        justify-content: left;
    }

    .countdown-box {
        width: 40px;
        height: 42px;
    }
    .countdown-box .number {
        font-size: 12px;
    }
    .countdown-box .label {
        font-size: 10px;
    }

    
}

