body {
    font-family: 'Arial', sans-serif;
    background: #f9f9f9;
    color: #333;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: auto;
}

h1 {
    margin-bottom: 30px;
    color: #d91c1c;
}

.radio-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.radio-item {
    background: white;
    border: 1px solid #ddd;
    padding: 15px;
    width: 160px;
    cursor: pointer;
    transition: transform 0.2s;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.radio-item:hover {
    transform: scale(1.05);
    background: #f1f1f1;
}

.radio-item img {
    width: 50px;
    height: 50px;
}

.radio-item p {
    margin-top: 10px;
    font-weight: bold;
}

.player {
    margin-top: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
