.music {
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.reload {
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.reload button,
.music button {
  padding: 0.8rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ee2235 0%, #c71e2d 100%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 34, 53, 0.4);
}

.reload button:hover,
.music button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 34, 53, 0.6);
}

.message {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.message.show {
  display: flex !important;
}

.message h1 {
  text-shadow: 0 2px 20px rgba(255, 248, 0, 0.5);
  color: #fff800;
  font-size: 3rem;
}

.message .word {
  font-size: 3rem;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.5rem;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
  margin: 20px 0;
}

.message .text {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  margin: 20px 0;
}
