/* ===== GLOBAL CRYPTO GATHERINGS (from deepcoin.com/en) ===== */
.gatherings-section{
  padding:80px 0 72px;
  overflow:hidden;
  background:linear-gradient(180deg,rgba(14,18,23,0) 0%,rgba(17,22,29,.35) 50%,rgba(14,18,23,0) 100%);
}
.gatherings-head{
  max-width:1200px;
  margin:0 auto 40px;
  padding:0 20px;
}
.gatherings-slogan{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 12px;
  font-size:18px;
  font-weight:500;
  line-height:28px;
  color:#9aa3af;
}
.gatherings-slogan svg{flex-shrink:0;color:#FE7701}
.gatherings-head h2{
  margin:0;
  font-size:clamp(28px,4vw,40px);
  font-weight:700;
  line-height:1.15;
  letter-spacing:-.4px;
  color:var(--text);
}

.gatherings-news-wrap{
  margin:0 0 48px;
  height:min(432px,58vw);
  min-height:220px;
}
.gatherings-news-wrap .marquee-track{
  height:100%;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  transform:translateZ(0);
}
.gatherings-news-wrap .marquee-inner{
  display:flex;
  align-items:stretch;
  gap:24px;
  width:max-content;
  height:100%;
  transform:translate3d(0,0,0);
  will-change:transform;
  backface-visibility:hidden;
}
.gatherings-event-card{
  flex-shrink:0;
  height:100%;
  border-radius:16px;
  overflow:hidden;
  background:#191f28;
  border:1px solid rgba(50,58,69,.45);
  box-shadow:0 12px 40px rgba(0,0,0,.22);
  contain:layout paint;
  transform:translateZ(0);
  backface-visibility:hidden;
}
.gatherings-event-card img{
  display:block;
  height:100%;
  width:auto;
  max-width:none;
  object-fit:cover;
  border-radius:16px;
  transition:transform .35s ease;
  transform:translateZ(0);
  backface-visibility:hidden;
}
.gatherings-event-card:hover img{transform:scale(1.03)}

.gatherings-logos{
  max-width:1200px;
  margin:0 auto;
  padding:0 12px;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.gatherings-logos .marquee-track{
  overflow:hidden;
  height:48px;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  transform:translateZ(0);
}
.gatherings-logos .marquee-inner{
  display:flex;
  align-items:center;
  gap:40px;
  width:max-content;
  transform:translate3d(0,0,0);
  will-change:transform;
  backface-visibility:hidden;
}
.gatherings-logo{
  flex-shrink:0;
  width:176px;
  height:48px;
  background-position:50%;
  background-repeat:no-repeat;
  background-size:contain;
  filter:grayscale(100%);
  opacity:.55;
  transition:filter .3s ease,opacity .3s ease;
}
.gatherings-logos .marquee-track:hover .gatherings-logo{
  filter:grayscale(100%);
  opacity:.55;
}
.gatherings-logo:hover{
  filter:grayscale(0) !important;
  opacity:1 !important;
}

.marquee-animate{
  animation-timing-function:linear;
  animation-iteration-count:infinite;
  animation-fill-mode:both;
  will-change:transform;
}
@keyframes gatheringsMarqueeLeft{
  0%{transform:translate3d(0,0,0)}
  100%{transform:translate3d(-50%,0,0)}
}
@keyframes gatheringsMarqueeRight{
  0%{transform:translate3d(-50%,0,0)}
  100%{transform:translate3d(0,0,0)}
}

@media(max-width:767px){
  .gatherings-section{padding:56px 0 48px}
  .gatherings-head{margin-bottom:28px}
  .gatherings-slogan{font-size:14px;line-height:22px}
  .gatherings-news-wrap{
    height:min(288px,70vw);
    min-height:200px;
    margin-bottom:32px;
  }
  .gatherings-news-wrap .marquee-inner{gap:14px}
  .gatherings-logos .marquee-track{height:40px}
  .gatherings-logo{width:140px;height:40px}
  .gatherings-logos .marquee-inner{gap:28px}
}
