:root {
  --primary-color: #9369b9;
  --accent-color: #cd9356;
  --text-dark: #1a1a1a;
  --white: #ffffff;
}

.extra-life {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}

.extra-life__title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.extra-life__card {
  height: 100%;
  padding: 30px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extra-life__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(147, 105, 185, 0.2);
}

.extra-life__card--main {
  background-color: #9369b9;
}

.extra-life__card--accent {
  background-color: #a47ecc;
}

.extra-life__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.extra-life__card-text {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 0;
}

.extra-life__swiper {
  overflow: visible !important;
}

.extra-life__swiper .swiper-slide {
  border-radius: 35px;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.extra-life__swiper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 35px;
  cursor: pointer;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.extra-life__swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Pagination */
.extra-life__pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  gap: 12px;
}

.extra-life__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #e1e1e1;
  opacity: 1;
  margin: 0 !important;
  transition: all 0.3s ease;
}

.extra-life__pagination .swiper-pagination-bullet-active {
  background: #9369b9;
  transform: scale(1.2);
}

/* Navigation Buttons */
.extra-life__btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
}

.extra-life__btn:active {
  transform: scale(0.92);
}

.extra-life__btn--prev {
  background-color: #cd9356;
}

.extra-life__btn--prev:hover {
  background-color: #b87f48;
  transform: translateY(-2px);
}

.extra-life__btn--next {
  background-color: #7d59a8;
}

.extra-life__btn--next:hover {
  background-color: #6a4b91;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .extra-life__title {
    font-size: 2.5rem;
  }
  .extra-life__swiper img {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .extra-life__title {
    font-size: 2rem;
  }
  .extra-life__card {
    padding: 20px;
  }
  .extra-life__swiper img {
    height: 300px;
  }
  .extra-life__controls {
    flex-direction: column-reverse;
    gap: 20px;
  }
}