.wrap-guess,
.message-wrap,
.wrap-initial {
  background: linear-gradient(135deg, #ee2235 0%, #c71e2d 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  animation: fadeIn 0.6s ease-out;
}

.wrap-initial {
  height: 100%;
  justify-content: center;
}

.wrap-guess {
  flex: 1;
  justify-content: space-between;
}

.bg-purple-600 {
  background: linear-gradient(135deg, #ee2235 0%, #c71e2d 100%);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 4px 20px rgba(238, 34, 53, 0.3);
}

.dica {
  margin-top: 24px;
  background: linear-gradient(135deg, #2d8659 0%, #1e5a3d 100%);
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 15px 20px !important;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.hangman .col {
  display: flex;
  flex-direction: column;
}

.wrong-letters-box {
  background: linear-gradient(135deg, #a800a7 0%, #7a0077 100%);
  border-radius: 12px;
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  gap: 10px;
  min-height: 120px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}
