body {
  margin: 0;
  background: #111;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
#watermark-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

#profile-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: auto;
  overflow: visible;
}

.profile-bg-fade {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 370px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(12,14,20,0.88) 70%, rgba(12,14,20,0.65) 100%);
  border-radius: 32px;
  filter: blur(2px);
  z-index: 1;
  box-shadow: 0 6px 40px 0 #000c;
  pointer-events: none;
  transition: background 0.4s, filter 0.4s;
  animation: fadePulse 7s ease-in-out infinite alternate;
}
@keyframes fadePulse {
  0% { filter: blur(2px) brightness(1); }
  100% { filter: blur(3.5px) brightness(1.07); }
}

#profile-overlay > *:not(.profile-bg-fade) {
  position: relative;
  z-index: 2;
}

.intro-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 240px;
  max-width: 320px;
  margin: 0 auto;
}

.profile-img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #222;
  box-shadow: 0 2px 16px #000a;
  animation: floatProfile 4.5s ease-in-out infinite;
}
@keyframes floatProfile {
  0%, 100% { transform: translateY(0) scale(1); filter: brightness(1) blur(0px); }
  20% { transform: translateY(-6px) scale(1.03); filter: brightness(1.08) blur(0.5px); }
  50% { transform: translateY(4px) scale(0.98); filter: brightness(0.97) blur(0.2px); }
  80% { transform: translateY(-3px) scale(1.01); filter: brightness(1.04) blur(0.4px); }
}


.divider-quotes {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0 0 0 0;
  min-height: 70px;
}

.quote-text {
  color: #fff;
  font-size: 1.05rem;
  font-family: 'Inter', Arial, sans-serif;
  text-align: center;
  margin: 6px 0 6px 0;
  max-width: 170px;
  word-break: break-word;
  line-height: 1.3;
  opacity: 0.85;
  font-style: italic;
  animation: floatQuote 6.5s ease-in-out infinite;
}
@keyframes floatQuote {
  0%, 100% { transform: scale(1) translateY(0); }
  60% { transform: scale(1.03) translateY(-3px); }
  80% { transform: scale(0.98) translateY(2px); }
}


.quote-top, .quote-bot {
  color: #fff;
  font-size: 1.5rem;
  font-family: serif;
  line-height: 1;
  opacity: 0.7;
  user-select: none;
}

.quote-top {
  margin-bottom: 2px;
}

.quote-bot {
  margin-top: 2px;
}

.divider {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, #fff8 0%, #fff2 100%);
  margin: 0;
  animation: shineDivider 2.6s linear infinite;
}
@keyframes shineDivider {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.5) blur(0.7px); }
}


.username {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
  text-align: center;
  animation: floatUsername 5.5s ease-in-out infinite;
}
@keyframes floatUsername {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px) scale(1.04); }
  60% { transform: translateY(3px) scale(0.97); }
}


.social-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 0 0 8px 0;
  justify-content: center;
  position: relative;
  animation: floatSocials 7s ease-in-out infinite;
}
@keyframes floatSocials {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  70% { transform: translateY(3px); }
}


.discord-dropdown {
  position: absolute;
  top: 42px;
  right: 0;
  left: auto;
  min-width: 180px;
  background: #181a20ee;
  border-radius: 10px;
  box-shadow: 0 4px 32px #000a;
  padding: 10px 0;
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  animation: fadeIn 0.18s;
}

.discord-username {
  color: #fff;
  font-size: 1rem;
  padding: 8px 22px 8px 18px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  font-family: 'Inter', Arial, sans-serif;
  white-space: nowrap;
}
.discord-username:hover {
  background: #23272f;
  color: #1e90ff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


.social-btn img, .social-btn svg {
  width: 28px;
  height: 28px;
  filter: invert(1) grayscale(1) brightness(2);
  opacity: 0.88;
  transition: opacity 0.15s, filter 0.15s, transform 0.15s;
  animation: pulseIcon 3.2s ease-in-out infinite;
}
@keyframes pulseIcon {
  0%, 100% { filter: invert(1) grayscale(1) brightness(2); opacity: 0.88; }
  50% { filter: invert(1) grayscale(0.7) brightness(2.2) drop-shadow(0 0 4px #7289da88); opacity: 1; }
}

.social-btn:hover img {
  opacity: 1;
  filter: invert(0.7) sepia(1) saturate(3) hue-rotate(180deg);
  transform: scale(1.12);
}

#watermark {
  width: 80px;
  height: 80px;
  margin-top: 14px;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  box-shadow: none !important;
  user-select: none;
  transition: transform 0.2s;
  display: block;
  animation: pulseWatermark 3.5s ease-in-out infinite;
}
@keyframes pulseWatermark {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 0 #1e90ff00); }
  50% { filter: brightness(1.2) drop-shadow(0 0 14px #1e90ff88); }
}
#watermark:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px #1e90ff;
}

#watermark {
  width: 180px;
  height: 180px;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  box-shadow: none !important;
  user-select: none;
  transition: transform 0.2s;
  display: block;
}


#watermark:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px #1e90ff;
}
video {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 1;
  background: #000;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  display: block;
  pointer-events: none;
  filter: blur(3px) brightness(1.1) contrast(1.1) saturate(1.05);
  /* Smooth blur and slight enhancement for quality */
  transition: filter 0.5s;
}
