@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  margin: 0;
  font-family: 'VT323', monospace;
  background: linear-gradient(135deg, #ffe0f0, #c0eaff, #fff0c0);
  background-size: 600% 600%;
  animation: dreamflow 25s ease infinite;
  color: #2a2a2a;
}

@keyframes dreamflow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1 {
  font-size: 2.5em;
  color: #ff00aa;
  text-align: center;
}

.surreal-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 2px dashed #ff00aa;
  max-width: 900px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.surreal-bar a {
  padding: 10px 18px;
  background: #fff0f8;
  border-radius: 12px;
  text-decoration: none;
  color: #6a2a91;
  font-size: 1.1em;
  box-shadow: 2px 2px #ff00aa;
  transition: all 0.3s ease;
}

.surreal-bar a:hover {
  background: #ffe0f0;
  color: #ff00aa;
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 0 8px #ff00aa;
}

.divider {
  text-align: center;
  font-size: 1.2em;
  color: #6a2a91;
  margin-bottom: 20px;
}

.intro {
  max-width: 700px;
  margin: 60px auto;
  text-align: center;
}



