@import url(https://fonts.googleapis.com/css?family=Fjalla+One);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Fjalla One", sans-serif;
  background: #dde6ed;
  color: #2f2e41;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.loading {
  margin-bottom: 2rem;
}

.illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.sleep-lines {
  display: flex;
  gap: 0.8rem;
  font-size: 2.2rem;
  color: #645eef;
  animation: floatUp 3s ease-in-out infinite;
}

.sleep-lines span {
  opacity: 0.7;
  animation: snooze 3s ease-in-out infinite;
}

.sleep-lines span:nth-child(2) {
  animation-delay: 0.2s;
}

.sleep-lines span:nth-child(3) {
  animation-delay: 0.4s;
}

.illustration-img {
  width: 280px;
  max-width: 100%;
  animation: balloon-jiggle 4s ease-in-out infinite;
}

.status-heading {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-img {
  width: 180px;
  max-width: 100%;
  margin: 0 auto 1.7rem;
  animation: watering-jiggle 4s ease-in-out infinite;
}

.button-container {
  margin-top: 1.5rem;
}

.view-portfolio-btn {
  display: inline-block;
  background: #6c63ff;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.view-portfolio-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes snooze {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-10px); }
}

@keyframes balloon-jiggle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(1deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(-4px) rotate(-1deg); }
}

.background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.12), rgba(168, 85, 247, 0.12));
  animation: moveShape 20s linear infinite;
}

.shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-duration: 22s;
}

.shape:nth-child(2) {
  width: 70px;
  height: 70px;
  top: 45%;
  right: 10%;
  animation-duration: 26s;
  animation-delay: -5s;
}

.shape:nth-child(3) {
  width: 120px;
  height: 120px;
  bottom: 10%;
  left: 15%;
  animation-duration: 30s;
  animation-delay: -8s;
}

@keyframes moveShape {
  0% { transform: translateX(0) translateY(0) rotate(0deg); }
  100% { transform: translateX(110vw) translateY(-40px) rotate(360deg); }
}
