/* Overlay covers entire screen */
/* Custom cursor */
:root{
  --thumb-size: 15px;
  --slider-height: 4px;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 64px;        /* cursor width */
  height: 64px;       /* cursor height */
  pointer-events: none; /* allows clicking through */
  background-image: url('cursor.png'); /* your cursor image */
  background-size: cover;
  transform: none;       /* top-left corner is tip */
  z-index: 9999;
  opacity: 0;           /* hidden initially */
  transition: left 0.05s ease, top 0.05s ease, opacity 0.2s ease; /* smooth movement + fade */
}

#blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  z-index: 9999;
}

/* Blur content while overlay is active */
body.blur-content > *:not(#blur-overlay) {
  filter: blur(10px);
}

@media (max-width: 600px) {
    .music-player {
        width: 94vw;
        bottom: 15px;
        padding: 12px;
    }

    .track-info strong {
        font-size: 12px;
    }

    #time {
        font-size: 11px;
    }
}

.music-player {
    position: fixed;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);

    width: min(600px, 92vw);

    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;

    background: rgba(0,0,0,.65);
    backdrop-filter: blur(15px);

    border: 1px solid white;
    border-radius: 12px;

    color: white;
    font-family: Arial, Helvetica, sans-serif;

    box-sizing: border-box;
}

.music-player button {
    width: 42px;
    height: 42px;
    border: 1px solid white;
    background: black;
    color: white;
    cursor: none;
    border-radius: 50%;
    transition: .2s;
}

.music-player button:hover {
    background: white;
    color: black;
}

.track-info {
    display: flex;
    flex-direction: column;
    min-width: 110px;
}

.track-info span {
    font-size: 11px;
    color: #bfbfbf;
}

.track-info strong {
    font-size: 14px;
    font-weight: 600;
}

#progress {
    flex: 1;
    accent-color: white;
    cursor: none;
}

#time {
    width: 40px;
    text-align: right;
    font-size: 13px;
}

a{
  cursor: none;
}

.bio {
  width: 72px;
  height: auto;
  padding: 5px;

  transition: transform 0.25s ease;
}

.bio:hover {
  transform: scale(1.2);
}

.links {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  gap: 15px;
  align-items: center;
}

video{
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
}

.header {
  position: relative;
  height: 100vh;

/*  display: flex;
  flex-direction: column;
  align-items: center; */
}

html{
  cursor: none;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}


body{
    color:white;
    background:black;
    font-family: "Arial", "sans-serif", cursive;
    text-align: center;
    cursor: none;
    overflow: hidden;
}

.title{
    font-size: 3em;
    font-weight: 510;
    margin-top: -20px;
}

.desc{
    font-size: 1.5em;
}

#trail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}
