
 

body {
  font-family: 'Montserrat', sans-serif;
  color: #332217; /* bronze escuro para textos */
  background-color: rgba(0, 0, 0, 0.85); /* fundo preto transparente */
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 40px 20px;
  min-height: 100vh;
}

h1, h3 {
  color: #B88A51; /* dourado envelhecido */
  text-transform: uppercase;
  margin-bottom: 20px;
  cursor: default;
  text-shadow: 0 0 8px #B88A51aa;
  transition: text-shadow 0.3s ease;
}

h1:hover, h3:hover {
  text-shadow: 0 0 12px #B88A51, 0 0 24px #B88A51;
}

h1 {
  font-size: 2.8rem;
  border-bottom: 2px solid #9C4B00; /* laranja queimado */
  padding-bottom: 14px;
  text-align: center;
}

.sub-title {
  text-align: center;
  color: #A5DDF3; /* gelo pálido */
  font-size: 1.3rem;
  margin-top: -10px;
  margin-bottom: 30px;
}

.content-box {
    background-color: rgba(0, 0, 0, 0.07); /* fundo preto transparente */
  border-radius: 16px;
  padding: 30px;
  max-width: 1185px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 14px rgba(198, 107, 40, 0.7); /* dourado queimado */
  color: #E4D1BE; /* texto bronze claro */
}

ul.drop-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  perspective: 800px;
}

ul.drop-list li {
  background: linear-gradient(145deg, #2D1D13, #442A1E); /* marrom queimado degradê */
  border: 1px solid #C66B28; /* dourado queimado */
  border-radius: 16px;
  padding: 24px;
  width: calc(50% - 20px);
  box-sizing: border-box;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 0 12px rgba(198, 107, 40, 0.25);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
  transform-style: preserve-3d;
  cursor: pointer;
  color: #E4D1BE;
}

ul.drop-list li:hover {
  background: linear-gradient(135deg, #B88A51, #C66B28); /* dourados em degradê */
  border-color: #B88A51;
  transform: translateY(-8px) rotateX(6deg) rotateY(10deg) scale(1.03);
  box-shadow: 0 10px 24px rgba(184, 138, 81, 0.7);
  z-index: 10;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mob-name {
  font-size: 1.5rem;
  color: #9C4B00; /* laranja queimado */
  font-weight: 700;
  border-bottom: 2px solid #B88A51; /* dourado envelhecido */
  padding-bottom: 8px;
  display: block;
  margin-bottom: 12px;
}

.drop-rate {
  font-size: 1.2rem;
  color: #B88A51; /* dourado envelhecido */
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.drop-rate:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #1B1612; /* pedra escura texturizada */
  color: #FFE599;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 0 10px #B88A51;
}

.drop-rate:hover::after {
  opacity: 1;
  pointer-events: auto;
}

.drop-item {
  font-size: 1.1rem;
  color: #E4D1BE;
  padding: 8px 14px;
  background: rgba(45, 29, 19, 0.5); /* raiz viva translúcido */
  border-left: 5px solid #C66B28; /* dourado queimado */
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.drop-item::before {
  content: attr(data-emoji);
  font-size: 1.3rem;
  animation: pulseEmoji 2s infinite;
}

@keyframes pulseEmoji {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.note {
  color: #9C4B00; /* laranja queimado */
  text-align: center;
  font-size: 1rem;
  margin-top: 20px;
  font-weight: 600;
}

@media (max-width: 768px) {
  ul.drop-list li {
    width: 100%;
  }

  h1 {
    font-size: 2.2rem;
  }
}

