body {
  background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
  font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

h1 {
  margin-top: 40px;
  font-size: 2.5em;
  color: #fff;
  text-shadow: 2px 2px 8px #ff5f6d, 0 0 10px #fff;
  animation: wiggle 1.2s infinite alternate;
}

@keyframes wiggle {
  0% { transform: rotate(-3deg); }
  100% { transform: rotate(3deg); }
}

#status {
  font-size: 1.3em;
  margin: 20px 0 30px 0;
  color: #fff;
  background: rgba(0,0,0,0.2);
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px #ff5f6d44;
}

.funny-img {
  width: 180px;
  margin: 20px 0 10px 0;
  border-radius: 50%;
  border: 5px dashed #fff;
  box-shadow: 0 0 20px #ffc37199;
  transition: transform 0.2s;
}
.funny-img:hover {
  transform: scale(1.1) rotate(-10deg);
}

.funny-quote {
  font-size: 1.1em;
  color: #fff;
  background: #ff5f6d;
  padding: 10px 18px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px #ffc37166;
  display: inline-block;
  animation: pop 1.5s infinite alternate;
}
@keyframes pop {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

footer {
  margin-top: 40px;
  color: #fff;
  font-size: 1em;
  opacity: 0.7;
}
