/* == 2 ảnh: TRÁI + PHẢI == */
.triple-bg {
  position: relative;
  min-height: 650px !important;
  background-image: url("https://parisclub.vn/wp-content/uploads/2025/10/z7111696839357_f03868d828412af69ea33c1baa645cd0.jpg"),
    /* trái */
      url("https://parisclub.vn/wp-content/uploads/2025/10/z7111696859255_e3fc4a0e9c9d791d3e0d1b3aa8fd2050.jpg"); /* phải */
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: 50% 100%, 50% 100%;
  overflow: hidden;
}

.triple-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05));
  pointer-events: none;
  z-index: 1;
}

.triple-bg .section-content {
  position: relative;
  z-index: 2;
}
.hero-section.triple-bg .banner .banner-link {
  pointer-events: none !important;
}
.hero-section.triple-bg .text-box {
  position: relative;
  z-index: 2;
}
.hero-section.triple-bg .text-box .button {
  position: relative;
  z-index: 3;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.hero-section.triple-bg .text-box .text-box-content {
  background: transparent !important;
  box-shadow: none !important;
}

/* Mobile */
@media (max-width: 549px) {
  .hero-section.triple-bg {
    min-height: 52vh !important;
    background-size: cover;
    background-position: center;
  }
  .hero-section.triple-bg .banner {
    padding-top: 30vh !important;
    min-height: 44vh;
    background-color: transparent !important;
  }
  .hero-section.triple-bg .text-box {
    width: 88% !important;
    margin: 0 auto;
    text-align: center;
  }
  .hero-section.triple-bg .text-box .text-inner {
    text-align: inherit !important;
  }
  .hero-section.triple-bg .text-box h5 {
    font-size: 17px !important;
    line-height: 1.22;
    margin: 0 0 6px;
    color: #fff;
  }
  .hero-section.triple-bg .text-box .text {
    font-size: 13.5px !important;
    line-height: 1.48 !important;
    color: #fff;
  }
  .hero-section.triple-bg .text-box .button {
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 26px;
    margin-top: 8px;
    white-space: nowrap;
  }
  .hero-section.triple-bg .slider-wrapper {
    margin-bottom: 0 !important;
  }
}

/* Mobile: dùng 1 ảnh cover */
@media (max-width: 549px) {
  .triple-bg {
    background-image: url("http://parisclub.vn/wp-content/uploads/2025/10/z7111696859255_e3fc4a0e9c9d791d3e0d1b3aa8fd2050.jpg");
    background-size: cover;
    background-position: center;
  }
}

/* ==== Marquee band ==== */
.kb-marquee-band {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      60% 140% at 50% 50%,
      rgba(155, 92, 246, 0.25) 0%,
      rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.kb-marquee-band::before,
.kb-marquee-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10vw;
  pointer-events: none;
  z-index: 2;
}
.kb-marquee-band::before {
  left: 0;
  background: linear-gradient(90deg, #0b0e14 0%, rgba(11, 14, 20, 0) 100%);
}
.kb-marquee-band::after {
  right: 0;
  background: linear-gradient(270deg, #0b0e14 0%, rgba(11, 14, 20, 0) 100%);
}

.kb-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: kb-marquee 30s linear infinite; /* tốc độ cuộn */
}
.kb-marquee-seg {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 8px 2vw;
}
.kb-word {
  white-space: nowrap;
  font-size: clamp(32px, 9vw, 100px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d5aa53;
}
.kb-icon {
  height: auto;
}
@keyframes kb-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* -50% vì có 2 seg giống nhau */
}
@media (max-width: 549px) {
  .kb-marquee-seg {
    gap: 2rem;
  }
}
