/* BARRDOT gallery zoom + moving strip + CTA fix */

.bt-cta-fix{
  width:min(1180px,92vw)!important;
  margin:42px auto!important;
  padding:clamp(26px,4vw,50px)!important;
  overflow:hidden!important;
  text-align:center!important;
}
.bt-cta-fix .bt-title{
  max-width:980px!important;
  margin:0 auto 14px!important;
  font-size:clamp(38px,5.6vw,78px)!important;
  line-height:.95!important;
  letter-spacing:-.055em!important;
  overflow-wrap:normal!important;
  word-break:normal!important;
}
.bt-cta-fix p{
  max-width:820px!important;
  margin:0 auto 20px!important;
  font-size:clamp(16px,1.5vw,21px)!important;
  line-height:1.45!important;
}
.bt-cta-fix .bt-btn{
  margin-inline:auto!important;
}

.bt-zoomable,
.bt-gallery-item img{
  cursor:zoom-in;
}

.bt-live-gallery{
  width:min(1500px,94vw);
  margin:48px auto 34px;
  padding:28px 0;
  border-top:1px solid rgba(244,179,27,.28);
  border-bottom:1px solid rgba(244,179,27,.28);
  overflow:hidden;
}
.bt-live-gallery h2{
  margin:10px 0 20px;
  font-size:clamp(38px,5vw,72px);
  line-height:.95;
  color:#fff2df;
  letter-spacing:-.055em;
}
.bt-marquee{
  width:100%;
  overflow:hidden;
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.bt-marquee-track{
  display:flex;
  gap:18px;
  width:max-content;
  animation:btMoveGallery 42s linear infinite;
}
.bt-marquee:hover .bt-marquee-track{
  animation-play-state:paused;
}
.bt-live-shot{
  width:clamp(240px,24vw,420px);
  aspect-ratio:4/3;
  padding:0;
  border:1px solid rgba(244,179,27,.36);
  border-radius:24px;
  overflow:hidden;
  background:#050100;
  cursor:zoom-in;
  box-shadow:0 22px 60px rgba(0,0,0,.42);
}
.bt-live-shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease, filter .35s ease;
}
.bt-live-shot:hover img{
  transform:scale(1.06);
  filter:saturate(1.1) contrast(1.05);
}
@keyframes btMoveGallery{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

.bt-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(0,0,0,.92);
  backdrop-filter:blur(10px);
}
.bt-lightbox.open{
  display:flex;
}
.bt-lightbox img{
  max-width:min(1200px,96vw);
  max-height:88vh;
  object-fit:contain;
  border-radius:18px;
  border:1px solid rgba(244,179,27,.42);
  box-shadow:0 0 90px rgba(244,179,27,.18);
}
.bt-lightbox-close{
  position:fixed;
  top:18px;
  right:18px;
  width:52px;
  height:52px;
  border-radius:50%;
  border:1px solid rgba(244,179,27,.5);
  background:rgba(0,0,0,.72);
  color:#ffe7a6;
  font-size:34px;
  line-height:1;
  cursor:pointer;
}

@media(max-width:650px){
  .bt-cta-fix{
    padding:26px 18px!important;
    border-radius:26px!important;
  }
  .bt-cta-fix .bt-title{
    font-size:clamp(34px,11vw,52px)!important;
  }
  .bt-live-gallery{
    width:94vw;
    margin:34px auto 26px;
  }
  .bt-marquee-track{
    gap:12px;
    animation-duration:34s;
  }
  .bt-live-shot{
    width:78vw;
    border-radius:18px;
  }
}
