body {
    background: hsl(0, 0%, 7%);
    color: #c45252;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 100;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-transform: lowercase;
}
#visualizer-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#dot-canvas {
    background: transparent;
    display: block;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}
#custom-file-label {
    position: absolute;
    right: 32px;
    bottom: 24px;
    left: auto;
    width: 48px;
    height: 48px;
    min-width: 0;
    min-height: 0;
    border-radius: 50%;
    padding: 0;
    font-size: 1.5em;
    background: #222;
    color: #fff;
    border: 1px solid #333;
    letter-spacing: 1px;
    z-index: 3;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
    cursor: pointer;
}
#custom-file-label svg {
    width: 28px;
    height: 28px;
    display: block;
    fill: #fff;
}
#custom-file-label:hover {
    background: #444;
}
#bottom-left-controls {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}
#song-name {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 100;
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: lowercase;
}
.thin {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 100 !important;
    font-size: 1.1em;
    border: none;
    border-radius: 20px;
    background: #222;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 1px;
    padding: 10px 24px;
    text-transform: lowercase;
}
.thin:hover {
    background: #444;
}
#player-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}
#play-pause-btn, #fullscreen-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: lowercase;
}
#play-pause-btn:hover, #fullscreen-btn:hover {
    background: #444;
}
.fade-group {
    position: relative;
}
.fade-item {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
}
.fade-item.active {
    opacity: 1;
    pointer-events: auto;
    position: static;
}
#song-name.fade-item {
    justify-content: flex-start;
    margin-bottom: 0;
    font-size: 1.1em;
    color: #fff;
    letter-spacing: 1px;
    z-index: 2;
}
#player-controls.fade-item {
    justify-content: flex-start;
    z-index: 2;
}
#start-btn {
    margin-top: 10px;
}
#player-controls button#fullscreen-btn svg {
    width: 22px;
    height: 22px;
    display: block;
}
#player-controls button#fullscreen-btn svg rect,
#player-controls button#fullscreen-btn svg path {
    fill: #fff;
}
/* Remove any #custom-file-label inside #player-controls */
#player-controls #custom-file-label {
    display: none !important;
}

/* Remove progress bar styles */
#progress-bar,
#progress-bar::-webkit-slider-thumb,
#progress-bar::-moz-range-thumb,
#progress-bar::-ms-thumb,
#progress-bar:focus,
#progress-bar::-webkit-slider-runnable-track,
#progress-bar::-ms-fill-lower,
#progress-bar::-ms-fill-upper,
#progress-bar::-moz-range-track {
    display: none !important;
}
