/* Hero Section */
#hero-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#center-line {
  background: #0a2447;
  overflow: hidden;
  width: 220px;
  height: 15px;
  border-radius: 10px;
  position: relative;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
}

/* Footer CTA Section */
.arrow {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.swipe-area {
  position: relative;
  width: 100%;
  height: 75px;
  background: #eee;
  border-radius: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  overflow: hidden;
  margin-top: 50px;
}

.gradient-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: 75px 0 0 75px;
  background: linear-gradient(
    135deg,
    #ffd84d 0%,
    #fce76c 25%,
    #c4fefd 60%,
    #00c1b5 100%
  );
  pointer-events: none;
}

.draggable-arrow {
  width: 75px;
  height: 75px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  user-select: none;
  transition: transform 0.3s ease;
  z-index: 10;
}

.draggable-arrow.dragging {
  transition: none;
  transform-origin: center;
}

/* News & Insights Star Section */
@media (max-width: 768px) {
  .fun-fact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .fun-fact__item {
    min-width: 90%;
    width: 90%;
    max-width: 90%;
  }
}
