/* DIO NEXT PODCAST - Frontend "Middle Ground" Aesthetic */
/* Version v.3.502a */
.dio-podcast-wrap {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* Middle Ground: Dark base with a deep purple gradient heart */
    background: #0f172a; 
    background: linear-gradient(90deg, #0f172a 0%, #2e0052 50%, #0f172a 100%);
    border-top: 2px solid #7000C5;
    border-bottom: 2px solid #e800ff;
    padding: 35px 0;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(112, 0, 197, 0.15);
}

.dio-podcast-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.dio-podcast-title {
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.dio-podcast-title .white-part { color: #ffffff; }
.dio-podcast-title .purple-part { 
    color: #e800ff; /* Reintroduced vibrant pop */
    text-shadow: 0 0 20px rgba(232, 0, 255, 0.4);
}

.dio-podcast-sub {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #e7f6ff;
    opacity: 0.6;
    margin-top: 8px;
    letter-spacing: 2px;
}

.dio-podcast-timer {
    display: flex;
    gap: 15px;
}

.dio-timer-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(232, 0, 255, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    min-width: 80px;
    text-align: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.dio-timer-val {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
}

.dio-timer-label {
    font-size: 10px;
    font-weight: 800;
    color: #e800ff;
    margin-top: 6px;
    letter-spacing: 1px;
}

.dio-podcast-desc {
    max-width: 320px;
    font-size: 15px;
    line-height: 1.5;
    color: #e7f6ff;
    font-weight: 500;
}

.dio-podcast-btn {
    background: linear-gradient(135deg, #7000C5 0%, #e800ff 100%);
    color: #fff !important;
    text-decoration: none !important;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(112, 0, 197, 0.3);
}

.dio-podcast-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(232, 0, 255, 0.5);
}

.dio-podcast-btn svg {
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
}

@media (max-width: 1024px) {
    .dio-podcast-container { 
        flex-direction: column; 
        text-align: center; 
        padding: 40px 20px;
    }
    .dio-podcast-desc { max-width: 100%; font-size: 14px; }
    .dio-podcast-wrap { padding: 0; }
}