html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background-color: #e6e6f2;

  background-image: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='rotate(-20 20 20)'%3E%3Cpath d='M20 5 C20 5, 14 17, 14 26 A6 6 0 0 0 26 26 C26 17, 20 5, 20 5 Z' fill='rgba(179,201,255,0.4)'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='rotate(-20 20 20)'%3E%3Cpath d='M20 5 C20 5, 14 17, 14 26 A6 6 0 0 0 26 26 C26 17, 20 5, 20 5 Z' fill='rgba(179,201,255,0.3)'/%3E%3C/g%3E%3C/svg%3E");

  background-repeat: repeat;
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  animation: sparkleShift 10s linear infinite;

  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  cursor: url("cur267.cur"), auto;
}

@keyframes sparkleShift {
  0%   { background-position: 0 0, 20px 20px; }
  100% { background-position: 40px 40px, 60px 60px; }
}

/* NAV POSITION STYLES */
.nav-wrapper {
  position: absolute;
  transition: all 0.6s ease;
}

.nav-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.nav-top {
  top: 1.5rem;
  left: 1.5rem;
  transform: none;
  text-align: left;
}

/* Prompt text */
.prompt {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: #33334d;
}

/* Dropdown */
.dropdown {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 320px;
}

input {
  width: 100%;
  padding: 1rem;
  font-size: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  font-family: 'Press Start 2P', monospace;
  color: #33334d;
  background-color: #f9f9ff;
  cursor: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  background: #f3f3ff;
  position: absolute;
  width: 100%;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(100, 100, 160, 0.25);
  cursor: inherit;
}

li {
  padding: 1rem;
  font-size: 0.8rem;
  font-family: 'Press Start 2P', monospace;
  cursor: inherit;
}

li:hover {
  background-color: #e0e0ff;
}

.hidden {
  display: none;
}

#content {
  padding: 7rem 2rem 2rem 2rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #33334d;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  input,
  li {
    font-size: 0.9rem;
  }

  .prompt {
    font-size: 0.9rem;
  }
}
