/* Fix for hidden class to ensure proper visibility control */
.hidden {
    display: none !important;
    visibility: hidden !important;
}

.feature-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 16, 32, 0.95);
    z-index: 1000;
    overflow-y: auto;
}

.feature-screen.hidden {
    display: none !important;
}