* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e5e7eb;
  background-color: #020617;
  overflow: hidden;
  cursor: url("cros.webp"), auto;
}

*,
*::before,
*::after {
  cursor: url("cros.webp"), auto !important;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.intro-overlay__content {
  text-align: center;
}

.intro-overlay__text {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: #e5e7eb;
  opacity: 0.85;
}

.intro-overlay--hidden {
  opacity: 0;
  pointer-events: none;
}

button,
a {
  cursor: inherit;
}

.audio-toggle {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 20;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  cursor: inherit;
  transition: transform 0.18s ease;
}

.audio-toggle i {
  font-size: 1.3rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.audio-toggle:hover {
  transform: translateY(-1px) scale(1.03);
}

.video-background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.video-background__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-background__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.3), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(248, 113, 113, 0.25), transparent 55%),
    rgba(15, 23, 42, 0.55);
}

.center-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 1;
}

.profile-panel {
  width: 100%;
  max-width: 480px;
  background: transparent;
  border-radius: 28px;
  border: none;
  box-shadow: none;
  padding: 24px 22px 20px;
}

.profile-header {
  text-align: center;
  margin-bottom: 20px;
}

.profile-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-quote {
  margin-top: 10px;
  font-size: 1.10rem;
  color: #ffffff;
}

.profile-location {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  font-size: 1.0rem;
}

.profile-location i {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.profile-discord {
  margin-top: 30px;
}

.profile-discord__frame {
  width: 88%;
  min-height: 200px;
  border-radius: 20px;
  border: none;
  display: block;
  margin: 0 auto;
}

.profile-socials {
  margin-top: -30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-button {
  padding: 5px;
  border-radius: 800px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  cursor: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.social-button i {
  font-size: 2.2rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.social-button:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: transparent;
  box-shadow: none;
  background: transparent;
}

.social-button:active {
  transform: translateY(0) scale(0.96);
}

@media (max-width: 640px) {
  body {
    overflow: auto;
  }

  .center-wrapper {
    align-items: center;
    padding: 16px 10px;
  }

  .profile-panel {
    border-radius: 22px;
    padding: 18px 14px 14px;
  }

  .profile-title {
    font-size: clamp(1.9rem, 8vw, 2.3rem);
  }

  .profile-quote {
    font-size: 0.95rem;
  }

  .profile-location {
    font-size: 0.9rem;
  }

  .profile-discord__frame {
    width: 96%;
    min-height: 190px;
  }

  .profile-socials {
    margin-top: -24px;
    gap: 16px;
  }

  .social-button {
    padding: 4px;
  }

  .social-button i {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .profile-panel {
    max-width: 520px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .center-wrapper {
    padding: 20px;
  }

  .profile-panel {
    max-width: 500px;
  }

  .profile-discord__frame {
    width: 84%;
  }
}