@font-face {
  font-family: "SuperMalibu";
  src: url("fonts/Super Malibu.ttf");
}

body {
  margin: 0;
  background: #0b0a10;
  color: white;
  font-family: "SuperMalibu", Arial;
  text-align: center;
}

body {
  background: radial-gradient(circle at top, #1a0f1f, #0b0a10 60%, #050407);
  overflow-x: hidden;
}

body::before {
  content: "♡ ✧ ✦ ♡ ✧ ✦ ♡ ✧ ✦ ♡";
  position: fixed;
  top: 20%;
  left: -30%;
  width: 200%;
  font-size: 40px;
  opacity: 0.06;
  animation: floatMove 18s linear infinite;
  pointer-events: none;
}

@keyframes floatMove {
  from { transform: translateX(0); }
  to { transform: translateX(-40%); }
}

#intro {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

button {
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: "SuperMalibu", Arial;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.15);
}

.letters {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.env {
  width: 140px;
  height: 100px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
}

.env:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255,255,255,0.12);
}

#letterBox {
  margin-top: 40px;
  font-size: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s ease;
}

#letterBox.show {
  opacity: 1;
  transform: translateY(0);
}

.letters {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
}

.env {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.env:hover {
  transform: translateY(-6px) scale(1.05);
}

.env-icon {
  font-size: 70px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.env-label {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 1px;
}