body {
  margin: 0;
  background-color: #181122; /* restored original background */
  color: white;
  font-family: 'Trebuchet MS', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

/* Header restored to original proportions */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  position: relative;
  transform: translateX(-10px); /* shift entire header slightly left */
}


.star {
  width: 100px;
  height: 100px;
  margin-right: 15px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 12px #ff6bff);
}

.title {
  font-size: 3em;
  text-align: center;
  color: #ff6bff; /*#e0c3ff; /* non-glowing title */
  font-weight: bold;
}

.block {
  width: 64px;
  height: 85px;
  background: linear-gradient(180deg, #fff36d, #ff6bff);
  border-radius: 10px;
  margin-left: 20px;
  animation: float 3s ease-in-out infinite reverse;
  box-shadow: 0 0 15px #fff36d;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* --- Wumbo Buttons --- */

.main-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  gap: 20px;
  width: 90%;
  max-width: 500px;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards 0.1s;
  padding-bottom: 100px;
}

.wumbo-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #fff36d;
  border-radius: 20px;
  padding: 18px 0;
  width: 100%;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wumbo-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #fff36d;
}

.wumbo-title {
  font-size: 1.4em;
  color: #ff6bff;
  font-weight: bold;
  transition: text-shadow 0.4s ease, color 0.4s ease;
}

.wumbo-subtitle {
  font-size: 0.9em;
  color: #cccccc;
  margin-top: 5px;
}

.wumbo-button:hover .wumbo-title {
  color: #ffb3ff;
  text-shadow: 0 0 15px #ff6bff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1.5s ease forwards 0.1s;
}
