/* ===== HOME-ONLY STYLES ===== */

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, #141311ff, #14131100);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .container img {
  height:100px;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

@media screen and (max-width:991px){
  .hero {
    min-height: 40vh;
  }
  .hero .container img {
    height:70px;
  }
}

/* White Paper */
#whitePaper p {
  font-size:14px;
}

/* Quotes ticker */
#quotes {
  pointer-events: none;
  user-select: none;
}

#quotes .separator {
  height:30px;
}

.quotes {
  overflow: hidden;
  background: #0f0f0f;
  border-radius: var(--radius);
  padding: 0.75rem 0;
}

.quotes__track {
  display: flex;
  gap: 2rem;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: quotes-scroll 45s linear infinite;
}

.quotes__item {
  flex: 0 0 auto;
  display: inline-block;
  white-space: normal;
  color: #ddd;
  font-style: italic;
  opacity: 0.9;
}

@keyframes quotes-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes quotes-scroll-mobile {
  from { transform: translateX(0); }
  to   { transform: translateX(-200%); }
}

@media screen and (max-width:991px) {
  .quotes__track {
    animation: quotes-scroll-mobile 20s linear infinite;
  }
  #whitePaper .section-box {
    padding-bottom:1rem;
  }
}

/* Event cards (home swiper) */
.event-card {
  background: #151515;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease;
  overflow:hidden;
}

.event-card:hover {
  transform: translateY(-6px);
}

.event-card img {
  object-fit: cover;
}

.event-card .eventType {
  height:23px;
  display:block;
}

.event-card h6 {
  padding-bottom:5px;
}

.event-card .gotoDetail{
  color:#000000;
  display:block;
  width:100%;
  text-align:center;
  padding: 10px 0;
  border-radius: 10px;
  background: var(--gradient);
  margin-top: 10px;
  border-radius:0px;
}

.event-card .mini-icon{
  height:15px;
  margin-right:5px;
}

.event-card .mini-icon.arrow{
  margin-right:0px;
  margin-left:10px;
  height:15px;
}

.event-card .detail-wrapper {
  height: 165px;
}
#events .swiper-slide {
  padding-top:10px;
}


/* App download section */
.app-box {
  border-radius: var(--radius);
  padding: 2.5rem;
}

@media screen and (max-width:991px) {
  .app-box {
    padding: 2.5rem 0.5rem;
    padding-bottom:0.5rem
  }
}

/* Join form */

.form-title {
  font-size: 50px;
}

.form .section-box p{
  font-size:20px;
}

.tony_sig {
  height:60px;
}
