@font-face {
  font-family: "Outfit";
  src: url("assets/outfit.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Outfit", sans-serif;
  background: #000;
  color: #fff;
  overflow: hidden;
}

#bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

#enter-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.8s ease;
}

.sections {
  position: relative;
  height: 100vh;
  overflow-y: scroll;
  scroll-behavior: smooth;
  z-index: 2;

  -ms-overflow-style: none; /* IE / Edge */
  scrollbar-width: none; /* Firefox */
}

.section {
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.content.show {
  opacity: 1;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.name {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.description-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  gap: 2px;
}

.cursor {
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  50.01%,
  100% {
    opacity: 0;
  }
}

.links {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.links a {
  display: flex;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.links a:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.links a img {
  width: 32px;
  height: 32px;
}

.extra {
  background: rgba(0, 0, 0, 0.4);
}

.about-wrapper {
  max-width: 700px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 16px 18px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.about-intro {
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
}

.about-intro .emoji {
  margin-right: 6px;
}

.about-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 260px;
}

.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.username {
  font-size: 0.95rem;
  font-weight: 500;
}

.status {
  font-size: 0.8rem;
  opacity: 0.7;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag {
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: default;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #ddd;
  font-size: 0.75rem;
  cursor: pointer;
  pointer-events: auto;
  animation: float 2.5s ease-in-out infinite;
  opacity: 0.85;
}

.scroll-indicator i {
  font-size: 1rem;
}

.scroll-indicator:hover {
  opacity: 1;
}

@keyframes float {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

.discord-presence-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 12px 16px;
  max-width: 400px;
  transition: background 0.25s ease;
}

.discord-presence-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.dp-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.dp-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dp-username {
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
}

.dp-status {
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: capitalize;
}

.dp-activity {
  font-size: 0.8rem;
  opacity: 0.85;
  color: #1db954; /* Spotify green for example */
}
