/*
Theme Name: Modern (Default)
*/

/* --- Modern Player Styles --- */
.morden-player {
    display: flex;
    width: 100%;
    max-width: 650px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}
.player-artwork {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
    background-color: #dbe2ef;
    display: flex;
    align-items: center;
    justify-content: center;
}
.player-artwork svg {
    width: 80px;
    height: 80px;
    color: #3f72af;
}
.player-main {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
    width: calc(100% - 270px);
}
.track-info { text-align: center; }
.track-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #112d4e;
}
.track-artist {
    font-size: 0.9rem;
    color: #3f72af;
    margin: 0;
}
.progress-container { width: 100%; }
.time-stamps {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 5px;
}
.controls-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.main-playback-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.control-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f72af;
    transition: color 0.2s ease, transform 0.2s ease;
}
.control-button:hover { color: #112d4e; }
.control-button svg { width: 24px; height: 24px; }
.play-pause-button {
    width: 50px;
    height: 50px;
    background-color: #3f72af;
    color: white;
    border-radius: 50%;
}
.play-pause-button:hover {
    background-color: #112d4e;
    color: white;
    transform: scale(1.05);
}
.play-pause-button svg { width: 28px; height: 28px; }
.pause-icon { display: none; }
.volume-container { display: flex; align-items: center; gap: 8px; }
.volume-container svg { width: 20px; height: 20px; }
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    cursor: pointer;
    margin: 0;
}
.volume-slider { width: 80px; }
input[type="range"]::-webkit-slider-runnable-track { height: 6px; background: #dbe2ef; border-radius: 6px; }
input[type="range"]::-moz-range-track { height: 6px; background: #dbe2ef; border-radius: 6px; }
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: -5px;
    background-color: #3f72af;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}
input[type="range"]::-moz-range-thumb {
    background-color: #3f72af;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 0;
    transition: background-color 0.2s ease;
}
input[type="range"]:hover::-webkit-slider-thumb, input[type="range"]:hover::-moz-range-thumb { background-color: #112d4e; }
@media (max-width: 680px) {
    .morden-player { flex-direction: column; max-width: 350px; }
    .player-artwork { width: 100%; height: auto; aspect-ratio: 1 / 1; border-radius: 16px 16px 0 0; }
    .player-main { width: auto; padding: 25px; }
}