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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #000;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  overflow-x: hidden;
}

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: -1;
  pointer-events: none;
}

.video-bg::-webkit-media-controls {
  display: none !important;
}

.video-bg::-webkit-media-controls-enclosure {
  display: none !important;
}

.video-bg::-webkit-media-controls-panel {
  display: none !important;
}

/* Mobile: show vid1, hide vid2 */
.video-mobile {
  display: block;
}
.video-desktop {
  display: none;
}

/* Desktop (768px+): show vid2, hide vid1 */
@media (min-width: 768px) {
  .video-mobile {
    display: none;
  }
  .video-desktop {
    display: block;
  }
  .profile-pic {
    margin-bottom: 20% !important;
  }
}

.container {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.profile-pic {
  width: 100px;
  height: 100px;
  background: none;
  overflow: hidden;
  border: none;
  margin-bottom: 3%;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  }

.bio {
  color: #000;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  }

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.link {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #000;
  transition: all 0.15s;
}

.link:hover {
  transform: scale(1.05);
}

.socials {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.socials a {
  color: #000;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.15s;
  }

.socials a:hover {
  color: #000;
  border-bottom-color: #000;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #000;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
