/* ===============================
   🎧 RADIO SHOWS STYLING
   =============================== */

.radio-shows {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #0c0f1a, #14192b);
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    color: #f1f1f1;
    font-family: 'Poppins', sans-serif;
}

.show-card {
    flex: 1;
    min-width: 350px;
    max-width: 480px;
    background: #1a1f33;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.show-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.card-header {
    background: linear-gradient(90deg, #2a3185, #4f63e9);
    padding: 12px 16px;
    color: #fff;
    text-align: center;
    font-size: 1.0em;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.card-header.next {
    background: linear-gradient(90deg, #6a1b9a, #9c27b0);
}

.show-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.show-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.show-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.show-image:hover img {
    transform: scale(1.05);
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e53935;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.show-info {
    margin-top: 12px;
    line-height: 1.5;
}

.show-info h4 {
    margin: 0;
    color: #FF6600;
    font-size: 1.9em;
}

.show-info p {
    margin: 4px 0;
    font-size: 1.3em;
    color: #000;
}

.current-track,
.next-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px 10px;
    margin-top: 10px;
    font-style: italic;
    color: #000;
	font-size: 12px;
}

.listen-button {
    display: inline-block;
    background: linear-gradient(90deg, #4f63e9, #7288ff);
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 12px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.listen-button:hover {
    background: linear-gradient(90deg, #5e74ff, #8a9dff);
    transform: scale(1.05);
}

.no-show {
    color: #aaa;
    text-align: center;
    padding: 20px 0;
}

/* ===============================
   📱 RESPONSYWNOŚĆ
   =============================== */
@media (max-width: 800px) {
    .radio-shows {
        flex-direction: column;
        align-items: center;
    }

    .show-card {
        width: 100%;
        max-width: 95%;
    }
}
