.hidden {
    visibility: hidden;  /* Element is invisible but still takes up space */
    opacity: 0;          /* Ensures it’s fully transparent */
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;   /* Removes it from normal flow */
    pointer-events: none; /* Prevents interaction */
}