
.slider-container[data-v-761f14a7] {
  position: relative;
  width: var(--v11f1a63a);
  height: var(--v5fe114ac);
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.slider-container--skeleton[data-v-761f14a7] {
  background: rgb(0 0 0 / 0.15);
}
.slider-wrapper[data-v-761f14a7] {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-slide[data-v-761f14a7] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-slide.active[data-v-761f14a7] {
  opacity: 1;
  z-index: 2;
}
.slider-slide.prev[data-v-761f14a7] {
  opacity: 0.3;
  z-index: 1;
}
.slider-slide.next[data-v-761f14a7] {
  opacity: 0.3;
  z-index: 1;
}

/* Animation-specific transitions */
.slider-slide[style*="fade"][data-v-761f14a7] {
  transition: opacity 0.8s ease-in-out;
}
.slider-slide[style*="slide"][data-v-761f14a7] {
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}
.slider-slide[style*="zoom"][data-v-761f14a7] {
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}
.slider-slide[style*="bounce"][data-v-761f14a7] {
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.8s ease-in-out;
}
.slider-slide[style*="flip"][data-v-761f14a7] {
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
  transform-style: preserve-3d;
}
.slider-content[data-v-761f14a7] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.slider-text[data-v-761f14a7] {
  text-align: center;
  color: white;
  max-width: 600px;
}
.slider-title[data-v-761f14a7] {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: slideInDown-761f14a7 1s ease-out;
}
.slider-description[data-v-761f14a7] {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 0 30px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: slideInUp-761f14a7 1s ease-out 0.3s both;
}
.slider-button[data-v-761f14a7] {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  animation: slideInUp-761f14a7 1s ease-out 0.6s both;
}
.slider-button[data-v-761f14a7]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}
.slider-image[data-v-761f14a7] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slider-image img[data-v-761f14a7] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Navigation Dots */
.slider-dots[data-v-761f14a7] {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}
.dot[data-v-761f14a7] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot[data-v-761f14a7]:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}
.dot.active[data-v-761f14a7] {
  background: white;
  transform: scale(1.3);
}

/* Navigation Arrows */
.slider-arrows[data-v-761f14a7] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 4;
  pointer-events: none;
}
.arrow[data-v-761f14a7] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}
.arrow[data-v-761f14a7]:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}
.arrow-prev[data-v-761f14a7] {
  left: 20px;
}
.arrow-next[data-v-761f14a7] {
  right: 20px;
}

/* Progress Bar */
.slider-progress[data-v-761f14a7] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 4;
}
.progress-bar[data-v-761f14a7] {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 0.1s linear;
}

/* Animations */
@keyframes slideInDown-761f14a7 {
from {
    opacity: 0;
    transform: translateY(-30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes slideInUp-761f14a7 {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Responsive Design */
@media (max-width: 768px) {
.slider-title[data-v-761f14a7] {
    font-size: 1.8rem;
}
.slider-description[data-v-761f14a7] {
    font-size: 0.7rem;
}
.slider-button[data-v-761f14a7] {
    padding: 12px 24px;
    font-size: 0.7rem;
}
.slider-content[data-v-761f14a7] {
    padding: 20px;
}
.arrow[data-v-761f14a7] {
    width: 40px;
    height: 40px;
    font-size: 0.7rem;
}
.arrow-prev[data-v-761f14a7] {
    left: 10px;
}
.arrow-next[data-v-761f14a7] {
    right: 10px;
}
.slider-dots[data-v-761f14a7] {
    bottom: 20px;
}
.dot[data-v-761f14a7] {
    width: 10px;
    height: 10px;
}
}

/* Touch support for mobile */
@media (hover: none) {
.slider-container[data-v-761f14a7] {
    touch-action: pan-y pinch-zoom;
}
.arrow[data-v-761f14a7]:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1);
}
.dot[data-v-761f14a7]:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1);
}
}

/* Accessibility */
.slider-container[data-v-761f14a7]:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}
.arrow[data-v-761f14a7]:focus,
.dot[data-v-761f14a7]:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
.slider-content[data-v-761f14a7] {
    background: rgba(0, 0, 0, 0.9);
}
.slider-button[data-v-761f14a7] {
    background: white;
    color: black;
}
.dot[data-v-761f14a7] {
    background: rgba(255, 255, 255, 0.8);
}
.dot.active[data-v-761f14a7] {
    background: white;
}
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
.slider-slide[data-v-761f14a7] {
    transition: opacity 0.3s ease;
}
.slider-title[data-v-761f14a7],
  .slider-description[data-v-761f14a7],
  .slider-button[data-v-761f14a7] {
    animation: none;
}
.arrow[data-v-761f14a7]:hover,
  .dot[data-v-761f14a7]:hover {
    transform: none;
}
}
