.video-card {
    background: rgba(0,0,0,0.4);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    text-align: center;
}

.video-player {
    width: 100%;
    height: 500px;  /* FIXED SIZE */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    margin-bottom: 12px;
}

.mute-btn {
    background: #dfa667;
    color: #000;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.mute-btn:hover {
    background: #c98b4a;
}
.video-player {
    width: 100%;
    height: 500px;  
    object-fit: cover;
    border-radius: 10px;

    /* GOLD BORDER ADDED */
    border: 4px solid #dfa667;

    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    margin-bottom: 12px;
}
.video-wrapper {
    position: relative;
}

.video-controls-extra {
    text-align: right; 
    margin-top: 4px;   /* small gap below the video controls */
}

.mute-btn {
    background: #dfa667;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}

.mute-btn i {
    font-size: 14px;
}
