body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000, #000111);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.radio-player {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 15px;
    padding: 25px;
    width: 220px;
    margin: 0 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.station-info {
    margin-bottom: 20px;
}

#station-logo {
    object-fit: cover;
    margin-bottom: 5px;
}

#station-name {
    font-size: 24px;
    margin: 0 0 10px;
}

#song-title {
    font-size: 16px;
    color: #ccc;
    margin: 0;
    min-height: 20px;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.controls button {
    background-color: #F44336;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.controls button:hover {
    background-color: #C62828;
    transform: scale(1.1);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Volume slider styling */
.volume-control input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #F44336;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 2px solid #F44336;
    cursor: pointer;
    transition: transform 0.2s;
}

.volume-control input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.volume-control input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 2px solid #F44336;
    cursor: pointer;
    transition: transform 0.2s;
}

.volume-control input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
}

/* Mobil uyum */
@media (max-width: 400px) {
    .radio-player {
        width: 90%;
        padding: 15px;
    }

    .controls button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    #station-name {
        font-size: 20px;
    }

    #song-title {
        font-size: 14px;
    }
}
