/* ===== load custom font ===== */
@font-face {
  font-family: "Pixolletta";
  src: url("fonts/Pixolletta8px.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* ===== full page ===== */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Pixolletta", Arial, sans-serif;
  background: #b7a7b3 url('images/landing-bg.png') no-repeat center center;
  background-size: cover;
  color: #f6e9f6;
}

/* ===== landing page wrapper ===== */
#landing-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  backdrop-filter: blur(0.3px); /* subtle retro feel */
}

/* ===== header ===== */
#landing-page h1 {
  font-family: Georgia, serif;
  font-size: 80px;
  letter-spacing: -5px;
  text-shadow: 0 0 6px rgba(255,255,255,0.6);
  margin: 0;
}

#landing-page .v {
  font-style: italic;
}

/* ===== tagline ===== */
#landing-page .tagline {
  font-size: 12px;
  margin: 6px 0 20px 0;
  color: #f6e9f6;
}

/* ===== enter button ===== */
.enter-btn {
  display: inline-block;
  font-family: "Pixolletta", Arial, sans-serif;
  font-size: 10px;
  text-decoration: none;
  color: #5b2f5f;
  border: 1px solid #000;
  padding: 4px 12px;
  background-color: #f5eef5;
  transition: all 0.2s ease;
}

.enter-btn:hover {
  color: #f6e9f6;
  background-color: #3a183d;
  transform: scale(1.2);
  text-transform: uppercase;
  text-shadow:
     0 0 1px #fff,
     0 0 2px #ffeafa,
     0 0 3px #ffdfff,
     0 0 4px #ffb6ff;
}
