.podcast-container {
            display: flex;
            justify-content: center;
            padding: 0 15px;
        }
        .podcast-card {
            transition: transform 0.2s;
            width: 100%;
            max-width: 750px; /* Adjust this value as needed */
            background: linear-gradient(135deg, #8e2de2, #4a00e0);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .podcast-image {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }
        .podcast-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .card-body {
            color: white;
            padding: 20px;
        }
        .btn-primary {
            background-color: #4a00e0;
            border-color: #4a00e0;
        }
        .btn-primary:hover {
            background-color: #3c00b3;
            border-color: #3c00b3;
        }
        .btn-danger {
            background-color: #e83e8c;
            border-color: #e83e8c;
        }
        .btn-danger:hover {
            background-color: #d03072;
            border-color: #d03072;
        }
        #footer-player {
            display: none;
            background: linear-gradient(135deg, #8e2de2, #4a00e0);
            color: white;
        }