#darkModeBtn{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Modal */
.video-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: videoModalFadeIn 0.25s ease;
}

.video-modal-inner {
    position: relative;
    width: min(860px, 100%);
    aspect-ratio: 16 / 9;
    background: #000;
    animation: videoModalZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.video-modal-close:hover {
    opacity: 1;
}

@keyframes videoModalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes videoModalZoomIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

/* project pagination */
.project-pagination {
    margin: 70px auto 10px;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-pagination2 {
    position: absolute;
    bottom: 80px !important;
    left: auto !important;
    width: auto !important;
    right: 90px;
    z-index: 9;
}