* {
    box-sizing: border-box;
}

body {

    margin: 0;

    font-family: "Geist Mono", monospace;
    
    font-weight: 400;

    user-select: none;

    -webkit-user-select: none;

    -webkit-tap-highlight-color: transparent;

    cursor: default;

    background:
        radial-gradient(
            circle at center,
            rgba(243, 223, 193, 0.9) 0%,
            rgba(231, 191, 167, 0.95) 40%,
            #DDB7AB 100%
        );

    color: #5E5247;

    position: relative;

    min-height: 100vh;
}

.container {
    position: relative;
    z-index: 10;
    max-width: 63rem;
    margin: 0 auto;
    padding: 3rem 1.5rem 6rem;
}

.copyright {
    position: fixed;
    right: 0.5rem;
    bottom: 0.5rem;
    font-size: 10px;
    opacity: .4;
    z-index: 100;
    pointer-events: none;
}

.enter-screen {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-bottom: 10vh;

    background:
        radial-gradient(
            circle at center,
            rgba(243, 223, 193, 0.9) 0%,
            rgba(231, 191, 167, 0.95) 40%,
            #DDB7AB 100%
        );

    opacity: 1;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}

.enter-screen.is-hidden {
    visibility: hidden;

    opacity: 0;

    pointer-events: none;
}

.enter-content {
    text-align: center;
}

.enter-title {
    color: #5E5247;

    font-size: 2.65rem;

    font-weight: 700;

    line-height: 1.2;
}

.enter-subtitle {
    margin-top: .55rem;

    color: rgba(94,82,71,.58);

    font-size: 1rem;

    font-weight: 600;
}

.now-playing {
    position: fixed;
    left: 50%;
    bottom: 10px;
    z-index: 80;

    width: min(23.5rem, calc(100vw - 1rem));
    min-height: 130px;
    padding: 1.1rem 1.15rem 1rem;

    border-radius: 22px;

    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: .82rem;

    overflow: hidden;

    background:
        rgba(255,255,255,.14);

    border:
        2px solid rgba(255,255,255,.22);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 10px 30px rgba(94,82,71,.08);

    transform:
        translateX(-50%);

    transition:
        width .3s ease,
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.now-playing:hover {
    width: min(27rem, calc(100vw - 1rem));

    transform:
        translateX(-50%);

    background:
        rgba(255,255,255,.26);

    border-color:
        rgba(255,255,255,.42);

    box-shadow:
        0 14px 34px rgba(94,82,71,.11);
}

.track-info {
    min-width: 0;
    max-width: 21.2rem;
}

.track-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #5E5247;

    font-size: 1.18rem;

    font-weight: 700;

    line-height: 1.2;
}

.track-artist {
    margin-top: .16rem;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #8C7B6D;

    font-size: .78rem;

    font-weight: 600;

    line-height: 1.35;
}

.progress-track {
    width: 100%;
    max-width: 21.2rem;
    height: 6px;

    overflow: hidden;

    border-radius: 999px;

    background:
        rgba(94,82,71,.18);

    cursor: default;

    transition:
        height .2s ease,
        background .2s ease;
}

.progress-track:hover {
    height: 10px;
}

.progress-fill {
    width: 0%;
    height: 100%;

    border-radius: inherit;

    background:
        rgba(255,255,255,.86);
}

.player-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: .72rem;

    width: 100%;
    max-width: 21.2rem;
}

.time-label {
    color: #8C7B6D;

    font-size: .86rem;

    font-weight: 600;

    line-height: 1;
}

.time-label-end {
    justify-self: end;
}

.now-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .78rem;

    align-self: center;
}

.player-button {
    width: 24px;
    height: 24px;
    padding: 0;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: inherit;

    background:
        transparent;

    cursor: default;
}

.player-button:disabled {
    opacity: .35;
}

.player-button {
    color: #8C7B6D;
}

.player-button i {
    font-size: .82rem;
}

.volume-control {
    position: absolute;
    top: 1rem;
    right: 0;
    bottom: 1rem;

    width: 3.3rem;
    padding: .36rem .5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;

    transform:
        translateX(100%);

    transition:
        opacity .24s ease,
        transform .3s ease;
}

.volume-control::before {
    content: "";

    position: absolute;
    left: 0;
    top: -.18rem;
    bottom: -.18rem;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            rgba(140,123,109,0),
            rgba(140,123,109,.36) 22%,
            rgba(140,123,109,.36) 78%,
            rgba(140,123,109,0)
        );
}

.now-playing:hover .volume-control {
    opacity: 1;

    transform:
        translateX(0);
}

.volume-track {
    width: 11px;
    height: calc(100% - .18rem);

    overflow: hidden;

    border-radius: 999px;

    display: flex;
    align-items: flex-end;

    background:
        rgba(94,82,71,.18);

    cursor: default;
}

.volume-fill {
    width: 100%;
    height: 64%;

    border-radius: inherit;

    background:
        rgba(255,255,255,.82);
}

.social-button {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    color: #5E5247;

    background:
        rgba(255,255,255,.35);

    border:
        1px solid rgba(255,255,255,.32);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 6px 18px rgba(94,82,71,.06);

    transition:
        transform .28s ease,
        background .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.social-button:hover {
    transform:
        translateY(-4px)
        scale(1.04);

    background:
        rgba(255,255,255,.52);

    border-color:
        rgba(199,217,208,.75);

    box-shadow:
        0 10px 24px rgba(94,82,71,.10);
}

.social-button i {
    font-size: 1.3rem;
}

.socials {
    display: flex;

    justify-content: center;

    gap: .9rem;

    margin-top: 0.05rem;
}

.profile {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}

.profile-image {
    width: 140px;

    height: 140px;

    border-radius: 50%;

    object-fit: cover;

    border:
        4px solid rgba(255,255,255,.78);

    margin-bottom: 1.4rem;

    box-shadow:
        0 10px 30px rgba(94,82,71,.10);
}

.profile h1 {
    margin: 0;

    font-size: 2.3rem;

    font-weight: 500;

    letter-spacing: -.03em;
}

.profile p {
    margin-top: .6rem;

    color: #8C7B6D;

    font-size: 1.23rem;

    line-height: 1.7;

    max-width: 420px;
}
