@charset "UTF-8";
.landing{
    position: relative;
}
.lang-item.active{
    color: #9366ed;
}
.lang-item.active:after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    display: inline-block;
    width: 12px;
    height: 12px;
}
/* Banner */
.banner-container {
  width: calc(100% - 30px);
  overflow: hidden;
  position: relative;
  border-radius:14px;
  margin: 15px;
  position: absolute;
  z-index: 20;
}
.banner-track {
  display:flex;
  transition: transform 0.6s ease-in-out;
}
.banner-item {
  flex: 0 0 100%;
}
.banner-item img {
  width:100%;
  display:block;
  object-fit:cover;
  aspect-ratio: 16 / 6;
}
.banner-dots {
  position:absolute;
  bottom:12px;
  left:0;
  width:100%;
  display:flex;
  justify-content:center;
  gap:10px;
}
.dot {
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,0.4);
  cursor:pointer;
}
.dot.active {
  background:#ffffff;
}
   /* video-block */
.video-block {
  max-width: 720px;
  margin: 24px auto;
}
.video-player {
  width: 100%;
  border-radius: 12px;
  background: #000;
  display:block;
}
.rotate-text{
  font-weight: bold;
  color: #e94e97;
  font-family: var(--font-rubik)
}
/* modalWrap */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.text-brand-primary {
    color: #9366ed;
}
.bg-brand-primary {
    background-color: #9366ed;
}
.bg-brand-primary\/5 {
    background-color: rgba(147, 102, 237, 0.05);
}
.border-brand-primary {
    border-color: #9366ed;
}
.text-on-brand {
    color: #ffffff;
}
/* slide-wrap */
.slide-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 30px 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.slide-container {
  overflow: hidden;
  padding: 0 12%;
}
.slide-list {
  display: flex;
  touch-action: pan-y;
  transition: transform 0.4s ease-out;
}
.slide-item {
  flex: 0 0 100%;
  padding: 0 8px;
  box-sizing: border-box;
}
.slide-item img {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  aspect-ratio: 9 / 16;
}
.btn-prev,.btn-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.7);
  font-size:22px;
  cursor:pointer;
  z-index:2;
}
.btn-prev{
  left:16px;
}
.btn-next{
  right:16px;
}
/* initLazyLoad-img */
img.lazy {
  opacity: 0.4;
  transition: opacity 0.4s ease;
}
img:not(.lazy) {
  opacity: 1;
}