@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Inter', sans-serif;
  background: rgba(0, 0, 0, 0.85);
  overflow: hidden;
  color: white;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#start-screen {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease;
  user-select: none;
  cursor: default;
}

#typewriter {
  color: #fff;
  text-shadow:
    0 0 1.5px #fff,
    0 0 3px #fff;
  transition: transform 0.1s ease-out;
  user-select: none;
  transform-style: preserve-3d;
  perspective: 600px;
}

#bio-screen {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  z-index: 1;
}

#bio-screen.visible {
  opacity: 1;
  pointer-events: auto;
}

.bio-card {
  width: 600px;
  max-width: 90vw;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  backdrop-filter: blur(10px);
  background: rgba(110, 4, 4, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  padding: 2rem;
  color: white;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.bio-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.profile {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0 0.5rem;
}

.pfp {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  cursor: default;
  outline: none;
  border: none;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.pfp:hover {
  transform: scale(1.05);
}

.profile-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.username {
  font-weight: 600;
  font-size: 2rem;
  margin: 0 0 10px 0;
  line-height: 1;
}

.tagline {
  font-size: 0.95rem;
  color: #ccc;
  margin: 0;
}

.separator {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 1.2rem 0;
}

.about {
  font-size: 0.95rem;
  color: #ddd;
  margin: 1.5rem 0;
  line-height: 1.5;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.socials img {
  width: 35px;
  height: 35px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.1));
}

.socials img:hover {
  transform: scale(1.05);
  opacity: 1;
  cursor: pointer;
}

.socials a {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: inherit;
  text-decoration: none;
  font-size: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.socials a:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.social-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.social-link .alias {
  font-size: 0.75rem;
  color: #fff;
  opacity: 0;
  margin-top: 0.35rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(4px);
  pointer-events: none;
  user-select: none;
}

.social-link:hover .alias {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.visible {
  opacity: 1;
  pointer-events: auto;
}

.bio-content {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.bio-content.visible {
  opacity: 1;
}

.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.tagline-wrapper {
  display: flex;
  align-items: center;
}

.cursor {
  display: inline-block;
  color: #ccc;
  font-weight: 500;
  margin-left: 2px;
  animation: blink 0.9s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.tagline::after {
  content: '|';
  animation: blink 1s infinite steps(1);
  margin-left: 0px;
}
