.the-plate-clip {
    clip-path: circle(50% at 50% 50%);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #131313;
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

/* Minimal lightbox styles */
#lightbox-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999
}

#lightbox-overlay.open {
    display: flex
}

#lightbox-overlay img {
    max-width: 95%;
    max-height: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

#lightbox-overlay .close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 16px
}
