/* ========= SLIDER STYLES ========= */
.astro-slider {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 400px;
  overflow: hidden;
  background: #1a0a20;
  box-sizing: border-box;
  border-radius: 12px;
  margin-bottom: 24px;
}

.astro-slider__container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  width: 100%;
}

.astro-slider__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background: 
    radial-gradient(ellipse at 50% 30%, rgba(138, 43, 226, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(30, 144, 255, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #1a0a20 0%, #2d1b3d 50%, #0f0515 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  overflow: hidden;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.astro-slider__slide--active {
  opacity: 1;
  visibility: visible;
}

.astro-slider__slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='0.5'%3E%3Cpath d='M50 30 L60 50 L50 70 L40 50 Z'/%3E%3Cpath d='M30 40 L40 45 L35 55 L25 50 Z'/%3E%3Cpath d='M70 35 L80 40 L75 50 L65 45 Z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  animation: astro-float 20s linear infinite;
  pointer-events: none;
}

@keyframes astro-float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.astro-slider__content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  animation: astro-slideInLeft 0.8s ease-out;
}

@keyframes astro-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.astro-slider__badge {
  display: inline-block;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid #D4A574;
  border-radius: 25px;
  padding: 8px 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.astro-slider__badge-text {
  color: #D4A574;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.astro-slider__badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
  animation: astro-shine 3s ease-in-out infinite;
}

@keyframes astro-shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.astro-slider__title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 
    0 0 30px rgba(138, 43, 226, 0.5),
    0 0 60px rgba(138, 43, 226, 0.3),
    2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}

.astro-slider__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-weight: 400;
}

.astro-slider__button {
  display: inline-block;
  background: linear-gradient(to bottom right, #1ee92d, #27b14c);
  border: none;
  border-radius: 35px;
  padding: 18px 50px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 15px rgba(233, 30, 99, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.astro-slider__button-wrapper {
  position: relative;
  background: linear-gradient(135deg, #D4A574 0%, #8B6239 100%);
  padding: 3px;
  border-radius: 38px;
  display: inline-block;
}

.astro-slider__button-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.astro-slider__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  border-radius: 35px 35px 0 0;
}

.astro-slider__button-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.astro-slider__image {
  position: relative;
  z-index: 1;
  width: 50%;
  max-width: 600px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: astro-slideInRight 0.8s ease-out;
  flex-shrink: 0;
}

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

.astro-slider__image-placeholder {
  width: 80%;
  max-width: 400px;
  height: 75%;
  max-height: 300px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(30, 144, 255, 0.2) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.astro-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Crown Visual */
.astro-slider__crown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.astro-slider__crown {
  width: 200px;
  height: 160px;
  animation: floatCrown 3s ease-in-out infinite;
}

@keyframes floatCrown {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.astro-slider__vip-tiers {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.astro-slider__tier {
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  animation: pulseTier 2s ease-in-out infinite;
}

.astro-slider__tier--bronze {
  background: linear-gradient(135deg, #cd7f32, #8b4513);
  color: #fff;
  animation-delay: 0s;
}

.astro-slider__tier--silver {
  background: linear-gradient(135deg, #c0c0c0, #808080);
  color: #fff;
  animation-delay: 0.3s;
}

.astro-slider__tier--gold {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #000;
  animation-delay: 0.6s;
}

@keyframes pulseTier {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Sports Visual */
.astro-slider__sports-visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.astro-slider__ball {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #D4A574);
  border-radius: 50%;
  position: relative;
  animation: bounce 2s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.astro-slider__field-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 30px,
    rgba(212, 165, 116, 0.1) 30px,
    rgba(212, 165, 116, 0.1) 31px
  );
}

/* Navigation */
.astro-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(26, 10, 32, 0.8);
  border: 2px solid #D4A574;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.astro-slider__nav:hover {
  background: rgba(212, 165, 116, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.astro-slider__nav--prev {
  left: 20px;
}

.astro-slider__nav--next {
  right: 20px;
}

.astro-slider__nav-arrow {
  width: 0;
  height: 0;
  border-style: solid;
}

.astro-slider__nav--prev .astro-slider__nav-arrow {
  border-width: 8px 12px 8px 0;
  border-color: transparent #D4A574 transparent transparent;
  margin-right: 3px;
}

.astro-slider__nav--next .astro-slider__nav-arrow {
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #D4A574;
  margin-left: 3px;
}

/* Indicators */
.astro-slider__indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.astro-slider__indicator {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.astro-slider__indicator--active {
  background: #D4A574;
  border-color: #D4A574;
  width: 30px;
  border-radius: 15px;
}