/*==============================
=         BASE STYLES         =
==============================*/
.about-unified-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/img/custon/fondo 2.jpeg') no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}

.about-unified-section-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 20px;
}

.text-content {
  max-width: 450px;
}

.text-content h1 {
  color: white;
  font-size: 2.5rem;
  font-family: 'dietherRound', sans-serif;
  margin-bottom: 20px;
}

.text-content p {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Manrope', sans-serif;
}

/*==============================
=         GAMEPLAY CARDS      =
==============================*/
.gameplay-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  z-index: 2;
  position: relative;
  padding: 0 20px;
}

.gameplay-cards img {
  width: 400px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 50px;
  transition: transform 0.3s ease;
}

.gameplay-cards img:hover {
  transform: scale(1.03);
}

/*==============================
=         CAROUSEL            =
==============================*/
.art-carousel {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.3);
  color: white;
  border: none;
  font-size: 2.5rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.carousel-btn.left { left: 20px; }
.carousel-btn.right { right: 20px; }


/*==============================
=         RESPONSIVE          =
==============================*/
@media (max-width: 1024px) {
  .about-unified-section {
    padding: 100px 20px;
  }

  .text-content {
    text-align: center;
  }

  .text-content h1 {
    font-size: 2.2rem;
  }

  .gameplay-cards {
    justify-content: center;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-unified-section {
    padding: 80px 15px;
  }

  .text-content h1 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 0.95rem;
  }

  .gameplay-cards {
    flex-direction: column;
    align-items: center;
  }

  .carousel-btn {
    font-size: 2rem;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .about-unified-section {
    padding: 60px 10px;
  }

  .text-content h1 {
    font-size: 1.8rem;
  }

  .text-content p {
    font-size: 0.9rem;
  }

  .gameplay-cards img {
    border-radius: 30px;
  }

  .carousel-btn {
    font-size: 1.8rem;
    padding: 6px 10px;
  }
}

@media (max-width: 360px) {
  .text-content h1 {
    font-size: 1.6rem;
  }

  .text-content p {
    font-size: 0.85rem;
  }

  .carousel-btn {
    font-size: 1.5rem;
  }
}
