body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(to bottom, #000000, #0d1b2a);
  color: #e0e0e0;
}

header {
  background: #111;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #1a2a40;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  color: #80d0ff;
  margin: 0;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #7fc7ff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.2s ease-in-out;
}

nav a:hover {
  color: #b0e0ff;
}

.hero {
  padding: 100px 20px 60px;
  text-align: center;
  background: url('https://www.transparenttextures.com/patterns/stardust.png');
  background-blend-mode: overlay;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #9cdfff;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #c0dfff;
}

.mood {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #acecff;
}

.mood-icon {
  font-size: 1.5rem;
  animation: pulse-glow 2s infinite alternate ease-in-out;
  filter: drop-shadow(0 0 5px #9cdfff);
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px #9cdfff);
  }
  100% {
    transform: scale(1.3);
    filter: drop-shadow(0 0 15px #9cdfff);
  }
}

.slider {
  max-width: 800px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 40px;
  background-color: #16273b;
  text-align: center;
}

.slide h3 {
  color: #9cdfff;
}

.slide p {
  color: #c0dfff;
  max-width: 600px;
  margin: 0 auto;
}

.slider-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.slider-buttons button {
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-buttons button:hover {
  background: rgba(255,255,255,0.2);
}

.footer {
  text-align: center;
  padding: 20px;
  background: #0a0a0a;
  color: #666;
  font-size: 0.9rem;
}

.hatch-a-borb {
  margin-top: 60px;
}

.hatch-a-borb {
  max-width: 700px;
  margin: 100px auto;
  padding: 40px;
  background: linear-gradient(145deg, #1f2f47, #2a3a55);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.2);
  animation: fadeInUp 1s ease forwards;
}

.hatch-a-borb h3 {
  font-size: 2rem;
  color: #b4e2ff;
  margin-bottom: 10px;
}

.hatch-a-borb p {
  color: #d0f0ff;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hatch-a-borb a {
  display: inline-block;
  padding: 14px 30px;
  background: #80d0ff;
  color: #000;
  font-weight: bold;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 0 12px #80d0ff;
  transition: background 0.3s, transform 0.2s;
}

.hatch-a-borb a:hover {
  background: #a5e1ff;
  transform: scale(1.05);
}



.quiz-promo {
  max-width: 700px;
  margin: 100px auto;
  padding: 40px;
  background: linear-gradient(145deg, #1f2f47, #2a3a55);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.2);
  animation: fadeInUp 1s ease forwards;
}

.quiz-promo h3 {
  font-size: 2rem;
  color: #b4e2ff;
  margin-bottom: 10px;
}

.quiz-promo p {
  color: #d0f0ff;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.quiz-promo a {
  display: inline-block;
  padding: 14px 30px;
  background: #80d0ff;
  color: #000;
  font-weight: bold;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 0 12px #80d0ff;
  transition: background 0.3s, transform 0.2s;
}

.quiz-promo a:hover {
  background: #a5e1ff;
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  background-color: #0d1b2a;
  font-family: 'Quicksand', sans-serif;
  color: #cceeff;
  margin: 0;
  padding: 0;
}

main {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}

h1 {
  font-size: 2.5rem;
  color: #9cdfff;
  text-align: center;
}

.sleepy-borb {
  position: fixed;
  bottom: 0;
  left: -150px; /* start off screen */
  width: 80px;
  z-index: 1000;
  animation: borbWalk 8s ease-in-out forwards;
}

/* animation to walk to the corner */
@keyframes borbWalk {
  0% { left: -150px; transform: rotateY(0); }
  70% { left: 60vw; transform: rotateY(0); }
  75% { left: 60vw; transform: rotateY(180deg); } /* borb spins to lie down */
  100% { left: 95vw; transform: rotateX(120deg); opacity: 0.8; }
}

.sleepy-borb {
  filter: drop-shadow(0 0 10px #aeefff);
}

.borb-zzzs {
  position: fixed;
  bottom: 90px;
  left: 95vw;
  font-size: 1.5rem;
  color: #aeefff;
  animation: zzzFade 2s infinite ease-in-out;
}

@keyframes zzzFade {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-10px); }
  100% { opacity: 0; transform: translateY(-20px); }
}

.space-borb {
  filter: drop-shadow(0 0 10px #ff0026);
}