@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Poppins', sans-serif;
}

.cart {
  position: relative;
  width: 600px;   /* área maior */
  height: 600px;  /* área maior */
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart img {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit:contain;
  border: 3px solid #f4f4f4;
  
}

/* Imagem central (Ezio) */
.cart img:first-child {
  z-index: 10;
  width: 150px;
  height: 150px;
  border: 3px solid #fff;
}

/* Vilões distribuídos em círculo */
.cart img:nth-child(2)  { transform: rotate(0deg) translate(230px) rotate(0deg); }
.cart img:nth-child(3)  { transform: rotate(36deg) translate(230px) rotate(-36deg); }
.cart img:nth-child(4)  { transform: rotate(72deg) translate(230px) rotate(-72deg); }
.cart img:nth-child(5)  { transform: rotate(108deg) translate(230px) rotate(-108deg); }
.cart img:nth-child(6)  { transform: rotate(144deg) translate(230px) rotate(-144deg); }
.cart img:nth-child(7)  { transform: rotate(180deg) translate(230px) rotate(-180deg); }
.cart img:nth-child(8)  { transform: rotate(216deg) translate(230px) rotate(-216deg); }
.cart img:nth-child(9)  { transform: rotate(252deg) translate(230px) rotate(-252deg); }
.cart img:nth-child(10) { transform: rotate(288deg) translate(230px) rotate(-288deg); }
.cart img:nth-child(11) { transform: rotate(324deg) translate(230px) rotate(-324deg); }

/* Botão "Iniciar" */
.btn {
  position: absolute;
  bottom: -60px;
  background: #e63946;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 1.1em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: #ff4757;
  transform: scale(1.05);
}

.logs {
  width: 600px;
  min-height: 100px;
  background: #ffffff0d;
  border-radius: 10px;
  border: 1px solid #ffffff1a;
  padding: 10px;
}