.mobile-menu-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #111;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    margin-top: 2rem;
}

.menu-link-mobile {
    color: white;
    background: #222;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-family: "closeness", sans-serif;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.menu-link-mobile:hover {
    background: white;
    color: #111;
    transform: scale(1.05);
}