* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  color: #fff;
  height: 100vh;
  overflow: hidden;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #770701, #a87905);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: url("https://uploads.onecompiler.io/44gu6c66x/44gu6c95z/download.gif") center/cover no-repeat;

  filter: blur(12px) brightness(0.45);
  transform: scale(1.1);

  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;

  background: linear-gradient(
    300deg,
    rgba(160, 84, 196, 0.4),
    rgba(160, 84, 196, 0.4)
  );

  z-index: -1;
}

.logo {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  transition: all 0.3s ease;
  z-index: 10;
}

.logo:hover {
  transform: translateX(-50%) scale(1.1) rotate(5deg);
  opacity: 1;
  filter: drop-shadow(0 6px 16px rgba(227, 186, 107, 0.5));
}

.container {
  background: rgba(30, 25, 50, 0.65);
  backdrop-filter: blur(20px);

  padding: 2.5rem;
  border-radius: 20px;
  max-width: 600px;
  text-align: center;
  position: relative;
  margin-top: 60px;

  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.catboy-img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;

  border-radius: 14px;
  margin-bottom: 1.2rem;

  opacity: 0.9;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);

  transition: all 0.3s ease;
}

.catboy-img:hover {
  transform: scale(1.02);
  opacity: 1;
}

.title {
  font-size: 2.7rem;
  margin-bottom: 1rem;

  color: #dd6edd;
  text-shadow: 0 0 20px rgba(209, 128, 160, 1);
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
  opacity: 0.95;
}

.intro {
  font-style: italic;
}

.mystery {
  opacity: 0.7;
  font-size: 0.9rem;
}

.button {
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 999px;

  background: linear-gradient(135deg, #f0abfc, #f0abfc );
  color: white;
  font-weight: bold;
  font-size: 1rem;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.5;

  cursor: pointer;
  transition: all 0.25s ease;
}

.button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(240, 171, 252, 0.7);
}

#reaction {
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.85;
}
