   
  
  
  /* hall of frames and eventts page  videos detail css */
   .vid-details{
        position: fixed;
        height: 100vh;
        background: rgba(0, 0, 0, 0.692) !important;
        width: 100%;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        opacity: 0;
        transform: translateY(-20px);
        z-index: -1;
        pointer-events: none;
        transition: opacity 0.4s ease, transform 0.4s ease, z-index 0s linear 0.4s;

    }.vid-details-wrapper{
        background-color:rgb(37, 37, 37);
        width: 70%;
        margin: auto auto;
        height: 90vh;
        border-radius: 16px;
        overflow-x: auto;
        padding: 40px;
        opacity: 0;
        transform: translateY(-20px);
        z-index: -1;
        pointer-events: none;
        transition: opacity 0.6s ease, transform 0.6s ease, z-index 0s linear 0.6s;

    }

.vid-details.active-detail-main {
  opacity: 1;
  transform: translateY(0);
  z-index: 1000; 
  pointer-events: all; /* Re-enable interaction */
  transition: opacity 0.4s ease, transform 0.4s ease, z-index 0s;
}

.vid-details-wrapper.active-detail {
  opacity: 1;
  transform: translateY(0);
  z-index: 10; 
  pointer-events: all; /* Re-enable interaction */
  transition: opacity 0.5s ease, transform 0.5s ease, z-index 0s;
}

/* Chrome, Edge, Safari */
.vid-details-wrapper::-webkit-scrollbar {
  height: 6px; /* horizontal scrollbar size */
}

.vid-details-wrapper::-webkit-scrollbar-track {
  background: transparent; /* transparent background */
}

.vid-details-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.25); /* subtle thumb */
  border-radius: 10px;
}

.vid-details-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.45);
}

/* Firefox */
.vid-details-wrapper {
  scrollbar-color: rgba(255,255,255,0.25) transparent;
  scrollbar-width: thin;
}



.vid-details-wrapper h3{
    text-transform: capitalize;
    font-size: 26px;

}
.vid-details-wrapper p span{
    color: #f97316;
}
.vid-details-wrapper hr{
      margin: 10px auto;
    border: none;
    height: 1px;
    background-color: #aaaaaa3f;
}
.vid-details-wrapper p{
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    color: #ccccccdc;
}
.vid-details-wrapper p.des{
    font-size: 14px !important;
    margin-left: 0px;
    line-height: 20px;
}


.close-detail {
    position: absolute;
    top: 20px;       /* distance from top */
    right: 20px;     /* distance from right */
    background: rgba(255,255,255,0.2); /* semi-transparent button */
    border: none;
    padding: 10px 15px;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 10;     /* above other content */
    transition: background 0.2s ease;
}

.close-detail:hover {
    background: rgba(255,255,255,0.35);
}
.detail-action-btn {position: relative;background: none;border: 1px solid #D4AF37;color: #fff;  padding:0px  10px; padding-bottom: 5px; margin-top: 10px;margin-bottom: 10px; font-size: 11px !important;font-weight: 800;letter-spacing: 2px;cursor: pointer;display: flex;align-items: center;transition: 0.3s;}
.detail-action-btn:hover {background: #D4AF37;color: #000;}