* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body { 
      display: flex;
  justify-content: center;
  align-items: center;     
  height: 100vh;          
  margin: 0;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  background: transparent; 
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.mute-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  color: white;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.mute-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.profile-container {
  text-align: center;
  color: white;
  z-index: 10;
  padding: 1rem;
  user-select: none;
}

.profile-img {
  
  width: 120px;      /* or your preferred size */
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1rem auto;
  background: #222;  /* fallback background */
}

.username {
  font-size: 2.1rem;     
  font-weight: 500;       
  color: white;
  margin-bottom: 0.5rem;
  text-align: center;
}

.typing-quote {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  min-width: 240px;
  height: 1.4rem;
  margin-inline: auto;
  display: inline-block;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}


.social-icons {
  text-align: center;
  margin-bottom: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1rem;
  margin: 0 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #ff4d4d;
  transform: scale(1.2);
}

.status-box {
  margin: 1rem auto;
  padding: 0.8rem 1.5rem;
  color: white;
  font-size: 0.95rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);          
  -webkit-backdrop-filter: blur(6px);   
  max-width: fit-content;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
    
.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; 
  margin: 1rem auto;
  font-size: 0.95rem;
  color: white;
}

.stats div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.like-btn.liked {
  color: red;
  transition: color 0.3s ease;
}

.back-home {
  display: inline-block;
  margin-top: 1rem;
  color: white;
  font-size: 0.95rem;
  text-decoration: none;
}



