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

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url("/assets/background.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    position: relative;
    text-align: center;
}

.avatar-wrapper {
    position: relative;
    transition: transform 1.0s ease;
	display: inline-block;
}

.avatar-container {
    position: relative;
    transform: translateY(39.5px);
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: transform 0.7s ease, box-shadow 0.6s ease;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(255, 255, 255, 1.0);
}

.icons-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    visibility: hidden;
    padding-right: 20px;
}

.icons-container.show {
    opacity: 1;
    transition: opacity 1.0s ease 0.2s;
}

.icon {
    width: 50px;
    height: 50px;
    transition: transform 0.4s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.6));
    margin-left: 20px;
}

.icon:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.7));
}

.icon:not(:last-child) {
    margin-right: 20px;
}


#listening {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    padding: 10px 20px;
    backdrop-filter: blur(30px);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 2s ease;
}

#listening img {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    margin-right: 10px;
}

#trackInfo h3 {
    margin: 5px;
    font-family: JetBrains;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

#trackInfo p {
    margin: 5px;
    font-family: JetBrains;
    font-size: 13px;
    font-weight: bold;
    color: white;
}
