:root {
    --accent:#fff;

    font-family: 'JetBrains Mono';
    color: #ffffff;
    background-color: #000000;
}

.bg {
    position: fixed;
    inset: 0;
    /*background-image: url('../assets/background.jpg');*/
    background-size: cover;
    background-position: center;
    filter: contrast(2);
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.wrap {
    transform: translate(0%, -110%);
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.card {
    width: 100%;
    max-width: 570px;
    padding: 40px 35px;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(6px);color:var(--accent);
    text-align: center;
    border: 3px solid rgba(255,255,255,0.04);
}

.avatar {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    transition: all 0.3s cubic-bezier(.55, 0.0, .28, 1.682), box-shadow 0.5s ease-in;
}

.avatar:hover {
    transform: scale(1.04);
    transition: all 0.3s cubic-bezier(.55, 0.0, .28, 1.682), box-shadow 0.5s ease-in;
}

h1 {
    margin:6px 0 4px;
    font-size:30px;
    letter-spacing:0.2px;
}

p.description {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: bold;
}

p.phrase {
    margin: 0 0 10px;
    font-size: 16px;
    font-style: normal;
}

.location {
    display:flex;
    gap:14px;
    justify-content:center;
    color:var(--muted);
    font-size:13px;
    margin-bottom:18px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.button {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(.55, 0.0, .28, 1.682), box-shadow 0.5s ease-in;
}

.button img {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 7px;
}

.button:hover {
    transform: scale(1.1);
    transition: all 0.3s cubic-bezier(.55, 0.0, .28, 1.682), box-shadow 0.5s ease-in;
}

.blur {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
}

.blur p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
}

.blur.hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition: all 0.3s cubic-bezier(.55, 0.0, .28, 1.682), box-shadow 0.5s ease-in;
}

.wrap.moved {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: fadeOut 0.5s;
}

@media(max-width:480px) {
    .card {
        padding:22px;
        border-radius:12px;
    }
    .avatar {
        width:100px;
        height:100px;
    }
  }

.player {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    min-width: 0;
}

.cover {
    width: 85px;
    height: 85px;
    border-radius: 6px;
    object-fit: cover;
    background: #000000;
}

.meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.title {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.progressbar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.time {
    width: 34px;
    text-align: center;
    color: #bbb;
}

.seek {
    flex: 1;
    min-width: 0;
}

.bar {
    height: 4px;
    background: rgba(255,255,255,0.12);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.fill {
    height: 100%;
    width: 0%;
    background: #ffffff;
    border-radius: 2px;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 3px;
    cursor: pointer;
}

.play img {
    display: block;
    width: 16px;
    height: 16px;
}