* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.search-container {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
}

#radioSearch {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.radio-player-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.radio-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.radio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

#radioPlayer {
    width: 70%;
    height: 30px;
    outline: none;
}

.time-display {
    font-size: 14px;
    color: #666;
}

.volume-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.radio-info {
    text-align: center;
    font-size: 14px;
    color: #333;
}

.radio-info p {
    margin: 5px 0;
}

.radio-info a {
    color: #007bff;
    text-decoration: none;
}

.radio-info a:hover {
    text-decoration: underline;
}

.logo-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
}

.radio-logo {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.radio-logo:hover {
    transform: scale(1.05);
}

.radio-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 5px;
}

.radio-name {
    font-size: 14px;
    color: #333;
}

@media (max-width: 600px) {
    .radio-player-container {
        width: 100%;
    }

    #radioSearch {
        width: 100%;
    }

    .logo-container {
        gap: 10px;
    }

    .radio-logo {
        width: 100px;
    }

    .radio-logo img {
        width: 60px;
        height: 60px;
    }

    .radio-name {
        font-size: 12px;
    }
}