/* ================================
   Screens
   ================================ */

.screen {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.screen.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

/* ================================
   Menu Screen
   ================================ */

#menu-screen {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.menu-container {
    text-align: center;
    z-index: 10;
    background: #ecf0f1;
    padding: 50px 80px;
    border-radius: 24px;
    border: 6px solid #bdc3c7;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.2));
    margin-bottom: 0;
    text-transform: uppercase;
}

.subtitle {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(to bottom, #f1c40f, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.2));
    margin-top: -10px;
    text-transform: uppercase;
}

.menu-icon {
    font-size: 100px;
    margin: 30px 0;
    filter: drop-shadow(0 6px 0 rgba(0, 0, 0, 0.3));
    animation: bounce 1s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}