body, html, a, button, input, textarea {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  color: white;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: url('assets/hello-kitty.cur'), auto;
}

.vbg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

.o {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

.c {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.t {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px 50px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 350px;
}

h1 {
  font-size: 3rem;
  margin: 0;
  background: linear-gradient(90deg, var(--gradient-start, #c6a5df), var(--gradient-end, #aeb0ff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.5s;
}

.s {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.s a {
  text-decoration: none;
  font-size: 1.5rem;
  color: white;
  transition: 0.3s;
  position: relative;
}

.s a::before {
  content: ">";
  margin-right: 15px;
  color: var(--arrow-color, #c6a5df);
  font-weight: bold;
  transition: color 0.3s;
}

.s a:hover {
  color: #00e6e6;
  transform: translateX(10px);
}

.sec {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: 0.3s;
}

.sec:hover {
  color: white;
}

.b {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.bf {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url('assets/papi.png') no-repeat center/contain;
  animation: fly 10s linear infinite;
}

.bf:nth-child(1) { left: 10%; animation-duration: 12s; }
.bf:nth-child(2) { left: 30%; animation-duration: 15s; }
.bf:nth-child(3) { left: 60%; animation-duration: 10s; }
.bf:nth-child(4) { left: 80%; animation-duration: 18s; }

@keyframes fly {
  0% { transform: translateY(100vh) rotate(0deg); }
  25% { transform: translateY(75vh) translateX(20px) rotate(45deg); }
  50% { transform: translateY(50vh) translateX(-20px) rotate(90deg); }
  75% { transform: translateY(25vh) translateX(15px) rotate(135deg); }
  100% { transform: translateY(-10vh) translateX(-10px) rotate(180deg); }
}

.ty {
  font-size: 0.9rem;
  margin: 0px 0 0px 0;
  text-align: center;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #ffffff;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
