/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* === GENERAL === */
body {
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("assets/vapor-bg.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  overflow: hidden;
}

/* optional color overlay for vaporwave tint */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 80, 200, 0.15);
  z-index: 0;
}

/* === CENTER BOX === */
.content-box {
  position: relative;
  z-index: 1;
  background: rgba(20, 0, 40, 0.8);
  border: 3px solid #ff66cc;
  box-shadow: 0 0 20px #ff00ff, 0 0 40px #00ffff;
  padding: 40px 60px;
  border-radius: 20px;
  text-align: center;
  animation: fadeIn 0.4s ease-in-out;
}

.content-box h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
  text-shadow: 0 0 10px #ff99ff, 0 0 20px #00ffff;
}

.content-box p {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* === GIF AREA === */
.gif-area {
  margin-top: 1.5em;
}

.gif-area img {
  max-width: 150px;
  margin: 10px;
}

/* === FOOTER / STAMP AREA === */
.footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 20, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  z-index: 2;
}

.footer-bar img {
  margin: 3px;
  width: 88px;
  height: 31px;
}

.footer-bar p {
  font-size: 0.8rem;
  opacity: 0.7;
  color: #ffccff;
  margin-top: 6px;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* === OPTIONAL SPARKLES === */
.sparkle {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #00ffff;
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 3s infinite;
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.5); }
}
