body {
  font-family: 'Georgia', serif;
  background: linear-gradient(to bottom, #000000, #1a1a1a);
  color: #ffd700;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  text-align: center;
}

header {
  background-color: #111;
  padding: 2rem;
  border-bottom: 2px solid #ffd700;
}

h1 {
  font-size: 3rem;
  color: #ffd700;
}

section {
  margin: 2rem;
  padding: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 0.5rem 0;
  font-weight: bold;
}

input[type="password"] {
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  margin-top: 1rem;
}

button {
  padding: 0.5rem 1rem;
  background-color: #ffd700;
  color: #000;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 1rem;
}

button:hover {
  background-color: #e6c200;
}

.hidden {
  display: none;
}

iframe {
  margin-top: 1rem;
  border-radius: 10px;
}

footer {
  background-color: #111;
  padding: 1rem;
  font-size: 0.9rem;
}

.floating-objects {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.float {
  position: absolute;
  font-size: 2rem;
  animation: float 6s infinite ease-in-out;
}

.meteor { left: 15%; animation-delay: 0s; }
.chess { left: 50%; animation-delay: 2s; }
.rose { left: 80%; animation-delay: 4s; }

@keyframes float {
  0% { top: 100px; opacity: 0; transform: scale(0.5); }
  50% { top: 30px; opacity: 1; transform: scale(1.2); }
  100% { top: -20px; opacity: 0; transform: scale(0.5); }
}

