body {
  font-family: monospace;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

#enterOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.5s;
}

#enterText {
  color: white;
  font-size: 64px;
  font-weight: bold;
  white-space: pre;
  display: inline-block;
}

#enterText .cursor {
  display: inline-block;
  margin-left: 2px;
  color: white;
  animation: blink 1s step-start infinite;
}

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

#mainContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

#videoOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: -1; 
}

.typed {
  font-size: 48px;
  font-weight: bold;
  white-space: pre-wrap;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  position: relative;
}

.typed .cursor {
  display: inline-block;
  margin-left: 2px;
  color: white;
  animation: blink 1s step-start infinite;
}

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

.code-yellow { color: #e5c07b; }
.code-white { color: #ffffff; }
.code-orange { color: #f28500; }
.code-cyan { color: #00ffff; }

.final-answer {
  color: #f28500;
  font-size: 64px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.cta .btn.discord {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.cta .btn.discord:hover {
  background: rgba(255,255,255,0.12);
  transform: scale(1.05);
}

.player {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  width: 700px;
  max-width: 90vw;
  border-radius: 40px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  gap: 15px;
}

.player-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
}

.song-info {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
}

.song-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.player:hover .song-logo {
  opacity: 1;
}

.song-text {
  display: flex;
  flex-direction: column;
}

.song-title,
.song-artist {
  color: rgba(255,255,255,0.7);
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: color 0.3s ease;
}

.player:hover .song-title,
.player:hover .song-artist {
  color: rgba(255,255,255,0.9);
}

.song-title { font-size: 16px; font-weight: 600; }
.song-artist { font-size: 12px; }

.controls-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
}

.btn {
  width: 32px;
  height: 32px;
  cursor: pointer;
  fill: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.btn:hover {
  fill: rgba(255,255,255,0.95);
  transform: scale(1.1);
}

.site-footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 14px;
}
