@font-face {
  font-family: 'MapleStory';
  src: url('../fonts/maplestory.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* === Layout Foundation === */
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  overflow: hidden;
  font-family: 'MapleStory', 'Segoe UI', sans-serif;
  background-color: #f5f5f5; /* ✅ Light background */
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 0.6s ease;

  /* ✅ Maple-style applied globally */
  color: #222;
  text-shadow: 1px 1px 2px #aaa;
}
body.fade-in {
  opacity: 1;
}

/* === Welcome Text === */
.welcome {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 0.5em;
  display: inline-block;
  padding: 0.6em 1.2em;
  background: rgba(255, 255, 255, 0.25); /* ✅ semi-transparent panel */
  backdrop-filter: blur(6px);            /* ✅ frosted glass effect */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.welcome p {
  margin: 0.4em 0;
  font-size: 1.1em;
  color: inherit; /* ✅ follow global font color */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4); /* ✅ subtle shadow for readability */
}

/* === Middle Section === */
.middle-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  min-height: 20vh;
}
