:root {
  --accent: #224aff;
  --text: #f9fafb;
  --card: rgba(31, 41, 55, 0.9);
}

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

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  overflow: hidden;
  cursor: url('cursor1.png') 12 12, auto;
    

}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7);
}

.card-container {
  perspective: 1000px;
  width: 100%;
  max-width: 600px;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/* Add fade-in animation for bio-card */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add fade-out animation for overlay */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.bio-card {
  opacity: 0;
  transform: rotateX(0deg) rotateY(0deg);
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.2s ease;
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  text-align: center;
  overflow: hidden;
  padding-bottom: 0.0000000000000000000000001rem;
  transform-style: preserve-3d;
  will-change: transform;
}

.bio-card.visible {
  opacity: 1;
  pointer-events: auto;
}


.banner {
  background: transparent;
  height: 150px;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  width: 100%;
  object-fit: cover;
}

.pfp {
  width: 120px;
  height: 120px;
  border-radius: 2000px;
  border: 2px solid var(--card);
  border-color:#355496;
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
}

.info {
  margin-top: 30px;
  padding: 0.5rem 1rem;
}

.info h1 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.handle {
  color: #d1d5db;
  margin: 0;
}

.quote {
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 0.4rem;
}

.divider {
  border: none;
  border-top: 1px solid #4b5563;
  margin: 1rem auto;
  width: 90%;
}




.socials a {
  color: var(--text);
  transition: color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  background-color: transparent;
  line-height: 1; /* prevent height expansion */
  vertical-align: middle; /* ensure inline alignment */
}

.socials a:hover,
.socials a:focus {
  color: var(--accent);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 2px var(--accent);
  cursor: url('hand.png') 12 12, auto;
}

.socials a:focus:not(:focus-visible) {
  outline: none;
}

.socials i {
  font-size: 25px;
  display: block;
  line-height: 1;
  pointer-events: none;
}

.audio-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 90%;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  padding: 1rem;
  background: rgba(77, 124, 255, 0.079);
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: left;

}

.album-art {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.audio-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.song-title {
  padding-left: 5.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  
}

.controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.play-pause {
  background: var(--accent);
  border: none;
  color: white;
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-pause:hover {
  background: #311fff;
  cursor: url('hand.png') 12 12, auto;
}

.progress-container {
  flex-grow: 1;
  height: 8px;
  background: rgba(255 255 255 / 0.3);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}



.progress-bar {
  position: absolute;
  height: 100%;
  background: var(--accent);
  width: 0%;
  border-radius: 4px;
}

.progress-bar:hover {
  cursor: url('hand.png') 12 12, auto;
}

.time {
  font-size: 0.8rem;
  color: var(--text);
  width: 65px;
  text-align: center;
}

.volume-slider {
  width: 100px;
  cursor: pointer;
  accent-color: var(--accent);
  background: transparent;
}

#overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.603);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  color: white;
  text-align: center;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

#enterBtn {
  background-color: var(--accent);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  color: white;
  cursor: pointer;
}

#enterBtn:hover {
  background-color: #1a3ce6;
  cursor: url('hand.png') 12 12, auto;
}

/* Overlay fade-out animation when .fade-out class is added */
#overlay.fade-out {
  animation: fadeOut 0.6s ease forwards;
}

.crypto-tooltip {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.crypto-tooltip .tooltip-text {
  visibility: hidden;
  background-color: #1f2937;
  color: white;
  text-align: center;
  padding: 0.4rem 0.7rem;
  border-radius: 0.4rem;
  position: absolute;
  bottom: 150%; /* Show above the icon */
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.crypto-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  cursor: url('hand.png') 12 12, auto;
}

.volume-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 50, 138, 0.419);
  border: none;
  color: rgba(255, 255, 255, 0.398);
  font-size: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 70%;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.volume-toggle:hover {
  background: #1a3ce663;
  cursor: url('hand.png') 12 12, auto;
  outline: 2px solid var(--accent);
}



