.pvp-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* TITULO */

.pvp-title {
  text-align: center;
  font-size: 42px;
  color: #ff2b2b;
  margin-bottom: 40px;
  text-shadow: 0 0 15px rgba(255,0,0,0.6);
}

/* BOTÕES */

.class-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.class-btn {
  padding: 12px 24px;
  border: 1px solid #700000;
  background: rgba(20,0,0,0.7);
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 16px;
}

.class-btn:hover {
  border-color: #ff2b2b;
  box-shadow: 0 0 15px rgba(255,0,0,0.5);
}

.class-btn.active {
  background: #a50000;
  border-color: #ff2b2b;
  box-shadow: 0 0 20px rgba(255,0,0,0.6);
}

/* CARD */

.class-content {
  background: linear-gradient(145deg, #0b0000, #1a0000);
  border: 1px solid #500000;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(255,0,0,0.25);
  animation: fade 0.3s ease;
}

.class-content h2 {
  text-align: center;
  color: #ff2b2b;
  margin-bottom: 30px;
  font-size: 36px;
}

/* IMAGEM PRINCIPAL */

.main-character {
  width: 55%;
  height: 450px;

  margin: 0 auto 30px auto;

  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #700000;
}

.main-character img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GALERIA + VIDEO */

.media-section {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}

/* MINI GALERIA */

.mini-gallery {
  width: 160px;

  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mini-gallery img {
  width: 90%;
  height: 130px;

  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #500000;
  cursor: pointer;
  transition: 0.2s;
}

.mini-gallery img:hover {
  transform: scale(1.03);
  border-color: #ff2b2b;
  box-shadow: 0 0 15px rgba(255,0,0,0.5);
}

/* VIDEO */

.video-area {
  flex: 1;
}

.video-area iframe {
  width: 100%;
  height: 390px;
  border-radius: 15px;
  border: 1px solid #700000;
}

/* DESCRIÇÃO */

.class-description {
  background: rgba(0,0,0,0.35);
  border: 1px solid #500000;
  padding: 20px;
  border-radius: 15px;
}

.class-description p {
  color: #ddd;
  line-height: 1.6;
  font-size: 16px;
}



.combo-selector {
  position: relative;
  width: fit-content;
  margin: 0 auto 30px auto;
}

.combo-button {
  padding: 12px 25px;

  background: linear-gradient(145deg, #300000, #520000);

  border: 1px solid #700000;
  border-radius: 12px;

  color: #fff;
  font-weight: bold;
  font-size: 15px;

  cursor: pointer;
  transition: 0.2s;

  box-shadow: 0 0 12px rgba(255,0,0,0.25);
}

.combo-button:hover {
  border-color: #ff2b2b;
  box-shadow: 0 0 18px rgba(255,0,0,0.5);
}

/* DROPDOWN */

.combo-dropdown {
  position: absolute;

  top: 110%;
  left: 0;

  width: 100%;

  background: #120000;

  border: 1px solid #600000;
  border-radius: 12px;

  overflow: hidden;

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition: 0.2s;

  z-index: 999;
}

/* MOSTRAR */

.combo-selector:hover .combo-dropdown {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

/* OPÇÕES */

.combo-option {
  padding: 12px 18px;

  color: #ddd;

  cursor: pointer;

  transition: 0.2s;
}

.combo-option:hover {
  background: #2a0000;
  color: #ff2b2b;
}

/* ANIMAÇÃO */

@keyframes fade {
  from {
    opacity: 0.5;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVO */

@media(max-width: 900px) {

  .media-section {
    flex-direction: column;
  }

  .mini-gallery {
    width: 100%;
    flex-direction: row;
  }

  .mini-gallery img {
    height: 100px;
  }

  .main-character {
    height: 350px;
  }

}