html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: #d5145a;
  border-radius: 4px;
}

.swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
  transform: scale(0.8);
  opacity: 0.7;
}

.screenshotSwiper .swiper-slide-active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
}

.screenshotSwiper .swiper-slide img {
  max-width: 100%;
  max-height: 600px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
}

.screenshotSwiper .swiper-slide-active img {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: scale(1.3);
}

.swiper-button-next {
  background-color: #d5145a;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev {
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next {
  background-image: url("assets/arrowwhite.png");
  right: -20px;
}

.swiper-button-prev {
  background-image: url("assets/arrowblack.png");
  left: -20px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

@media (min-width: 768px) {
  .swiper-button-next {
    right: -30px;
  }

  .swiper-button-prev {
    left: -30px;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(90px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(-90px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes rotate90 {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes btnGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn-gradient-animation {
  background: linear-gradient(270deg, #d5145a, #61102e);
  background-size: 200% 200%;

  animation: btnGradient 4s ease infinite;
}
.zoom-in {
  animation: zoomIn 1s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 1s ease-out forwards;
  animation-delay: 0.5s;
}

.slide-in-right {
  animation: slideInRight 1s ease-out forwards;
  animation-delay: 0.5s;
}

.rotate-card {
  animation: rotate90 4s ease-in-out infinite;
}

.gradient-bg {
  background: linear-gradient(45deg, #fc6464, #fee396);
  background-size: 200% 200%;
  animation: gradientMove 5s ease infinite;
}

#mobile-menu {
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

#mobile-menu.active {
  transform: translateX(0);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  z-index: 40;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .slide-in-left {
    left: -30% !important;
  }
  .slide-in-right {
    right: -30% !important;
  }
}

@media (max-width: 768px) {
  .slide-in-left {
    left: -20% !important;
  }
  .slide-in-right {
    right: -20% !important;
  }
}

@media (max-width: 640px) {
  .slide-in-left {
    left: 10% !important;
  }
  .slide-in-right {
    right: 10% !important;
  }
}

.card-flip {
  perspective: 1000px;
  height: 100%;
}

.card-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card-flip:hover .card-flip-inner {
  transform: rotateY(180deg);
}

.card-flip-front,
.card-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 0.5rem;
}

.card-flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #d5145a, #260713);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  color: white;
}

.card-flip-back h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.card-flip-back p {
  text-align: center;
  opacity: 0.9;
}

.feature-card {
  perspective: 1000px;
  min-height: 200px;
  cursor: pointer;
}

.feature-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.feature-card.flipped .feature-card-inner {
  transform: rotateY(180deg);
}

.feature-card-front,
.feature-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 0.5rem;
}

.feature-card-back {
  transform: rotateY(180deg);
}

.feature-card.bg-primary .feature-card-front,
.feature-card.bg-primary .feature-card-back {
  background: var(--primary-color);
}

.feature-card.bg-white .feature-card-front,
.feature-card.bg-white .feature-card-back {
  background: white;
}

.lowbg {
  width: 100%;
  background: linear-gradient(to bottom, #655632 20%, #000000 80%);
  height: 100px;
}
