@font-face {
  font-family: 'Cygre';
  src:
    url('https://cdn.getcloser.online/fonts/Cygre-Thin.ttf') format('truetype'),
    url('/fonts/Cygre-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cygre';
  src:
    url('https://cdn.getcloser.online/fonts/Cygre-Light.ttf') format('truetype'),
    url('/fonts/Cygre-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cygre';
  src:
    url('https://cdn.getcloser.online/fonts/Cygre-Book.ttf') format('truetype'),
    url('/fonts/Cygre-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cygre';
  src:
    url('https://cdn.getcloser.online/fonts/Cygre-Regular.ttf') format('truetype'),
    url('/fonts/Cygre-Regular.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cygre';
  src:
    url('https://cdn.getcloser.online/fonts/Cygre-Medium.ttf') format('truetype'),
    url('/fonts/Cygre-Medium.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cygre';
  src:
    url('https://cdn.getcloser.online/fonts/Cygre-SemiBold.ttf') format('truetype'),
    url('/fonts/Cygre-SemiBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cygre';
  src:
    url('https://cdn.getcloser.online/fonts/Cygre-Bold.ttf') format('truetype'),
    url('/fonts/Cygre-Bold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cygre';
  src:
    url('https://cdn.getcloser.online/fonts/Cygre-ExtraBold.ttf') format('truetype'),
    url('/fonts/Cygre-ExtraBold.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cygre';
  src:
    url('https://cdn.getcloser.online/fonts/Cygre-Black.ttf') format('truetype'),
    url('/fonts/Cygre-Black.ttf') format('truetype');
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}

html,
body {
  background-color: #313547;
  font-family: 'Cygre', sans-serif !important;
  scroll-behavior: smooth;
}

.neon-text {
  color: #f49ad5;
  text-shadow:
    0 0 10px rgba(167, 1, 84, 0.8),
    0 0 15px rgba(185, 3, 94, 0.6),
    0 0 20px rgba(185, 3, 94, 0.4);
}

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(81, 112, 255, 0.3);
}

.payment-logo {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  max-width: 310px;
  margin: 0 auto;
  border-radius: 30px;
  background: transparent;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 30px;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-prev {
  left: -60px;
}

.carousel-next {
  right: -60px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: rgba(81, 112, 255, 0.8);
  border-color: rgba(255, 102, 196, 0.5);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: linear-gradient(to right, #5170ff, #ff66c4);
  opacity: 1;
  transform: scale(1.2);
}

.carousel-dots .dot:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .neon-text {
    font-size: 3rem;
  }

  .carousel-container {
    max-width: 280px;
  }

  .carousel-slide img {
    max-height: 500px;
    border-radius: 50px;
  }

  .carousel-prev,
  .carousel-next {
    display: none;
  }

  .feature-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    max-width: 260px;
  }

  .carousel-slide img {
    max-height: 450px;
    border-radius: 50px;
  }
}

@media (min-width: 769px) {

  .carousel-prev,
  .carousel-next {
    display: flex;
  }
}

.z-5 {
    z-index: 5;
}