/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden; /* Prevent full-page scroll */
  background-image: url('vaporplazabackgroundcopyy.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Kanit', sans-serif;
  color: #fff;
  cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur223.cur'), default;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vaporwave Glow Animation */
@keyframes glow {
  0% {
    text-shadow: 0 0 5px #ff80c0, 0 0 10px #00ffff, 0 0 20px #ff80c0;
  }
  100% {
    text-shadow: 0 0 10px #00ffff, 0 0 20px #ff80c0, 0 0 30px #00ffff;
  }
}

/* Main Container (smaller, scrollable box) */
.container {
  width: 700px;
  height: 700px;
  overflow-y: auto;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed #f7adff;
  border-radius: 18px;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 25px #ffb3ff;
  scroll-behavior: smooth;
  position: relative;
  z-index: 2;
}

/* Optional: Style Scrollbar (WebKit only) */
.container::-webkit-scrollbar {
  width: 10px;
}
.container::-webkit-scrollbar-track {
  background: transparent;
}
.container::-webkit-scrollbar-thumb {
  background: #ff80c0;
  border-radius: 6px;
}
.container::-webkit-scrollbar-thumb:hover {
  background: #00ffff;
}

/* Header */
header {
  text-align: center;
  padding: 30px 0;
  animation: glow 2s ease-in-out infinite alternate;
}

header h1 {
  font-size: 3rem;
  color: #ff80c0;
  letter-spacing: 6px;
}

header p {
  color: #00ffff;
  text-shadow: 1px 1px #000;
  font-size: 1rem;
}

/* Navigation */
nav {
  text-align: center;
  margin: 20px 0;
}

nav a {
  color: #00ffff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 1rem;
  text-shadow: 1px 1px #000;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #ff80c0;
  text-shadow: 0 0 10px #fff;
}

/* Marquee (optional) */
marquee {
  color: #ffe0f0;
  background: rgba(255, 192, 203, 0.1);
  padding: 10px;
  border-radius: 12px;
  border: 2px dotted #00ffff;
  font-size: 1rem;
  margin: 20px 0;
}

/* Main Content */
main {
  text-align: center;
}

main h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffe0f0;
  text-shadow: 1px 1px #000;
}

main p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #e0f7ff;
  text-shadow: 1px 1px #000;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 15px 0;
  color: #cccccc;
  font-size: 0.8rem;
}

/* Retro Link Hover Cursor */
a:hover {
  cursor: url('https://cur.cursors-4u.net/cursors/cur-10/cur902.cur'), auto;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    width: 90%;
    height: 90vh;
    padding: 20px 15px;
  }

  header h1 {
    font-size: 2.5rem;
  }

  main h2 {
    font-size: 1.5rem;
  }

  nav a {
    display: block;
    margin: 8px 0;
  }
}
