body {
    margin: 0;
    background: #0b0f14;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: monospace;
    color: #7fd4ff;
}

.player {
    width: 240px;
    padding: 16px;
    background: radial-gradient(circle,rgba(173, 173, 173, 1) 0%, rgba(38, 38, 38, 1) 100%);
    border: 2px solid #241515;
    border-radius: 14px;
    box-shadow: 0 0 5px #ffffff;
}

/* Écran + Volume */
.screen-area {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: stretch;
    height: 100px;
}

.screen {
    flex: 1;
    height: 100%;
    background: radial-gradient(circle,rgba(173, 173, 173, 1) 0%, rgba(43, 39, 39, 1) 46%, rgba(173, 173, 173, 1) 100%);
    border: 2px solid #313131;
    border-radius: 8px;
    padding: 8px;
    display: grid;
    grid-template-rows: auto auto auto auto;
    row-gap: 2px;
    text-align: center;
    box-sizing: border-box;
}

.title {
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist {
    font-size: 12px;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.infos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: 11px;
}

.status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    font-size: 10px;
}

/* Volume */
.volume-wrapper {
    width: 28px;
    height: 100%;
    border: 2px solid #313131;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(8,26,43);
    box-sizing: border-box;
}

#volume {
    -webkit-appearance: slider-vertical;
    writing-mode: bt-lr;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: #e08e13;
}

/* Contrôles */
.controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.control-btn {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0b2a44;
    border: 2px solid #3aaaff;
    border-radius: 50%;
    cursor: pointer;
    color: #7fd4ff;
    transition: all 0.25s ease;
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

.control-btn:hover {
    background: #3aaaff;
    color: #0b2a44;
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(58, 170, 255, 0.6);
}

.control-btn.active {
    background: #3aaaff;
    color: #0b2a44;
    box-shadow: 0 0 8px rgba(58, 170, 255, 0.8);
}

.right-controls {
    margin-left: auto;
    display: flex;
    gap: 8px;
}
