body {
  margin: 0;
  background: linear-gradient(#1a1a1a, #000);
  font-family: 'Segoe UI', sans-serif;
  color: gold;
  overflow: hidden;
}

#logoContainer {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 800px;
  animation: panIn 4s ease-out forwards;
}

.logo {
  text-align: center;
  transform: rotateX(20deg);
  animation: riseUp 6s ease-out forwards;
}

.logo div {
  font-size: 4em;
  line-height: 1.2em;
  text-shadow: 0 0 20px #ffd700, 2px 2px 5px black;
}

#editorUI {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.5);
  padding: 10px 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px #00bfff;
  color: white;
}

input {
  padding: 5px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
}

button {
  padding: 6px 12px;
  background: #ffd700;
  border: none;
  font-weight: bold;
  margin-left: 5px;
  cursor: pointer;
}

@keyframes riseUp {
  from { transform: rotateX(80deg) translateY(300px); opacity: 0; }
  to { transform: rotateX(20deg) translateY(0); opacity: 1; }
}

@keyframes panIn {
  from { transform: scale(1.4); }
  to { transform: scale(1); }
}
