:root{
    --accent:orangered;
}
.text-primary{
    color: var(--accent) !important;
}

   /* Container styling */
.img-holder {
    position: relative;
    display: inline-block;
}
.play-btn:hover{
    background-color: orangered;
    color: white !important;
}
/* Play Button Styling */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    font-size: 40px;
    color: #ff0000; /* optional: play icon color */
}

/* Hover Grow Effect */
.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Optional: Add a subtle pulse animation */
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.play-btn {
    animation: pulse 2.5s infinite;
}
    .details, .details *, .lead, .title-text *{
        font-weight: normal !important;
        color: #111 !important;
    }
    
    
        .d-res{
        display: inline-block;
    }
    .d-sm{
        display: none;
    }
    @media(max-width: 1022px){
        .d-res{
            display: none;
        }
        .d-sm{
            display: inline-block;
        }
    }
    .bg-orange{
        background: rgba(19,30,74,0.8) !important;
        backdrop-filter: blur(20px);
    }
    a{
        text-decoration: none;
    }
    
    


