body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overscroll-behavior-y: contain; */
  background-color: black;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

#mobileMain {
    background-color: black;
}

.slider-wrapper.axis-vertical {
    height: 98vh !important;
}

.slider-wrapper.axis-horizontal {
    height: 94vh !important;
}

span {
    margin-left: 10px;
}

.bounce-logo {
  animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* jump height */
  }
}

#scrollButton {
  color: "#7b2cbf";
  border: "2px solid #7b2cbf";
  border-radius: "50px";
  padding: "10px";
  position: "fixed";
  right: "400px";
  top: "60px";
  cursor: "pointer";
}

.hashtagChips {
  margin: "10px";
  font-weight: "bolder";
}

.hashtagChipsSelected {
  margin: "10px";
  font-weight: "bolder";
  background-color: "#7b2cbf";
  color: "white";
}

.mobilevideo_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  /* margin-top: 50px; */
  z-index: 100000000;
  /* margin-left: 500px; */
}

.mobileplayer__wrapper {
  position: relative;
}

.mobileplayer {
  /* border: 1px solid #7b2cbf; */
  border-radius: 5px;
  object-fit: cover;
  padding: 0;
  margin: 0;
  background-color: black;
}

h2 {
  color: #7b2cbf;
}


.css-m9glnp-MuiPaper-root-MuiDialog-paper {
  background-color: transparent;
}



@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

::-webkit-scrollbar {
  display: none;
}

p {
    color: white
}

.terms-div {
    height: 98vh;
    overflow: scroll;
    padding-right: 5%;
    padding-left: 5%;
}

.rules-div {
    height: 98vh;
    overflow: scroll;
    padding-right: 5%;
    padding-left: 5%;

    li {
        color: white;
    }
}


.like-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2); /* Optional: slightly darken the background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    pointer-events: none; /* Ensures clicks pass through the overlay */
    overflow: hidden;
  }
  
  .floating-like {
    position: absolute;
    width: 50px;
    height: 50px;
    animation: float 1.5s ease-out forwards, fadeOut 1.5s ease-out forwards;
    opacity: 0;
    
  }
  
  /* Define the floating animation */
  @keyframes float {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-500px);
    }
  }
  
  /* Define the fade-out animation */
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  /* Randomize the floating positions of the likes */
  .floating-like:nth-child(1) { left: 10%; }
  .floating-like:nth-child(2) { left: 20%; }
  .floating-like:nth-child(3) { left: 30%; }
  .floating-like:nth-child(4) { left: 40%; }
  .floating-like:nth-child(5) { left: 50%; }
  .floating-like:nth-child(6) { left: 60%; }
  .floating-like:nth-child(7) { left: 70%; }
  .floating-like:nth-child(8) { left: 80%; }
  .floating-like:nth-child(9) { left: 90%; }
  .floating-like:nth-child(10) { left: 5%; }
  .floating-like:nth-child(11) { left: 15%; }
  .floating-like:nth-child(12) { left: 25%; }
  .floating-like:nth-child(13) { left: 35%; }
  .floating-like:nth-child(14) { left: 45%; }
  .floating-like:nth-child(15) { left: 55%; }
  .floating-like:nth-child(16) { left: 65%; }
  .floating-like:nth-child(17) { left: 75%; }
  .floating-like:nth-child(18) { left: 85%; }
  .floating-like:nth-child(19) { left: 95%; }
  .floating-like:nth-child(20) { left: 50%; }
  
.loading-icon {
    position: relative;
    width: 24px;
    height: 24px;
  }
  
  .icon-top,
  .icon-bottom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: spin 1s infinite linear alternate;
  }
  
  .icon-bottom {
    animation-delay: 0.5s;
  }
  
  @keyframes spin {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
.splash-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  background-color: #111;
}

.loading-text {
  color: white;
  margin-bottom: 10px;
}

.loading-dots {
  display: flex;
  gap: 8px;
}

.loading-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
  display: block;
  animation: dotJump 0.6s infinite ease-in-out;
}

/* Delay for each dot */
.loading-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

/* Jump animation */
@keyframes dotJump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* .slider-wrapper.axis-vertical {
    height: 744px;
  } */

  
  
