/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 900px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    padding: 30px;
}

/* Player Styles */
.player-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.album-art {
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-controls {
    width: 100%;
    text-align: center;
}

#songTitle {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.5rem;
}

#audioPlayer {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 30px;
}

#randomButton {
    background-color: #8c52ff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

#randomButton:hover {
    background-color: #7340d8;
}

/* Settings Styles */
.settings-container {
    background-color: #252525;
    padding: 20px;
    border-radius: 8px;
}

.settings-container h3 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.2rem;
}

.setting {
    margin-bottom: 15px;
}

.setting label {
    display: block;
    margin-bottom: 5px;
    color: #b0b0b0;
}

.setting input {
    width: 100%;
    padding: 10px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 5px;
    color: #e0e0e0;
}

#saveSettings {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

#saveSettings:hover {
    background-color: #3e8e41;
}

/* Responsive Design */
@media (min-width: 768px) {
    .player-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .album-art {
        margin-right: 30px;
        margin-bottom: 0;
    }
    
    .player-controls {
        flex: 1;
    }
}