* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  width: 100%;
  height: 100%;
  font-family: 'Orbitron', sans-serif;
  background: black;
  overflow: hidden;
}

.container[aria-hidden="true"] {
  display: none;
}

#clickToEnter {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  animation: fadeInOut 3s ease-in-out infinite alternate;
  color: white;
  font-size: 2.5rem;
  user-select: none;
  overflow: visible;
  text-shadow: 0 0 10px white;
  transition: opacity 0.5s ease;
  font-weight: 700;
  letter-spacing: 0.1em;
  outline: none;
  position: fixed;
}

.click-text {
  position: relative;
  display: inline-block;
}

.sparkle {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
  animation: sparkle-fade 1s infinite;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

video.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 1;
  animation: flicker 3s infinite alternate;
}

.center-box {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
  animation: pop-in 2s ease-out forwards, neon-flicker 2s infinite;
  width: 350px; 
}

.pfp {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 20px;
  object-fit: cover;
}

.username {
  font-size: 2rem;
  color: white;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff;
  position: relative;
  animation: glow 1.5s ease-in-out infinite alternate;
  margin-bottom: 10px;
}

.bio {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 15px;
  font-weight: 300;
  line-height: 1.3;
}

.views {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  animation: fade-in 3s ease-in-out infinite;
}

.views i {
  font-size: 1.2rem;
}

.tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.tag {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.tag i {
  font-size: 1.2rem;
}

.tag:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  animation: fade-in 0.3s ease-out;
}

.audio-slider {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
}

#notification {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 18rem;
  z-index: 9999;
  animation: fadeIn 0.5s ease-out forwards;
}

#notification h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0 0 0.25rem 0;
}

#notification p {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.8;
}

#notification button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

#notification button:hover {
  color: white;
}

@keyframes glow {
  0% { text-shadow: 0 0 5px #fff; }
  100% { text-shadow: 0 0 20px #fff; }
}
@keyframes sparkle-fade {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes pop-in {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes fade-in {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}
@keyframes flicker {
  0% { opacity: 0.95; }
  50% { opacity: 0.85; }
  100% { opacity: 0.9; }
}
@keyframes neon-flicker {
  0% { box-shadow: 0 0 5px #fff; }
  100% { box-shadow: 0 0 25px #fff; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInOut {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
