/* [project]/components/HeroSlider.css [app-client] (css) */
.hero-slider {
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y pinch-zoom;
  direction: rtl;
  border-radius: 24px;
  width: 100%;
  max-width: 1400px;
  height: clamp(420px, 50vh, 560px);
  min-height: 420px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slider-background {
  z-index: 0;
  transition: background .6s;
  position: absolute;
  inset: 0;
}

.hero-slider.tone-blue .slider-background {
  background: linear-gradient(135deg, #0c1929 0%, #1a365d 50%, #0f172a 100%);
}

.hero-slider.tone-amber .slider-background {
  background: linear-gradient(135deg, #1c1917 0%, #451a03 50%, #1c1917 100%);
}

.hero-slider.tone-purple .slider-background {
  background: linear-gradient(135deg, #1e1b2e 0%, #4c1d95 50%, #1e1b2e 100%);
}

.slides-container {
  will-change: transform;
  direction: ltr;
  flex-direction: row-reverse;
  height: 100%;
  display: flex;
}

.slide {
  box-sizing: border-box;
  direction: rtl;
  flex: 0 0 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  position: relative;
}

.slide-content {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  position: relative;
}

.slide-text {
  flex-direction: column;
  flex: 1;
  gap: 16px;
  max-width: 500px;
  display: flex;
}

.slide-visual {
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.slide-badge {
  color: #60a5fa;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #3b82f633;
  border: 1px solid #3b82f64d;
  border-radius: 20px;
  align-items: center;
  width: fit-content;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.slide-badge.amber {
  color: #fbbf24;
  background: #fbbf2433;
  border-color: #fbbf244d;
}

.slide-badge.purple {
  color: #a78bfa;
  background: #a78bfa33;
  border-color: #a78bfa4d;
}

.slide-title {
  color: #fff;
  text-shadow: 0 2px 20px #0000004d;
  margin: 0;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.3;
}

.slide-desc {
  color: #ffffffbf;
  margin: 0;
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.7;
}

.slide-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  display: flex;
}

.btn-primary, .btn-secondary {
  cursor: pointer;
  border: none;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 4px 20px #3b82f666;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px #3b82f680;
}

.btn-primary.amber {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 20px #f59e0b66;
}

.btn-primary.amber:hover {
  box-shadow: 0 6px 30px #f59e0b80;
}

.btn-primary.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 4px 20px #8b5cf666;
}

.btn-primary.purple:hover {
  box-shadow: 0 6px 30px #8b5cf680;
}

.btn-secondary {
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff1a;
  border: 1px solid #fff3;
}

.btn-secondary:hover {
  background: #ffffff26;
  border-color: #ffffff4d;
  transform: translateY(-2px);
}

.fortnite-carousel {
  cursor: pointer;
  width: 340px;
  height: 340px;
  position: relative;
}

.fortnite-glow {
  pointer-events: none;
  background: radial-gradient(circle, #3b82f64d 0%, #0000 70%);
  animation: 3s ease-in-out infinite pulse-glow;
  position: absolute;
  inset: -20%;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: .5;
    transform: scale(1);
  }

  50% {
    opacity: .8;
    transform: scale(1.05);
  }
}

.fortnite-item {
  opacity: 0;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  transition: all .5s cubic-bezier(.32, .72, 0, 1);
  display: flex;
  position: absolute;
  inset: 0;
  transform: scale(.85)rotate(-5deg);
}

.fortnite-item.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1)rotate(0);
}

.fortnite-item img {
  object-fit: contain;
  filter: drop-shadow(0 20px 40px #0006);
  width: 100%;
  height: 100%;
}

.fortnite-label {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  background: #0009;
  border: 1px solid #ffffff1a;
  border-radius: 30px;
  padding: 10px 24px;
  transition: all .3s;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.fortnite-label span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.fortnite-label:hover {
  background: #3b82f64d;
  border-color: #3b82f680;
}

.fortnite-dots {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 10;
  background: #00000080;
  border-radius: 20px;
  gap: 6px;
  padding: 6px 12px;
  display: flex;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.fortnite-dot {
  cursor: pointer;
  background: #fff6;
  border: none;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  padding: 0;
  transition: all .3s;
}

.fortnite-dot.active {
  background: #3b82f6;
  border-radius: 10px;
  width: 18px;
}

.fortnite-dot:hover:not(.active) {
  background: #ffffffb3;
}

.social-image-wrapper {
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 340px;
  display: flex;
  position: relative;
}

.social-image-wrapper img {
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 20px 40px #0006);
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: relative;
}

.social-glow {
  pointer-events: none;
  background: radial-gradient(circle, #fbbf2459 0%, #0000 70%);
  animation: 3s ease-in-out infinite pulse-glow;
  position: absolute;
  inset: -40%;
}

.social-actions {
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  color: #fff;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.social-btn svg {
  width: 22px;
  height: 22px;
}

.social-btn.telegram {
  background: linear-gradient(135deg, #08c 0%, #06a 100%);
  box-shadow: 0 8px 24px #08c6;
}

.social-btn.telegram:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px #0088cc80;
}

.social-btn.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 8px 24px #e1306c66;
}

.social-btn.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px #e1306c80;
}

.promo-visual {
  position: relative;
}

.promo-badge-container {
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 260px;
  display: flex;
  position: relative;
}

.promo-glow {
  pointer-events: none;
  background: radial-gradient(circle, #8b5cf64d 0%, #0000 70%);
  animation: 2s ease-in-out infinite pulse-glow;
  position: absolute;
  inset: -30%;
}

.promo-badge {
  z-index: 2;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  animation: 3s ease-in-out infinite float;
  display: flex;
  position: relative;
  box-shadow: 0 20px 60px #8b5cf666, inset 0 -4px 20px #0003, inset 0 4px 20px #fff3;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.promo-percent {
  color: #fff;
  text-shadow: 0 2px 10px #0000004d;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.promo-text {
  color: #ffffffe6;
  margin-top: 4px;
  font-size: 20px;
  font-weight: 700;
}

.promo-particles {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.particle {
  width: 10px;
  height: 10px;
  animation: 3s ease-in-out infinite particle-float;
  animation-delay: calc(var(--i) * .5s);
  background: #8b5cf699;
  border-radius: 50%;
  position: absolute;
}

.particle:first-child {
  top: 10%;
  left: 20%;
}

.particle:nth-child(2) {
  top: 20%;
  right: 10%;
}

.particle:nth-child(3) {
  bottom: 30%;
  left: 10%;
}

.particle:nth-child(4) {
  bottom: 10%;
  right: 20%;
}

.particle:nth-child(5) {
  top: 50%;
  left: 5%;
}

.particle:nth-child(6) {
  top: 40%;
  right: 5%;
}

@keyframes particle-float {
  0%, 100% {
    opacity: .6;
    transform: translateY(0)scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-20px)scale(1.2);
  }
}

.nav-arrow {
  z-index: 10;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  background: #ffffff1a;
  border: 1px solid #ffffff26;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero-slider:hover .nav-arrow {
  opacity: 1;
}

.nav-arrow:hover {
  background: #fff3;
  border-color: #ffffff4d;
  transform: translateY(-50%)scale(1.1);
}

.nav-prev {
  right: 16px;
}

.nav-next {
  left: 16px;
}

.slider-dots {
  z-index: 10;
  gap: 12px;
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  position: relative;
}

.dot-progress {
  width: 100%;
  height: 100%;
  position: absolute;
  transform: rotate(-90deg);
}

.dot-bg {
  fill: none;
  stroke: #fff3;
  stroke-width: 2px;
}

.dot-fill {
  fill: none;
  stroke: #fff;
  stroke-width: 2.5px;
  stroke-linecap: round;
  stroke-dasharray: 100.53;
  animation: none;
}

@keyframes dot-progress-fill {
  from {
    stroke-dashoffset: 100.53px;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.dot-inner {
  z-index: 1;
  background: #fff6;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transition: all .3s;
}

.dot.active .dot-inner {
  background: #fff;
  transform: scale(1.1);
}

.dot:hover .dot-inner {
  background: #ffffffb3;
}

@media (max-width: 1024px) {
  .slide-content {
    gap: 40px;
  }

  .fortnite-carousel {
    width: 280px;
    height: 280px;
  }

  .social-image-wrapper {
    width: 240px;
    height: 240px;
  }

  .promo-badge-container {
    width: 200px;
    height: 200px;
  }

  .promo-badge {
    width: 140px;
    height: 140px;
  }

  .promo-percent {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    border-radius: 16px;
    height: auto;
    min-height: 420px;
  }

  .slide {
    align-items: flex-start;
    padding: 24px 16px 60px;
  }

  .slide-content {
    text-align: center;
    justify-content: flex-start;
    gap: 20px;
    flex-direction: column-reverse !important;
  }

  .slide-text {
    align-items: center;
    max-width: 100%;
  }

  .slide-actions {
    justify-content: center;
  }

  .fortnite-carousel {
    width: 220px;
    height: 220px;
  }

  .fortnite-label {
    display: none;
  }

  .social-image-wrapper {
    width: 210px;
    height: 210px;
  }

  .social-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .vouches-visual {
    width: 100%;
    max-width: 320px;
    height: 260px;
  }

  .vouch-strip {
    width: 70px;
  }

  .promo-badge-container {
    width: 180px;
    height: 180px;
  }

  .promo-badge {
    width: 120px;
    height: 120px;
  }

  .promo-percent {
    font-size: 28px;
  }

  .promo-text {
    font-size: 14px;
  }

  .nav-arrow {
    opacity: .7;
    width: 40px;
    height: 40px;
  }

  .hero-slider:hover .nav-arrow {
    opacity: 1;
  }

  .nav-prev {
    right: 10px;
  }

  .nav-next {
    left: 10px;
  }

  .slider-dots {
    gap: 10px;
    bottom: 16px;
  }

  .dot {
    width: 24px;
    height: 24px;
  }

  .dot-progress {
    display: none;
  }

  .dot-inner {
    width: 10px;
    height: 10px;
  }

  .dot.active .dot-inner {
    background: #fff;
    width: 12px;
    height: 12px;
    box-shadow: 0 0 10px #ffffff80;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    border-radius: 12px;
    min-height: 400px;
  }

  .slide {
    padding: 20px 12px 50px;
  }

  .slide-content {
    gap: 16px;
  }

  .btn-primary, .btn-secondary {
    padding: 11px 18px;
    font-size: 13px;
  }

  .fortnite-carousel, .social-image-wrapper {
    width: 180px;
    height: 180px;
  }

  .social-btn {
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .vouches-visual {
    max-width: 280px;
    height: 220px;
  }

  .vouch-strip {
    width: 60px;
  }

  .promo-badge {
    width: 100px;
    height: 100px;
  }

  .promo-percent {
    font-size: 24px;
  }

  .promo-text {
    font-size: 12px;
  }

  .slide-title {
    font-size: 20px;
  }

  .slide-desc {
    font-size: 13px;
  }
}

.hero-slider.tone-green .slider-background {
  background: linear-gradient(135deg, #0a1f0f 0%, #14532d 50%, #0f1f14 100%);
}

.vouches-visual {
  width: 400px;
  height: 320px;
  position: relative;
}

.vouches-strips-wrapper {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.vouches-strips {
  justify-content: center;
  gap: 8px;
  height: 100%;
  display: flex;
}

.vouch-strip {
  border-radius: 10px;
  flex: none;
  width: 90px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.vouch-strip:before, .vouch-strip:after {
  content: "";
  z-index: 2;
  pointer-events: none;
  height: 40px;
  position: absolute;
  left: 0;
  right: 0;
}

.vouch-strip:before {
  background: linear-gradient(#0a1f0fe6, #0000);
  top: 0;
}

.vouch-strip:after {
  background: linear-gradient(to top, #0a1f0fe6, #0000);
  bottom: 0;
}

.vouch-strip-inner {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.vouch-strip.scroll-up .vouch-strip-inner {
  animation: 25s linear infinite scrollStripUp;
}

.vouch-strip.scroll-down .vouch-strip-inner {
  animation: 30s linear infinite scrollStripDown;
}

@keyframes scrollStripUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollStripDown {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.vouch-card {
  aspect-ratio: 9 / 16;
  background: #0000004d;
  border-radius: 8px;
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
}

.vouch-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.slide-badge.green {
  color: #4ade80;
  background: #22c55e33;
  border-color: #22c55e4d;
}

.btn-primary.green {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  box-shadow: 0 8px 24px #22c55e59;
}

.btn-primary.green:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px #22c55e73;
}

.hero-slider * {
  -webkit-user-drag: none;
}

.hero-slider.dragging {
  scroll-behavior: auto;
}

@media (prefers-contrast: high) {
  .slide-badge {
    border-width: 2px;
  }

  .btn-primary, .btn-secondary {
    border: 2px solid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider, .hero-slider *, .slides-container {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/*# sourceMappingURL=components_HeroSlider_6800cd85.css.map*/