* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, green, greenyellow);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

.player-container {
    width: 350px;
    background: #ff5e62;
    border-radius: 20px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.player-header {
    background: darkslategrey;
    padding: 20px;
    border-radius: 20px 20px 0 0;
}

.player-body {
    padding: 20px;
}

.radio-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

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

.radio-details h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.controls {
    margin-top: 20px;
}

.play-btn {
    background: #212738;
    border: none;
    border-radius: 50%;
    padding: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.play-btn:hover {
    background: #ff5e62;
}

.player-footer {
    background: #ff5e62;
    padding: 10px;
    border-radius: 0 0 20px 20px;
}

.player-footer p {
    font-size: 0.9em;
}
