.menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  animation: slideIn 0.3s ease-in;
}

.menu-open {
  display: block;
}

.close-btn {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.accordion-content {
  display: none;
}
.scroll {
  scrollbar-width: thin;
  scrollbar-color: #f0f0f0;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 8px;
  background-color: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #0000;
}

.modal-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 125px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

.modal-content {
  background-color: #fff;
  width: 95%;
  max-width: 700px;
  border-radius: 4px;
  padding: 25px;
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

.clip-arrow {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 10;
}

.submenu {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.submenu.show {
  opacity: 1;
  visibility: visible;
}

.insta-shadow {
  box-shadow: -4px 4px 24px rgba(225, 48, 108, 0.44);
}
.twitter-shadow {
  box-shadow: -4px 4px 24px rgba(29, 161, 242, 0.44);
}
.youtube-shadow {
  box-shadow: -4px 4px 24px rgba(255, 0, 0, 0.44);
}
.face-shadow {
  box-shadow: -4px 4px 24px rgba(24, 115, 235, 0.44);
}
.tiktok-shadow {
  box-shadow: -4px 4px 24px rgba(24, 115, 235, 0.44);
}

.accordion-content {
  display: none;
}

.accordion-content2 {
  display: none;
}

.profile {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s ease, transform 1s ease;
}

.profile.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .modal-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
  }
}